GenericToolbarIconLibrary.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 13 Mar 2013 17:18:46 +0100
changeset 4533 c16ca4f7378d
parent 4531 6560654209a1
child 4538 135e0d08918c
permissions -rw-r--r--
class: GenericToolbarIconLibrary changed: #javaClassBrowserIcon
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2001 by eXept Software AG
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
     3
	      All Rights Reserved
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    12
"{ Package: 'stx:libwidg' }"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
Object subclass:#GenericToolbarIconLibrary
3086
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    15
	instanceVariableNames:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    16
	classVariableNames:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    17
	poolDictionaries:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    18
	category:'Interface-Smalltalk'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2001 by eXept Software AG
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
    26
	      All Rights Reserved
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    A common place to keep commonly used icons.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    (also: VW compatibility)
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    41
4095
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    42
    Every method found here returns as value an image instance, which can be
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    43
    directly used for labels, menus, etc.
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    44
    The use of external files for bitmap images is no longer considered good style,
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    45
    and all uses of them within st/x are replaced by internal icons over the time.
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    46
    (the reason is that it makes packaging, deployment etc. much easier. Also,
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    47
    systems which have a poor disk performance for small files (aka Windows) suffer from
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    48
    accessing many small bitmap files. So performance is improved there).
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    49
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    50
    Notice: now, ToolbarIconLibrary is a reference to the actual IconLibrary,
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    51
    which will refer to either this class (GenericToolbarIconLibrary) or
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    52
    one of its subclasses (especially: XPToolbarIconLibrary).
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    53
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    54
    The choice of which concrete iconLibrary class is actually used
4095
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    55
    is done in the styleSheet, where the global variable ToolbarIconLibrary
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    56
    is set (see mswindowsXP.style as an example).
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    60
!GenericToolbarIconLibrary class methodsFor:'class initialization'!
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    61
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    62
initialize
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    63
    ToolbarIconLibrary isNil ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
    64
	ToolbarIconLibrary := self
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    65
    ]
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    66
! !
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    67
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    68
!GenericToolbarIconLibrary class methodsFor:'compatibility-VW'!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    69
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    70
visualFor:aKey
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    71
    ^ self perform:aKey ifNotUnderstood:[nil]
3894
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    72
! !
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    73
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    74
!GenericToolbarIconLibrary class methodsFor:'image specs'!
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    75
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    76
barResizeHorizontalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    77
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    78
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    79
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    80
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    81
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    82
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    83
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    84
     self barResizeHorizontalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    85
     ImageEditor openOnClass:self andSelector:#barResizeHorizontalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    86
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    87
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    88
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    89
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    90
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    91
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    92
	constantNamed:'GenericToolbarIconLibrary class barResizeHorizontalIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    93
	ifAbsentPut:[(Depth2Image new) width: 11; height: 19; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@B@A@@@A@B@A@@@A@@@A@@@A@@@!!H@B!!J@J!!J B!!JC@!!H@@A@@@A@@@A@@@A@@@A@@@A@@@@@A') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 11; height: 19; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A<DG0P_AA<DG0P_AA<UG3V_]]<5''1T_AA<DG0P_AA<DG0P_@A<b') ; yourself); yourself]
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    94
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    95
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    96
barResizeVerticalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    97
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    98
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    99
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   100
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   101
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   102
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   103
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   104
     self barResizeVerticalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   105
     ImageEditor openOnClass:self andSelector:#barResizeVerticalIcon
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   106
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   107
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   108
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   109
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   110
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   111
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   112
	constantNamed:'GenericToolbarIconLibrary class barResizeVerticalIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   113
	ifAbsentPut:[(Depth2Image new) width: 19; height: 11; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@B@@@@@@*@@@@@J*@@@@@@@@@AUUUUUP@@@@@@@@@*(@@@@@*@@@@@@ @@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 19; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@S@D@@@N@@@_@@@@@A_??@@@@@@_@@@N@@@D@D@@@H') ; yourself); yourself]
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   114
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   115
4346
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   116
bookmarks17x18
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   117
    "This resource specification was automatically generated
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   118
     by the ImageEditor of ST/X."
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   119
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   120
    "Do not manually edit this!! If it is corrupted,
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   121
     the ImageEditor may not be able to read the specification."
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   122
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   123
    "
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   124
     self bookmarks17x18 inspect
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   125
     ImageEditor openOnClass:self andSelector:#bookmarks17x18
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   126
     Icon flushCachedIcons
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   127
    "
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   128
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   129
    <resource: #image>
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   130
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   131
    ^Icon
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   132
        constantNamed:'GenericToolbarIconLibrary class bookmarks17x18'
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   133
        ifAbsentPut:[(Depth8Image new) width: 17; height: 18; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   134
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@P@@@@@@@@@@@@@@@@@@@PBA@@@@@@@@@@@@@@@@@@D@ DBA@@@@@@@@@@@@@@@
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   135
@@PB@PHD@@@@@@@@@@@DA@PD@ DA@PHDA@P@@@@@A@HB@ HA@PDA@PHB@ PA@@@@A@DA@PDA@PDA@PDAA@@@@@@@A@D@@@@@@@@@@PP@@@@@@@@@A@D@@@@@
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   136
@@DD@@@@@@@@@@@D@P@@@@@@@PP@@@@@@@@@@@PA@@@A@@@AA@@@@@@@@@@D@ @A@PPA@P@BA@@@@@@@@@PA@PPD@@PD@PDD@@@@@@@A@@PD@@@@@@@DA@@A
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   137
@@@@@@@A@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[240 151 26 255 213 5 245 234 120 240 243 250 240 76 0]; mask:((Depth1Image new) width: 17; height: 18; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@H@@@\@@@\@@@>@@@>@@_?<@_?<@O?8@G?0@C? @C? @C? @G?0@G70@OA8@D@P@@@@@') ; yourself); yourself]
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   138
!
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   139
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   140
sortIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   141
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   142
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   143
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   144
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   145
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   146
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   147
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   148
     self sortIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   149
     ImageEditor openOnClass:self andSelector:#sortIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   150
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   151
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   152
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   153
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   154
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   155
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   156
	constantNamed:#'DataSetLabel class sortIndicatorGreyIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   157
	ifAbsentPut:[(Depth1Image new) width: 7; height: 5; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 5; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@(UJ(b') ; yourself); yourself]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   158
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   159
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   160
sortIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   161
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   162
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   163
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   164
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   165
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   166
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   167
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   168
     self sortIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   169
     ImageEditor openOnClass:self andSelector:#sortIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   170
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   171
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   172
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   173
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   174
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   175
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   176
	constantNamed:'DataSetLabel class sortIndicatorIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   177
	ifAbsentPut:[(Depth1Image new) width: 7; height: 4; photometric:(#palette); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@B@0 @a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 4; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?''08D@@a') ; yourself); yourself]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   178
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   179
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   180
sortReverseIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   181
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   182
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   183
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   184
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   185
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   186
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   187
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   188
     self sortReverseIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   189
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorGreyIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   190
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   191
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   192
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   193
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   194
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   195
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   196
	constantNamed:#'DataSetLabel class sortReverseIndicatorGreyIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   197
	ifAbsentPut:[(Depth1Image new) width: 7; height: 5; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 5; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'*%P(D@@b') ; yourself); yourself]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   198
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   199
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   200
sortReverseIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   201
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   202
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   203
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   204
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   205
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   206
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   207
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   208
     self sortReverseIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   209
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorIcon
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   210
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   211
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   212
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   213
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   214
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   215
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   216
	constantNamed:'DataSetLabel class sortReverseIndicatorIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   217
	ifAbsentPut:[(Depth1Image new) width: 7; height: 4; photometric:(#palette); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'0(@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 4; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'DC!!<? @a') ; yourself); yourself]
4096
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   218
!
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   219
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   220
standaloneStartupIcon
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   221
    "This resource specification was automatically generated
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   222
     by the ImageEditor of ST/X."
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   223
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   224
    "Do not manually edit this!! If it is corrupted,
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   225
     the ImageEditor may not be able to read the specification."
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   226
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   227
    "
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   228
     self standaloneStartupIcon inspect
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   229
     ImageEditor openOnClass:self andSelector:#standaloneStartupIcon
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   230
     Icon flushCachedIcons
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   231
    "
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   232
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   233
    <resource: #image>
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   234
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   235
    ^Icon
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
   236
        constantNamed:'GenericToolbarIconLibrary standaloneStartupIcon'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
   237
        ifAbsentPut:[(Depth8Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
   238
@@@A@ @@@@@@@@@@@@@@@0PEA @@@@@@@@@@@@LGB@$J@@@@@@@@@@@AB00MC <P@@@@@@@@@1DRD1PUE!!\X@@@@@@LYF!!([D10]G @@@@@CG2@!!DRHDE0@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
   239
@@@@@2LTIBT&G @@@@@@@@L''J@P)J @@@@@@@@@CJ20X@@@@@@@@@@@@@0H@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 32 104 24 208 216 208 47 120 24 47 112 24 128 168 128 224 232 224 191 224 176 95 160 80 47 104 24 159 184 144 159 216 136 160 216 136 144 208 136 64 136 56 79 136 64 191 200 176 127 200 96 111 200 88 112 200 88 143 208 120 127 192 104 63 120 48 96 144 88 207 200 200 96 192 64 95 192 64 95 192 56 111 184 88 48 104 48 176 192 176 112 216 88 127 224 96 128 216 104 96 176 88 143 224 104 128 200 120 64 136 48 64 120 56 128 208 120 95 168 80 143 160 136 239 224 224 47 136 40 127 168 120]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'L@@<@C8@O8@?8C? O<@? C<@O@@0@@@a') ; yourself); yourself]
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   240
! !
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   241
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   242
!GenericToolbarIconLibrary class methodsFor:'image specs-09x09'!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   243
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   244
closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   245
    "This resource specification was automatically generated
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   246
     by the ImageEditor of ST/X."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   247
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   248
    "Do not manually edit this!! If it is corrupted,
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   249
     the ImageEditor may not be able to read the specification."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   250
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   251
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   252
     self closeIndicatorInTree9x9Icon inspect
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   253
     ImageEditor openOnClass:self andSelector:#closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   254
     Icon flushCachedIcons
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   255
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   256
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   257
    <resource: #image>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   258
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   259
    ^Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   260
        constantNamed:'GenericToolbarIconLibrary class closeIndicatorInTree9x9Icon'
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   261
        ifAbsentPut:[(Depth2Image new) width: 9; height: 9; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUU@Z*)@Z")@Z")@X@I-Z")@Z")KZ*)@UUU;') ; colorMapFromArray:#[0 0 0 128 128 128 255 255 255]; yourself]
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   262
!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   263
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   264
openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   265
    "This resource specification was automatically generated
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   266
     by the ImageEditor of ST/X."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   267
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   268
    "Do not manually edit this!! If it is corrupted,
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   269
     the ImageEditor may not be able to read the specification."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   270
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   271
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   272
     self openIndicatorInTree9x9Icon inspect
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   273
     ImageEditor openOnClass:self andSelector:#openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   274
     Icon flushCachedIcons
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   275
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   276
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   277
    <resource: #image>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   278
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   279
    ^Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   280
        constantNamed:'GenericToolbarIconLibrary class openIndicatorInTree9x9Icon'
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   281
        ifAbsentPut:[(Depth2Image new) width: 9; height: 9; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUU@Z*)@Z*)(Z*)HX@I@Z*)@Z*)@Z*)@UUU.') ; colorMapFromArray:#[0 0 0 128 128 128 255 255 255]; yourself]
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   282
! !
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   283
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   284
!GenericToolbarIconLibrary class methodsFor:'image specs-12x12'!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   285
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   286
dart12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   287
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   288
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   289
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   290
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   291
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   292
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   293
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   294
     self dart12x12Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   295
     ImageEditor openOnClass:self andSelector:#dart12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   296
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   297
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   298
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   299
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   300
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   301
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   302
        constantNamed:'GenericToolbarIconLibrary dart12x12Icon'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   303
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   304
@@@@@@@@@ @@@@@@@@@@@@ FB0(@@@@@@@@@D@(KB0,O@@@@@@@ZGA8^G!!8^G0@@@@@!!B2P%IRT%IR,@@BD%H0,$IRT%IR(''MBT^B0,KIBT%IR<*@B8^H0,K
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   305
B2P%IRT*@@@9B0,KB0,$IRT*@@@@OADFA ,KO"T*@@@@@A@IO@XFA$ME@@@@@@@PD@$IDC,@') ; colorMapFromArray:#[0 0 0 176 216 240 48 208 200 15 216 184 144 216 224 48 216 200 0 208 184 31 216 200 191 216 240 95 216 208 0 216 184 0 208 176 16 216 184 143 216 224 32 216 200 0 224 200 80 216 208 15 208 184 79 216 200 47 176 200 0 168 208 0 152 200 0 152 184 0 160 200 16 168 200 112 192 240 95 160 216 0 192 208 15 168 184 0 112 200 0 120 200 0 160 240 31 176 240 0 128 208 0 184 184 0 216 176 0 160 184 0 128 200 0 144 208 0 168 240 15 168 240 32 144 208 0 160 224 0 168 224 15 168 224 95 168 216 0 136 208 0 152 216 0 176 184 16 168 224 47 144 208 15 160 224 47 152 208 15 128 200 31 136 208 16 136 208 16 144 208 0 136 216 31 184 200 160 224 224 63 216 200 32 208 184 0 168 184 111 216 208 0 176 240 31 168 224 31 208 184 15 176 200 79 184 224 143 208 240]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ @O@A>@O<@?8G?0??A?<C?0G?@O<@_ ') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   306
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
   307
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   308
iconEqual12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   309
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   310
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   311
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   312
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   313
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   314
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   315
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   316
     self iconEqual12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   317
     ImageEditor openOnClass:self andSelector:#iconEqual12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   318
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   319
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   320
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   321
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   322
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   323
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   324
        constantNamed:'GenericToolbarIconLibrary class iconEqual12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   325
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   326
@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PE
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   327
A \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 248 250 96 160 50 0 160 0 0 176 0 16 176 20 32 160 30 32 144 20 0 128 0 0 112 0 0 96 0 144 224 130 176 240 140 192 240 160 160 240 130 144 224 110 128 208 100 96 208 80 80 192 60 64 160 50 16 80 0 128 224 110 144 240 110 144 240 130 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 16 128 20 0 80 0 16 64 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@/?<O?5??G?<@@@@@C?<O?6??G?<@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   328
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   329
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   330
iconEqualGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   331
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   332
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   333
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   334
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   335
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   336
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   337
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   338
     self iconEqualGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   339
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   340
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   341
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   342
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   343
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   344
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   345
        constantNamed:'GenericToolbarIconLibrary class iconEqualGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   346
        ifAbsentPut:[self iconEqual12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   347
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   348
    "Created: / 31-08-2011 / 10:53:15 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   349
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   350
4306
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   351
iconEqualOrange12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   352
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   353
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   354
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   355
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   356
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   357
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   358
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   359
     self iconEqualOrange12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   360
     ImageEditor openOnClass:self andSelector:#iconEqualOrange12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   361
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   362
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   363
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   364
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   365
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   366
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   367
        constantNamed:'GenericToolbarIconLibrary class iconEqualOrange12x12'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   368
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   369
@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PE
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   370
A \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 197 104 70 203 139 0 224 153 0 224 165 20 203 149 38 183 118 25 163 111 0 142 97 0 122 83 0 243 227 207 252 237 231 255 253 253 251 232 219 240 205 184 227 191 164 224 188 141 210 163 110 197 141 70 102 49 0 240 213 184 249 218 196 251 237 219 239 203 173 224 178 141 211 176 134 202 165 98 198 158 66 102 81 20 122 76 25 163 124 20 102 70 0 81 67 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@/?<O?5??G?<@@@@@C?<O?6??G?<@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   371
!
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   372
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   373
iconEqualYellow12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   374
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   375
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   376
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   377
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   378
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   379
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   380
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   381
     self iconEqualYellow12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   382
     ImageEditor openOnClass:self andSelector:#iconEqualYellow12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   383
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   384
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   385
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   386
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   387
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   388
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   389
        constantNamed:'GenericToolbarIconLibrary class iconEqualYellow12x12'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   390
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   391
@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PE
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   392
A \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 197 144 70 203 203 0 224 224 0 218 224 20 203 201 38 183 168 25 163 163 0 142 142 0 122 122 0 243 238 207 252 244 231 255 254 253 251 242 219 240 223 184 227 211 164 224 214 141 210 195 110 197 181 70 102 81 0 240 231 184 249 235 196 251 247 219 239 224 173 224 204 141 211 200 134 202 198 98 196 198 66 97 102 20 122 107 25 157 163 20 102 102 0 76 81 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@/?<O?5??G?<@@@@@C?<O?6??G?<@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   393
!
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
   394
4304
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   395
iconMinus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   396
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   397
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   398
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   399
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   400
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   401
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   402
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   403
     self iconMinus12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   404
     ImageEditor openOnClass:self andSelector:#iconMinus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   405
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   406
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   407
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   408
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   409
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   410
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   411
        constantNamed:'GenericToolbarIconLibrary class iconMinus12x12'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   412
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   413
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   414
D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 248 250 96 160 50 0 160 0 0 176 0 16 176 20 32 160 30 32 144 20 0 128 0 0 112 0 0 96 0 144 224 130 176 240 140 192 240 160 160 240 130 144 224 110 128 208 100 96 208 80 80 192 60 64 160 50 16 80 0 128 224 110 144 240 110 144 240 130 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 16 128 20 0 80 0 16 64 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@,@@@@E@@G?<O?0??C?<@@F@@D@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   415
!
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   416
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   417
iconMinusGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   418
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   419
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   420
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   421
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   422
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   423
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   424
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   425
     self iconMinusGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   426
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   427
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   428
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   429
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   430
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   431
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   432
        constantNamed:'GenericToolbarIconLibrary class iconMinusGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   433
        ifAbsentPut:[self iconMinus12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   434
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   435
    "Created: / 31-08-2011 / 10:54:22 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   436
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   437
4434
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   438
iconMinusRed12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   439
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   440
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   441
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   442
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   443
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   444
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   445
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   446
     self iconMinusRed12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   447
     ImageEditor openOnClass:self andSelector:#iconMinusRed12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   448
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   449
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   450
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   451
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   452
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   453
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   454
        constantNamed:'GenericToolbarIconLibrary iconMinusRed12x12'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   455
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   456
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   457
D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[248 248 255 160 50 56 160 59 0 176 65 0 176 79 16 160 76 30 144 53 20 128 47 0 112 41 0 96 35 0 224 150 130 240 141 140 240 160 163 240 140 130 224 118 110 208 112 100 208 111 80 192 88 60 160 76 50 80 13 0 224 134 110 240 124 110 240 156 130 224 117 100 208 95 80 192 105 80 176 99 60 160 91 48 80 43 16 96 36 20 128 61 16 80 29 0 64 38 16]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@,@@@@E@@G?<O?0??C?<@@F@@D@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   458
!
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   459
4304
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   460
iconPlus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   461
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   462
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   463
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   464
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   465
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   466
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   467
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   468
     self iconPlus12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   469
     ImageEditor openOnClass:self andSelector:#iconPlus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   470
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   471
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   472
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   473
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   474
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   475
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   476
        constantNamed:'GenericToolbarIconLibrary class iconPlus12x12'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   477
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   478
@@@@@@DB@0P@@@@@@@@@@@TFA0 @@@@@@@@@@@$JB0 @@@@@@@@@@@$LCP8@@@@@C1@QDP$LCP8RD1LS@!!PJEP(VCP\WFA$Z@ ,[A XMGA4^G2@!!H 8NC  G
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   479
E1LSH2P$@@@@@BTWFBX@@@@@@@@@@AHXI2D@@@@@@@@@@BL''HBD@@@@@@@@@@B !!F"$@@@@@') ; colorMapFromArray:#[255 248 250 80 176 60 32 160 30 32 144 20 96 160 80 16 160 20 144 240 130 128 208 100 16 128 20 16 176 20 176 240 140 128 224 110 176 240 160 144 224 110 0 128 0 96 160 50 0 160 0 0 176 0 0 112 0 0 96 0 144 224 130 192 240 160 160 240 130 96 208 80 80 192 60 64 160 50 16 80 0 144 240 110 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 0 80 0 16 64 20 16 112 20 16 96 20 64 176 50 64 112 60 96 112 80]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0,O@@<EC0G?<O?0??C?<@<FC0DO@@<@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   480
!
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
   481
4434
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   482
iconPlusBlue12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   483
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   484
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   485
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   486
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   487
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   488
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   489
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   490
     self iconPlusBlue12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   491
     ImageEditor openOnClass:self andSelector:#iconPlusBlue12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   492
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   493
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   494
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   495
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   496
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   497
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   498
        constantNamed:'GenericToolbarIconLibrary iconPlusBlue12x12'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   499
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   500
@@@@@@DB@0P@@@@@@@@@@@TFA0 @@@@@@@@@@@$JB0 @@@@@@@@@@@$LCP8@@@@@C1@QDP$LCP8RD1LS@!!PJEP(VCP\WFA$Z@ ,[A XMGA4^G2@!!H 8NC  G
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   501
E1LSH2P$@@@@@BTWFBX@@@@@@@@@@AHXI2D@@@@@@@@@@BL''HBD@@@@@@@@@@B !!F"$@@@@@') ; colorMapFromArray:#[253 255 248 60 126 176 30 84 160 20 82 144 80 128 160 16 70 160 130 188 240 100 171 208 16 57 128 16 76 176 140 216 240 110 174 224 160 208 240 110 190 224 0 51 128 50 140 160 0 64 160 0 70 176 0 45 112 0 38 96 130 182 224 160 224 240 130 204 240 80 147 208 60 133 192 50 108 160 0 48 80 110 196 240 100 178 224 80 163 208 80 141 192 60 110 176 48 91 160 16 38 80 20 62 96 0 32 80 16 31 64 16 50 112 16 44 96 50 114 176 60 85 112 80 109 112]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0,O@@<EC0G?<O?0??C?<@<FC0DO@@<@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   502
!
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
   503
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   504
iconPlusGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   505
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   506
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   507
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   508
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   509
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   510
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   511
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   512
     self iconPlusGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   513
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   514
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   515
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   516
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   517
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   518
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   519
        constantNamed:'GenericToolbarIconLibrary class iconPlusGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   520
        ifAbsentPut:[self iconPlus12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   521
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   522
    "Created: / 31-08-2011 / 10:54:27 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   523
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
   524
4447
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   525
javascript12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   526
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   527
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   528
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   529
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   530
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   531
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   532
    "
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   533
     self javascript12x12Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   534
     ImageEditor openOnClass:self andSelector:#javascript12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   535
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   536
    "
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   537
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   538
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   539
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   540
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   541
        constantNamed:'GenericToolbarIconLibrary javascript12x12Icon'
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   542
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   543
S0@@E1\WE1\KHA]O@@, E!!XVJ2ELSAML@AXVJ0!!LD1LSU18SPR-LD1LLG!!8RD!!HRBALSG!!HLR ,KB4)JD1H=MT)NR"H[SB]UD5T\T$\KC -VJ4\NA2X@GC!!D
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   544
ID0;@BHNA2YG@@0+C @L@D\EU4YFATX2Q#<;Q$YFU4YFQ$YFQ$YFQ$YFS4YFQ$YFQ$YFQ$X@') ; colorMapFromArray:#[240 255 255 96 128 160 112 160 190 128 160 190 144 160 180 112 128 190 176 176 180 192 208 210 208 224 220 176 176 220 240 255 240 240 240 240 255 255 255 255 240 255 96 128 180 112 160 210 160 176 190 128 128 180 176 192 210 192 208 220 160 160 210 192 208 240 224 224 240 240 240 255 96 96 140 128 160 180 144 144 160 144 160 190 144 144 180 144 144 190 176 192 220 208 208 210 224 240 240 208 208 240 224 224 255 128 128 140 112 144 180 112 112 160 128 144 190 160 160 180 176 176 190 160 176 220 192 192 210 208 224 240 208 224 255 128 144 140 112 112 140 128 144 160 128 128 160 160 176 180 112 144 210 160 160 190 112 128 210 176 176 210 240 240 220 224 240 255 112 128 140 96 144 180 96 112 160 96 128 190 96 112 180 160 192 210 144 176 220 128 144 210 192 224 240 224 224 220 96 128 140 96 112 140 255 240 240 112 128 160 112 144 190 112 128 180 144 176 210 176 208 220 160 176 210 240 255 220 208 208 220 255 240 220 255 255 240 0 0 0 96 144 190 144 176 190 128 144 180 128 160 210 160 192 220 144 160 210 224 240 220 192 192 220]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_>C?<O?0??C?<O?0??C?<O?0??C?<G? ') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   545
!
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
   546
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   547
padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   548
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   549
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   550
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   551
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   552
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   553
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   554
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   555
     self padLockBlack12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   556
     ImageEditor openOnClass:self andSelector:#padLockBlack12x12Icon
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   557
     Icon flushCachedIcons
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   558
    "
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   559
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   560
    <resource: #image>
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   561
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   562
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   563
	constantNamed:#'GenericToolbarIconLibrary class padLockBlack12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   564
	ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 63 63 63 127 127 127 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   565
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   566
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   567
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   568
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   569
padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   570
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   571
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   572
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   573
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   574
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   575
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   576
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   577
     self padLockBlue12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   578
     ImageEditor openOnClass:self andSelector:#padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   579
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   580
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   581
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   582
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   583
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   584
	constantNamed:#'GenericToolbarIconLibrary class padLockBlue12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   585
	ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 128 255 212 212 255 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   586
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   587
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   588
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   589
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   590
padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   591
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   592
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   593
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   594
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   595
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   596
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   597
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   598
     self padLockGray12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   599
     ImageEditor openOnClass:self andSelector:#padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   600
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   601
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   602
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   603
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   604
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   605
	constantNamed:#'GenericToolbarIconLibrary class padLockGray12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   606
	ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 128 128 212 212 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   607
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   608
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   609
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   610
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   611
padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   612
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   613
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   614
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   615
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   616
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   617
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   618
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   619
     self padLockGreen12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   620
     ImageEditor openOnClass:self andSelector:#padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   621
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   622
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   623
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   624
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   625
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   626
	constantNamed:#'GenericToolbarIconLibrary class padLockGreen12x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   627
	ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 255 128 212 255 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   628
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   629
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   630
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   631
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   632
padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   633
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   634
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   635
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   636
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   637
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   638
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   639
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   640
     self padLockRed12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   641
     ImageEditor openOnClass:self andSelector:#padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   642
     Icon flushCachedIcons
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   643
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   644
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   645
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   646
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   647
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   648
	constantNamed:#'GenericToolbarIconLibrary class padLockRed12x12Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   649
	ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 255 128 128 255 212 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   650
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   651
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   652
! !
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   653
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   654
!GenericToolbarIconLibrary class methodsFor:'image specs-14x14'!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   655
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   656
bookmarks14x14
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   657
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   658
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   659
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   660
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   661
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   662
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   663
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   664
     self bookmarks14x14 inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   665
     ImageEditor openOnClass:self andSelector:#bookmarks14x14
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   666
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   667
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   668
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   669
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   670
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   671
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   672
        constantNamed:'GenericToolbarIconLibrary class bookmarks14x14'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   673
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   674
@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@@@@@@@@@@@@@@BPDABP@@@@@@@@@@@@@UJ"(U@@@@@@@@B!!8BJB<WE2<(@!!8@@@@!!H"L]LA0\LA4#H"D@@@<HDB$.
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   675
I2\.JQ@HC0@@@@@TA!!(KB1(FE@@@@@@@@B4,IQ$YIR0-@@@@@@@@F0TRA@PRAQ,@@@@@@@@ML2X HBX3CP@@@@@@FALLL!!XVL 0SF@@@@@@QM@8$@@@$C#PQ
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   676
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[204 180 130 228 201 132 205 197 179 206 217 231 255 237 92 245 219 101 254 243 126 206 180 127 233 208 130 204 197 178 206 213 221 255 231 79 241 217 97 210 175 98 205 176 116 204 182 135 255 255 185 206 210 213 255 235 81 215 180 85 231 204 105 206 176 115 203 180 133 255 253 181 206 208 209 255 225 70 255 235 98 204 174 114 255 244 145 239 223 167 205 205 199 207 219 236 237 212 92 206 176 111 225 196 126 234 211 152 205 202 194 255 233 73 253 241 103 255 239 125 202 179 132 255 254 167 249 243 190 206 218 234 244 218 87 204 172 107 255 245 144 224 197 133 251 244 184 207 218 232 217 178 74 254 238 111 207 175 107]; mask:((Depth1Image new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@LC@0^CA8M?<7?;_?,?<1?#G>L_83?3OOL@@0@a') ; yourself); yourself]
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   677
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
   678
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   679
ledGreen14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   680
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   681
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   682
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   683
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   684
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   685
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   686
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   687
     self ledGreen14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   688
     ImageEditor openOnClass:self andSelector:#ledGreen14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   689
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   690
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   691
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   692
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   693
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   694
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   695
	constantNamed:'GenericToolbarIconLibrary class ledGreen14x14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   696
	ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   697
K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K$X+A0@@A2-FK"8.K"9FDPDUK2<U@QEFK"8.Q"(BIS)CP3(%@")FK"9DB ,#LBX&LBLKB$P.K$HCBP8R
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   698
D1 RC $CP"8.P@PEC1PYF1,PAPQ@K"8?CP ZG2\)KA0FCS<.K$@(CB41MCX2KP0(PB8.P#0]E#]AQS,WHS1BK"8.O3 .G"@$H"88O28.K"8.O#$5L3L5NS8.
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   699
K"8.K"8.P#<=OS=BK"8.K @a') ; colorMapFromArray:#[24 86 20 32 110 0 36 116 0 40 108 20 48 114 20 60 172 0 72 172 0 76 128 80 76 172 0 76 174 10 80 134 80 80 156 40 88 164 0 92 144 70 96 188 30 104 200 20 108 200 20 116 158 120 116 198 50 120 202 50 120 206 20 124 180 100 124 198 0 124 200 0 124 202 50 124 208 20 124 214 0 128 210 20 128 214 0 132 174 90 132 196 60 132 218 0 132 218 40 136 176 90 136 198 60 136 206 100 136 224 60 140 204 110 140 208 100 140 220 0 144 178 130 144 222 0 148 182 150 148 182 160 148 224 0 148 230 0 152 188 120 156 206 140 156 216 120 156 234 0 164 236 0 172 178 190 176 240 30 180 186 190 184 244 40 184 244 70 188 194 200 192 200 210 192 234 170 192 248 90 196 202 210 208 216 220 212 218 230 212 220 230 216 222 230 216 255 120 220 226 240 220 248 210 224 232 240 224 255 130 228 236 250]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A? O?A?>G?8_?-?>G?8_?!!?>C?0G>@O0@@a') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   700
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   701
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   702
ledRed14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   703
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   704
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   705
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   706
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   707
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   708
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   709
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   710
     self ledRed14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   711
     ImageEditor openOnClass:self andSelector:#ledRed14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   712
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   713
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   714
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   715
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   716
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   717
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   718
	constantNamed:'GenericToolbarIconLibrary class ledRed14x14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   719
	ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   720
B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HBB8OAP@@AP<.B@ HB@ .BPHSH2LS@ $.B@ HK 8DGSD5MSD]A@8.B@ ,A ("JRD!!JRHJA"0HBB(AD!! \
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   721
HB@\FAHAJ  HI LMF2\+J2,_CPL&B@ %A04-LCH3L2<MA2THBBXLDS$6NC 7NQDLI  HJ!!(TLC(<OC,2E!!(*B@ HIQTYJCP4JA$UIP HB@ HIA\PB0,PE2PH
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   722
B@ HB@ HJ"T^G"T*B@ HB@@a') ; colorMapFromArray:#[92 24 20 112 22 20 120 2 0 120 20 20 124 2 0 128 78 80 136 74 80 144 66 70 152 188 120 160 118 120 164 36 40 172 178 190 176 126 130 180 0 0 180 148 150 180 150 160 180 186 190 184 0 0 184 14 10 184 104 100 188 90 90 188 194 200 192 90 90 192 200 210 196 30 30 196 112 120 196 202 210 208 16 20 208 48 50 208 112 110 208 216 220 212 16 20 212 48 50 212 94 90 212 96 100 212 136 140 212 218 230 212 220 230 216 222 230 220 18 20 220 56 60 220 116 120 220 226 240 224 18 20 224 232 240 228 0 0 228 236 250 232 0 0 236 0 0 236 172 170 240 0 0 244 0 0 244 40 40 252 206 210 255 8 10 255 12 10 255 24 20 255 30 30 255 70 70 255 82 80 255 104 100]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A? O?A?>G?8_?)?>G?8_?!!?>C?0G>@O0@@a') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   723
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   724
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   725
ledYellow14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   726
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   727
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   728
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   729
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   730
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   731
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   732
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   733
     self ledYellow14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   734
     ImageEditor openOnClass:self andSelector:#ledYellow14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   735
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   736
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   737
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   738
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   739
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   740
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   741
	constantNamed:'GenericToolbarIconLibrary class ledYellow14x14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   742
	ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   743
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@Q<R@ @@@!!H_@PDA@PD_B \#L3L#A0(_@PDAG1LILC=EQS<0BQL_@PD^AQ,2NSP6NSH[AQ8A@Q(CIR$,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   744
K"<,JBTCF DAFP $J3D5M3\-I@ Y@PDXCRH8N#,<OC !!CQ A@Q$OHC4>PTI@OR@PFPDAF 8TJ$MFQ4P*EP8Z@PDAF@,QGBX''GQDKF@DA@PDAE00FA@PFCA\A
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   745
@PDA@PDAF!! VE!! Z@PDA@P@a') ; colorMapFromArray:#[144 64 20 152 188 120 168 108 80 172 90 20 172 178 190 180 118 80 180 186 190 184 84 0 184 102 20 188 92 0 188 144 120 188 194 200 192 200 210 196 134 70 196 202 210 200 172 130 200 174 130 200 182 120 204 170 160 204 172 150 208 162 90 208 164 90 208 216 220 212 218 230 212 220 230 216 222 230 220 226 240 224 134 40 224 184 60 224 186 60 224 232 240 228 236 250 236 150 0 236 152 0 236 154 0 236 162 100 240 146 0 240 150 10 244 206 40 244 212 60 248 164 30 248 166 30 252 178 0 252 178 20 252 178 50 252 180 20 252 180 50 252 182 50 252 184 110 252 186 20 252 186 100 252 190 140 255 188 100 255 190 20 255 190 100 255 192 20 255 196 0 255 200 120 255 202 0 255 204 0 255 208 0 255 216 0 255 220 0 255 222 170 255 224 0 255 230 30 255 234 40 255 236 70 255 240 90 255 240 210 255 254 120 255 255 130]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A?#O?A?>7?8_?!!?>G?8_?!!?>3?0G>@O0@@a') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   746
! !
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
   747
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   748
!GenericToolbarIconLibrary class methodsFor:'image specs-15x15'!
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   749
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   750
padLockGold15x15Icon
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   751
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   752
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   753
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   754
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   755
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   756
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   757
    "
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   758
     self padLockGold15x15Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   759
     ImageEditor openOnClass:self andSelector:#padLockGold15x15Icon
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   760
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   761
    "
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   762
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   763
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   764
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   765
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   766
	constantNamed:'XPToolbarIconLibrary class padLockGold15x15Icon'
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   767
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   768
^G!!8]3<0P4MZ$@@@^G!!8^G!!7@C1\K8TLD8<@@G!!8(J@AI1H=NH,[ 6MR@JB (J@*O$0UH)9X[4M;@JB IRP,H3X"IRT%DU-T@BT%S$6N%WVJS$9NN%NL@D9N
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   769
S)%VU2:AVTPGA%TDRFENS"@<(UE&^&X;YRZ"R3QNYG@NL6@!!Q9Z[!!16HG8Y$S64MZ8I*E4FS F8(QWIO''1)1$T@VFG8Y%A2MB@._''9\2@2-?P"4E[DZ\LP._
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   770
D@$NEG1(Y2$BZW6X!!I(PI@*R^UA6C954RU4^\5<@IH%_R$)JR$)JR$)JW8$@') ; colorMapFromArray:#[132 141 152 147 150 154 250 223 1 246 214 0 205 172 133 238 195 0 213 180 146 217 186 150 188 136 0 206 151 0 183 125 9 208 208 202 196 204 214 255 255 210 255 255 219 210 178 65 242 242 235 106 112 117 96 107 126 250 255 255 255 241 0 154 154 151 255 227 0 67 35 0 52 17 0 253 211 0 208 159 0 167 178 193 222 168 0 248 231 45 208 174 26 199 152 26 225 184 36 255 249 75 220 220 215 77 88 108 241 241 235 245 245 239 255 250 109 242 249 255 255 255 142 255 237 1 142 148 162 242 212 1 143 154 176 174 133 0 222 189 144 169 179 192 177 184 193 184 129 0 255 255 194 253 241 60 210 210 205 214 214 209 77 83 92 230 230 225 98 106 114 243 243 238 117 117 114 255 252 115 255 255 255 115 123 147 130 140 156 152 156 159 241 210 0 53 18 0 151 116 0 162 170 184 218 187 150 193 143 4 220 165 0 206 188 46 181 130 21 204 173 44 206 206 201 208 167 44 72 84 108 240 240 234 244 244 238 243 243 237 212 182 79 255 255 126 131 135 141 119 133 159 132 141 163 195 162 126 219 188 133 218 185 135 180 180 176 221 190 150 175 181 191 176 183 196 181 189 201 202 170 38 209 209 204 207 207 202 251 241 74 229 229 224 238 238 233 226 234 245 244 244 237 255 251 113 255 255 124 255 241 2 255 234 3 249 219 0 255 249 29 252 243 30 227 181 0 212 165 5 222 170 0 173 179 194 216 171 19 255 255 198 208 208 203 156 90 7 206 175 50 91 91 95 211 180 71 242 242 237 246 246 241 212 182 80 255 255 123 129 137 152 255 239 8 251 223 0 59 25 0 251 215 0 228 183 0 222 191 149 249 238 43 177 186 197 187 129 0 186 194 206 209 209 203 249 238 67 255 255 211 226 226 221 235 235 229 100 103 111 76 93 127 255 255 112 88 104 139 130 135 148 149 155 158 247 218 0 224 194 126 255 217 0 228 184 0 13 30 68 161 138 32 204 152 0 255 255 53 206 155 18 207 207 201 255 250 72 255 255 82 209 176 59 232 232 227 243 243 236 245 245 240 255 255 115 255 255 251]; mask:((Depth1Image new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C<D_8S?1OOD8\S!!1_?5??W?=_?5??W?=_?5??S?9') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   771
!
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   772
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   773
padLockGoldOpen15x15Icon
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   774
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   775
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   776
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   777
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   778
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   779
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   780
    "
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   781
     self padLockGoldOpen15x15Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   782
     ImageEditor openOnClass:self andSelector:#padLockGoldOpen15x15Icon
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   783
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   784
    "
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   785
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   786
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   787
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   788
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   789
        constantNamed:'XPToolbarIconLibrary class padLockGoldOpen15x15Icon'
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   790
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   791
^G!!8]3<0P4MZ$@@@^G!!8^G @@C1\K8TLD8<@@G!!8(J@@I1H=NH,[ 6MR@JB (J@@O$0UH)9X[4M;@JB IRP@@@@"IRT%DU-T@BT%S$4@@@@@S$9NN%NL@D9N
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   792
S)%VU2:AVTPGA%TDRFENS"@<(UE&^&X;YRZ"R3QNYG@NL6@!!Q9Z[!!16HG8Y$S64MZ8I*E4FS F8(QWIO''1)1$T@VFG8Y%A2MB@._''9\2@2-?P"4E[DZ\LP._
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   793
D@$NEG1(Y2$BZW6X!!I(PI@*R^UA6C954RU4^\5<@IH%_R$)JR$)JR$)JW8$@') ; colorMapFromArray:#[132 141 152 147 150 154 250 223 1 246 214 0 205 172 133 238 195 0 213 180 146 217 186 150 188 136 0 206 151 0 183 125 9 208 208 202 196 204 214 255 255 210 255 255 219 210 178 65 242 242 235 106 112 117 96 107 126 250 255 255 255 241 0 154 154 151 255 227 0 67 35 0 52 17 0 253 211 0 208 159 0 167 178 193 222 168 0 248 231 45 208 174 26 199 152 26 225 184 36 255 249 75 220 220 215 77 88 108 241 241 235 245 245 239 255 250 109 242 249 255 255 255 142 255 237 1 142 148 162 242 212 1 143 154 176 174 133 0 222 189 144 169 179 192 177 184 193 184 129 0 255 255 194 253 241 60 210 210 205 214 214 209 77 83 92 230 230 225 98 106 114 243 243 238 117 117 114 255 252 115 255 255 255 115 123 147 130 140 156 152 156 159 241 210 0 53 18 0 151 116 0 162 170 184 218 187 150 193 143 4 220 165 0 206 188 46 181 130 21 204 173 44 206 206 201 208 167 44 72 84 108 240 240 234 244 244 238 243 243 237 212 182 79 255 255 126 131 135 141 119 133 159 132 141 163 195 162 126 219 188 133 218 185 135 180 180 176 221 190 150 175 181 191 176 183 196 181 189 201 202 170 38 209 209 204 207 207 202 251 241 74 229 229 224 238 238 233 226 234 245 244 244 237 255 251 113 255 255 124 255 241 2 255 234 3 249 219 0 255 249 29 252 243 30 227 181 0 212 165 5 222 170 0 173 179 194 216 171 19 255 255 198 208 208 203 156 90 7 206 175 50 91 91 95 211 180 71 242 242 237 246 246 241 212 182 80 255 255 123 129 137 152 255 239 8 251 223 0 59 25 0 251 215 0 228 183 0 222 191 149 249 238 43 177 186 197 187 129 0 186 194 206 209 209 203 249 238 67 255 255 211 226 226 221 235 235 229 100 103 111 76 93 127 255 255 112 88 104 139 130 135 148 149 155 158 247 218 0 224 194 126 255 217 0 228 184 0 13 30 68 161 138 32 204 152 0 255 255 53 206 155 18 207 207 201 255 250 72 255 255 82 209 176 59 232 232 227 243 243 236 245 245 240 255 255 115 255 255 251]; mask:((Depth1Image new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C<D_8Q?1GOD@\PA1_?5??W?=_?5??W?=_?5??S?9') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   794
!
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
   795
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   796
smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   797
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   798
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   799
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   800
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   801
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   802
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   803
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   804
     self smiley_angry inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   805
     ImageEditor openOnClass:self andSelector:#smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   806
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   807
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   808
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   809
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   810
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   811
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   812
	constantNamed:#'GenericToolbarIconLibrary class smiley_angry'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   813
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   814
C 8NC @FA XHB@@NC 8NC 8N@@LC@0,KB0,@C 8NC 8DAP\GA0\G@0,L@@8NC XEA0\IBP,G@ $IC@@NC PKA0\CB0$JBP(EAP4NA HG@0LC@@TI@ @KB00H
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   815
B@,C@0LE@@,CB0@AB0DHB@,C@0LCAPLGA0DEAP(HB@,GA0LCAPTKB0DEAP(HB@DGA0LJ@@4MCP@L@P0HC 4KA0,@B TAB 0@C@XNC  AA0TEB0,EAPDLC@ N
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   816
C 8M@PTKB0TE@P0LA 8NC 8NB@4L@P(LC@XHC 8NC 8NC 8HB@ HB@8NC 8N') ; colorMapFromArray:#[0 0 0 255 28 4 255 32 8 255 92 76 109 8 0 255 48 24 72 4 0 255 108 92 44 4 0 89 60 56 255 24 0 255 68 48 208 24 0 85 8 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   817
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   818
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   819
smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   820
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   821
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   822
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   823
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   824
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   825
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   826
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   827
     self smiley_biggrin inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   828
     ImageEditor openOnClass:self andSelector:#smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   829
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   830
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   831
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   832
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   833
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   834
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   835
	constantNamed:#'GenericToolbarIconLibrary class smiley_biggrin'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   836
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   837
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   838
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@@@@@@@@@@@@@PD@@@DA@@HB@ HB@ H@@PD@@ @A@P@B@ HB@ @A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   839
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 0 255 0 255 255 255]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   840
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   841
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   842
smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   843
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   844
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   845
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   846
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   847
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   848
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   849
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   850
     self smiley_cool inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   851
     ImageEditor openOnClass:self andSelector:#smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   852
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   853
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   854
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   855
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   856
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   857
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   858
	constantNamed:#'GenericToolbarIconLibrary class smiley_cool'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   859
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   860
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@@@@@@@@@H@@@@@@@@@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   861
@@HB@@@@@@@@@@@@@ H@@@HB@ @@@ HB@@@B@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@@B@ @B@ HB@ @B@ @@@@@B@ H@@@@@@@HB@ @@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   862
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 0 255 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   863
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   864
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   865
smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   866
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   867
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   868
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   869
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   870
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   871
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   872
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   873
     self smiley_eek inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   874
     ImageEditor openOnClass:self andSelector:#smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   875
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   876
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   877
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   878
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   879
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   880
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   881
	constantNamed:#'GenericToolbarIconLibrary class smiley_eek'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   882
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   883
@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@0@@@@@@@@@@@0LC@0LC@0LC@@@@@@@C@0LC@0LC@0LC@0@@@@@C@0LC@0LC@0LC@0@@@@LC@0@@@0LC@@@C@0L@
3299
f51355adc4b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3271
diff changeset
   884
@@LC@0HB@0LC@ HC@0L@@@LC@0LC@0LC@0LC@0L@@@LC@0LC@0LC@0LC@0L@@@LC@0LC@0LC@0LC@0L@@@@C@0LC@0@C@0LC@0@@@@@C@0LC@@@@@0LC@0@@
f51355adc4b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3271
diff changeset
   885
@@@@@0LC@0@C@0LC@@@@@@@@@@@C@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 48 48 48 255 157 167]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   886
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   887
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   888
smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   889
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   890
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   891
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   892
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   893
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   894
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   895
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   896
     self smiley_frown inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   897
     ImageEditor openOnClass:self andSelector:#smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   898
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   899
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   900
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   901
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   902
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   903
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   904
	constantNamed:#'GenericToolbarIconLibrary class smiley_frown'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   905
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   906
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ HB@ HB@ HB@ @@@@HB@ @@@ HB@@@B@ H@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   907
@@HB@ @@@ HB@@@B@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ H@@@@@@@HB@ H@@@@B@ @B@ HB@ @B@ @@@@@B@ HB@ HB@ HB@ @@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   908
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 255 163 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   909
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   910
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   911
smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   912
    "This resource specification was automatically generated
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   913
     by the ImageEditor of ST/X."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   914
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   915
    "Do not manually edit this!! If it is corrupted,
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   916
     the ImageEditor may not be able to read the specification."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   917
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   918
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   919
     self smiley_mhmh inspect
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   920
     ImageEditor openOnClass:self andSelector:#smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   921
     Icon flushCachedIcons
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   922
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   923
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   924
    <resource: #image>
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   925
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   926
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   927
	constantNamed:#'GenericToolbarIconLibrary class smiley_mhmh'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   928
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   929
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@HB@ @@@ HB@@@B@ H@
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   930
@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@@B@ HB@ HB@ HB@ @@@@@B@ H@@@@@@@HB@ @@
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   931
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 255 222 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   932
!
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   933
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   934
smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   935
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   936
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   937
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   938
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   939
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   940
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   941
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   942
     self smiley_ok inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   943
     ImageEditor openOnClass:self andSelector:#smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   944
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   945
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   946
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   947
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   948
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   949
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   950
	constantNamed:#'GenericToolbarIconLibrary class smiley_ok'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   951
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   952
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   953
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@ @A@PDA@PDA@P@A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   954
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 255 255 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   955
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   956
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   957
smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   958
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   959
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   960
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   961
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   962
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   963
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   964
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   965
     self smiley_smile inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   966
     ImageEditor openOnClass:self andSelector:#smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   967
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   968
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   969
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   970
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   971
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   972
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   973
	constantNamed:#'GenericToolbarIconLibrary class smiley_smile'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
   974
	ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   975
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   976
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@@DA@PDA@PD@@PD@@ @A@P@A@PDA@P@A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   977
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 255 255 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   978
! !
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   979
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   980
!GenericToolbarIconLibrary class methodsFor:'image specs-16x16'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   981
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   983
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   984
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   986
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   988
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   989
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   990
     self back16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   991
     ImageEditor openOnClass:self andSelector:#back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   992
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   993
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   994
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   995
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   996
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   997
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   998
	constantNamed:#'GenericToolbarIconLibrary class back16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   999
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1000
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@PX@@@@@@@@@@@@@@@@@@PXE@@@@@@@@@@@@@@@@@PXEAP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1001
@@@@@@@@@@@@@PXEAPTF@ HBA @@@@@@@PXEAPTEAPTEAPP@@@@@@ XEAPTEAPTEAPTD@@@@@@@CA@TEAPTEAPTEA@@@@@@@@@LDAPTEA@PDA@P@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1002
@0PEAP@@@@@@@@@@@@@@@@@CA@T@@@@@@@@@@@@@@@@@@@LD@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 192 255 255 0 64 64 0 128 128 0 192 192 0 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A @N@A8@O A?<O?1??O?<_?0??A?<C8@G @N@@X@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1003
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1004
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1005
bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1006
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1007
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1008
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1009
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1010
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1011
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1012
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1013
     self bottom16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1014
     ImageEditor openOnClass:self andSelector:#bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1015
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1016
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1017
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1018
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1019
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1020
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1021
	constantNamed:#'GenericToolbarIconLibrary class bottom16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1022
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1023
@@@@@@@@@@@@@DQDQD@@@@@@QUY"P@@@@@AEH"M@@@@@@DT"H4@@@@@@Q"H#P@@@QDQAH"MDQDAFD"H"H"H0P@Q!!H"H"H0P@@DXRH"H0P@@@AFD"H0P@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1024
Q!!H0P@@@@@@DX0P@@@@@@@A@P@@@@@QDQDQDQDP@ADQDQDQDQ@@b') ; colorMapFromArray:#[0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C G?<_?0b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1025
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1026
4362
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1027
breakpointBlueDisabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1028
    "This resource specification was automatically generated
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1029
     by the ImageEditor of ST/X."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1030
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1031
    "Do not manually edit this!! If it is corrupted,
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1032
     the ImageEditor may not be able to read the specification."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1033
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1034
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1035
     self breakpointBlueDisabled16x16 inspect
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1036
     ImageEditor openOnClass:self andSelector:#breakpointBlueDisabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1037
     Icon flushCachedIcons
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1038
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1039
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1040
    <resource: #image>
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1041
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1042
    ^Icon
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1043
        constantNamed:'GenericToolbarIconLibrary class breakpointBlueDisabled16x16'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1044
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1045
B0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,K@@@KB0,KB0,K@@,K@@@@@@@@B0,KB0,KB0@@@@LEA0TC@@,KB0,KB0,@@@LH@@@@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1046
B@L@B0,KB0,K@@@I@@@@@@@I@@,KB0,KB0@@@P@@@@@@@P@KB0,KB0,K@@$@@@@@@@$@B0,KB0,KB0@DA @@@@XD@@@KB0,KB0,K@@PJ@P(D@@,@B0,KB0,@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1047
@@@@@@@@@@,K@@,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0@@@@@@@@@@@@@@@@@@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1048
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[227 235 248 79 80 79 255 255 255 201 201 201 182 182 182 135 135 135 122 122 122 105 105 105 103 103 103 98 98 98 85 85 85 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@]0A#@DD@X0A7@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1049
!
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1050
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1051
breakpointBlueEnabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1052
    "This resource specification was automatically generated
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1053
     by the ImageEditor of ST/X."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1054
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1055
    "Do not manually edit this!! If it is corrupted,
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1056
     the ImageEditor may not be able to read the specification."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1057
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1058
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1059
     self breakpointBlueEnabled16x16 inspect
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1060
     ImageEditor openOnClass:self andSelector:#breakpointBlueEnabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1061
     Icon flushCachedIcons
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1062
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1063
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1064
    <resource: #image>
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1065
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1066
    ^Icon
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1067
        constantNamed:'GenericToolbarIconLibrary class breakpointBlueEnabled16x16'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1068
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1069
D1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1L@@ALSD1LSD1LSD1LS@@@@@@@@D1LSD1LSD0@S@@(C@ LJ@ALSD1LSD1L@@@<ABP,I
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1070
@P<@D1LSD1LS@@@CBADQDP C@ALSD1LSD1L@@ PMCAHD@ @SD1LSD1LS@@LEC 8NAPL@D1LSD1LS@@@O@PXPA0DO@ALSD1LSD1LS@@(C@ LJ@@@SD1LSD1LS
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1071
D0@@@@@@@ALSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LS@@@@@@@@@@@@@@@@@@@@@@@@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1072
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 252 255 46 85 127 38 78 114 54 98 139 108 165 203 107 159 195 131 175 205 130 174 204 130 172 200 152 185 208 169 202 225 180 209 229 83 149 190 90 154 194 115 169 204 144 188 216 145 188 215 152 193 219 89 154 192 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@_0A?@G<@_0A?@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1073
!
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1074
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1075
breakpointRedDisabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1076
    "This resource specification was automatically generated
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1077
     by the ImageEditor of ST/X."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1078
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1079
    "Do not manually edit this!! If it is corrupted,
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1080
     the ImageEditor may not be able to read the specification."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1081
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1082
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1083
     self breakpointRedDisabled16x16 inspect
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1084
     ImageEditor openOnClass:self andSelector:#breakpointRedDisabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1085
     Icon flushCachedIcons
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1086
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1087
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1088
    <resource: #image>
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1089
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1090
    ^Icon
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1091
        constantNamed:'GenericToolbarIconLibrary class breakpointRedDisabled16x16'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1092
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1093
B0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,K@@@KB0,KB0,K@@,K@@@@@@@@B0,KB0,KB0@@@@LEA0TC@@,KB0,KB0,@@@LH@@@@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1094
B@L@B0,KB0,K@@@I@@@@@@@I@@,KB0,KB0@@@P@@@@@@@P@KB0,KB0,K@@$@@@@@@@$@B0,KB0,KB0@DA @@@@XD@@@KB0,KB0,K@@PJ@P(D@@,@B0,KB0,@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1095
@@@@@@@@@@,K@@,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0@@@@@@@@@@@@@@@@@@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1096
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[227 235 248 79 80 79 255 255 255 201 201 201 182 182 182 135 135 135 122 122 122 105 105 105 103 103 103 98 98 98 85 85 85 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@]0A#@DD@X0A7@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1097
!
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1098
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1099
breakpointRedEnabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1100
    "This resource specification was automatically generated
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1101
     by the ImageEditor of ST/X."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1102
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1103
    "Do not manually edit this!! If it is corrupted,
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1104
     the ImageEditor may not be able to read the specification."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1105
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1106
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1107
     self breakpointRedEnabled16x16 inspect
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1108
     ImageEditor openOnClass:self andSelector:#breakpointRedEnabled16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1109
     Icon flushCachedIcons
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1110
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1111
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1112
    <resource: #image>
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1113
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1114
    ^Icon
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1115
        constantNamed:'GenericToolbarIconLibrary class breakpointRedEnabled16x16'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1116
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1117
D1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1L@@ALSD1LSD1LSD1LS@@@@@@@@D1LSD1LSD0@S@@(C@ LJ@ALSD1LSD1L@@@<ABP,I
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1118
@P<@D1LSD1LS@@@CBADQDP C@ALSD1LSD1L@@ PMCAHD@ @SD1LSD1LS@@LEC 8NAPL@D1LSD1LS@@@O@PXPA0DO@ALSD1LSD1LS@@(C@ LJ@@@SD1LSD1LS
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1119
D0@@@@@@@ALSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LS@@@@@@@@@@@@@@@@@@@@@@@@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1120
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[253 255 252 127 73 46 114 60 38 139 79 54 203 129 108 195 127 107 205 147 131 204 146 130 200 145 130 208 165 152 225 182 169 229 191 180 190 104 83 194 111 90 204 134 115 216 159 144 215 159 145 219 166 152 192 108 89 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@_0A?@G<@_0A?@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1121
!
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  1122
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1123
browseIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1124
    "This resource specification was automatically generated
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1125
     by the ImageEditor of ST/X."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1126
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1127
    "Do not manually edit this!! If it is corrupted,
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1128
     the ImageEditor may not be able to read the specification."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1129
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1130
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1131
     self browseIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1132
     ImageEditor openOnClass:self andSelector:#browseIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1133
     Icon flushCachedIcons
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1134
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1135
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1136
    <resource: #image>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1137
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1138
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1139
	constantNamed:'GenericToolbarIconLibrary class browseIt16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1140
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1141
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDPXB@@@@D3L0XCT@@@@SL0Y MP@@@BUPY!!@@@@@@@@Y!!E&X@@@@@Y!!E&X@@@@@@@A&X@@@@@@ADFXADR@@@@
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1142
E@XDQDT@@@@ XEUUUP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 127 127 127 248 252 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@HG?8_?!!?>G?8_?1?>A?0O?8_?!!?>G?8_? P@@@@b') ; yourself); yourself]
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1143
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  1144
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1145
bugGrey16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1146
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1147
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1148
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1149
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1150
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1151
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1152
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1153
     self bugGrey16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1154
     ImageEditor openOnClass:self andSelector:#bugGrey16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1155
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1156
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1157
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1158
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1159
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1160
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1161
	constantNamed:'GenericToolbarIconLibrary class bugGrey16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1162
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1163
@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@NC @GA0\@@@@@@@@G@@ IB ,LA0@G@@@@@@@@C @PDQHRD1P@C @@@@@@@@@WFA$Z@!!,\GP@@@@@@@@@@G2@@HRH[
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1164
H2P@@@@@@@@@I"\(JR(+KB4.I @@@@@@@B<0LSH3MCT6M3 @@@@@@C$:N30=O#=@PTIC\P@@@GEGRD%JR39LST9O@@A1@@AQ@EISUEUVU5!!YV%,@TP@@@@A]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1165
W%= XVI#YFU&@@@@@@A1W#!!(ZV)+[F5.[7D@@@@@\PAX\&53]GU6]0A1@@@@@G$@@@A;_G1=@@@@^P@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[180 180 180 237 237 237 189 189 189 255 255 255 243 243 243 250 250 250 246 246 246 137 137 137 255 255 255 13 13 13 23 23 23 25 25 25 8 8 8 202 202 202 207 207 207 255 255 255 84 84 84 5 5 5 1 1 1 4 4 4 56 56 56 255 255 255 253 253 253 19 19 19 71 71 71 169 169 169 197 197 197 150 150 150 58 58 58 0 0 0 250 250 250 207 207 207 232 232 232 135 135 135 116 116 116 180 180 180 169 169 169 255 255 255 201 201 201 255 255 255 255 255 255 255 255 255 234 234 234 199 199 199 255 255 255 240 240 240 224 224 224 185 185 185 255 255 255 255 255 255 255 255 255 253 253 253 224 224 224 255 255 255 234 234 234 230 230 230 187 187 187 142 142 142 179 179 179 255 255 255 255 255 255 255 255 255 251 251 251 226 226 226 255 255 255 220 220 220 224 224 224 180 180 180 159 159 159 255 255 255 161 161 161 255 255 255 179 179 179 255 255 255 255 255 255 255 255 255 230 230 230 249 249 249 207 207 207 210 210 210 255 255 255 103 103 103 184 184 184 244 244 244 255 255 255 255 255 255 250 250 250 216 216 216 213 213 213 187 187 187 201 201 201 193 193 193 255 255 255 187 187 187 212 212 212 227 227 227 226 226 226 208 208 208 183 183 183 183 183 183 184 184 184 192 192 192 203 203 203 194 194 194 217 217 217 201 201 201 182 182 182 173 173 173 178 178 178 201 201 201 189 189 189 235 235 235 255 255 255 124 124 124 189 189 189 204 204 204 203 203 203 199 199 199 188 188 188 226 226 226 255 255 255 130 130 130 255 255 255 194 194 194 182 182 182 198 198 198]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M.A_(E> O<@?0G? _>C?<_?)_>!!?8O?0/=BOD@@@b') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1166
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1167
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1168
bugRed16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1169
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1170
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1171
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1172
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1173
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1174
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1175
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1176
     self bugRed16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1177
     ImageEditor openOnClass:self andSelector:#bugRed16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1178
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1179
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1180
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1181
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1182
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1183
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1184
	constantNamed:'GenericToolbarIconLibrary class bugRed16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1185
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1186
@@@@@@@@@@@@@@@@@@@@@@@@@@@JN0A9]0@]PP@@@@@@@@@!!@F\BAB$A!! @!!@@@@@@@@F 6IRRP$[S=UF @@@@@@@DHCPC^EN6.HRH(@@@@@@@A&WP$UZW)+
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1187
EG4K@@@@@@@@W&VKLR0%KS4X 0@@@@@@@G<0G(0[E''Y_FQL@@@@@@E!!>UELL!!41QNC1,MX4@@E(_M&QRGGQKXAH9@F)Z@@AC@E-"TFLW F9FWBX@P0@@L AJ
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1188
 R]/VU]EH!!EM@CH@@@@*BHI0Q3LN_C((K"(@@@BNU @G\PVD\$8F]PAV# @@ZG,@@B=!!S4<+^@@@^6 @@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[165 43 7 6 6 6 10 10 10 18 6 2 18 18 18 171 89 52 167 60 24 184 100 74 173 141 131 188 163 150 187 187 187 213 158 142 254 157 105 214 207 206 153 55 4 237 237 237 245 245 245 165 76 37 181 80 27 169 50 15 145 132 125 143 140 139 192 108 62 220 91 21 188 114 80 193 127 92 163 163 163 212 140 101 253 132 65 197 197 197 253 159 107 212 212 212 230 230 230 108 108 108 160 78 34 254 254 254 1 1 1 169 104 68 172 61 26 198 90 33 168 58 20 20 20 21 153 153 153 175 71 38 196 132 98 230 118 58 192 159 151 212 158 142 248 159 112 253 172 130 228 228 228 162 59 4 243 243 243 125 125 125 164 42 5 133 133 133 192 90 35 177 108 72 171 101 64 149 149 149 188 122 87 205 115 67 254 253 253 47 29 23 57 52 50 194 194 194 201 196 196 81 81 81 227 227 227 164 58 0 165 66 14 176 78 26 0 0 0 4 4 4 164 73 45 202 89 27 195 100 49 176 88 60 170 89 52 166 43 6 234 92 17 240 107 36 253 124 53 253 144 84 252 152 100 208 200 199 98 98 98 163 57 0 112 112 112 186 65 0 127 127 127 166 53 18 171 97 60 178 84 46 177 72 39 202 101 47 219 95 28 173 67 35 209 110 60 249 100 19 237 131 75 240 144 95 216 161 145 206 206 206 225 225 225 106 106 106 240 240 240 118 118 118 165 42 4 3 3 3 189 75 14 202 71 0 185 106 63 168 60 23 173 105 68 254 252 252 218 110 51 193 111 85 248 116 44 191 191 191 216 165 148 205 205 205 91 91 91 102 102 102 156 72 26 147 66 37 164 40 3 168 49 12 191 78 17 182 83 38 166 55 18 178 73 42 174 105 68 155 155 155 159 159 159 214 128 81 48 44 43 71 46 36 199 194 194 253 165 117 254 177 137 231 231 231 238 238 238]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M,A_(G? _>A?8G? _>C?>_?9_>%?:O?1/=&_&@@@b') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1189
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1190
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1191
bugYellow16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1192
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1193
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1194
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1195
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1196
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1197
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1198
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1199
     self bugYellow16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1200
     ImageEditor openOnClass:self andSelector:#bugYellow16x16Icon
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1201
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1202
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1203
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1204
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1205
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1206
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1207
	constantNamed:'GenericToolbarIconLibrary class bugYellow16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1208
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1209
@@@@@@@@@@@@@@@@@@@@@@@@@@@JN0A9]0@]PP@@@@@@@@@!!@F\BAB$A!! @!!@@@@@@@@F 6IRRP$[S=UF @@@@@@@DHCPC^EN6.HRH(@@@@@@@A&WP$UZW)+
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1210
EG4K@@@@@@@@W&VKLR0%KS4X 0@@@@@@@G<0G(0[E''Y_FQL@@@@@@E!!>UELL!!41QNC1,MX4@@E(_M&QRGGQKXAH9@F)Z@@AC@E-"TFLW F9FWBX@P0@@L AJ
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1211
 R]/VU]EH!!EM@CH@@@@*BHI0Q3LN_C((K"(@@@BNU @G\PVD\$8F]PAV# @@ZG,@@B=!!S4<+^@@@^6 @@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[165 154 7 6 6 6 10 10 10 18 17 2 18 18 18 170 171 52 167 160 24 184 177 74 173 170 131 186 188 150 187 187 187 213 208 142 247 254 105 214 213 206 147 153 4 237 237 237 245 245 245 164 165 37 174 181 27 169 158 15 144 145 125 143 143 139 185 192 62 210 220 21 186 188 80 188 193 92 163 163 163 206 212 101 242 253 65 197 197 197 245 253 107 212 212 212 230 230 230 108 108 108 154 160 34 254 254 254 1 1 1 163 169 68 172 163 26 190 198 33 168 162 20 21 20 21 153 153 153 175 167 38 191 196 98 222 230 58 192 188 151 212 207 142 242 248 112 248 253 130 228 228 228 154 162 4 243 243 243 125 125 125 164 153 5 133 133 133 184 192 35 172 177 72 166 171 64 149 149 149 183 188 87 198 205 67 254 254 253 47 46 23 57 57 50 194 194 194 201 199 196 81 81 81 227 227 227 155 164 0 158 165 14 169 176 26 0 0 0 4 4 4 164 156 45 192 202 27 188 195 49 176 169 60 168 170 52 166 155 6 224 234 17 230 240 36 242 253 53 244 253 84 246 252 100 208 206 199 98 98 98 155 163 0 112 112 112 177 186 0 127 127 127 166 157 18 167 171 60 178 176 46 177 169 39 194 202 47 209 219 28 173 164 35 204 209 60 237 249 19 230 237 75 234 240 95 216 211 145 206 206 206 225 225 225 106 106 106 240 240 240 118 118 118 165 155 4 3 3 3 180 189 14 192 202 0 179 185 63 168 161 23 167 173 68 254 253 252 209 218 51 193 187 85 237 248 44 191 191 191 216 213 148 205 205 205 91 91 91 102 102 102 149 156 26 147 143 37 164 153 3 168 158 12 182 191 17 180 182 38 166 159 18 178 168 42 169 174 68 155 155 155 159 159 159 207 214 81 48 47 43 71 70 36 199 197 194 246 253 117 249 254 137 231 231 231 238 238 238]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M,A_(G? _>A?8G? _>C?>_?9_>%?:O?1/=&_&@@@b') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1212
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1213
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1214
centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1215
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1219
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1221
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
     self centerAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1223
     ImageEditor openOnClass:self andSelector:#centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1225
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1226
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1229
	constantNamed:#'GenericToolbarIconLibrary class centerAdjust16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1230
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@@DEUUUUAU@@UPUUUUTD@@@AAUUUUPUP@ETEUUUUA@@@@PUUUUTET@AUAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1231
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1232
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1234
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1236
colorHistory16x16Icon
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1237
    "This resource specification was automatically generated
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1238
     by the ImageEditor of ST/X."
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1239
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1240
    "Do not manually edit this!! If it is corrupted,
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1241
     the ImageEditor may not be able to read the specification."
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1242
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1243
    "
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1244
     self colorHistory16x16Icon inspect
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1245
     ImageEditor openOnClass:self andSelector:#colorHistory16x16Icon
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1246
     Icon flushCachedIcons
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1247
    "
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1248
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1249
    <resource: #image>
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1250
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1251
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1252
	constantNamed:'GenericToolbarIconLibrary class colorHistory16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1253
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1254
@@@@@@@@@@@EUUUUT@@@@@UUUUUP@@@@AUUUUU@@@@@EUUUUTB@@@@UUUUUPH@@@@@@@@@@ @@@@@"H"H"@0@@@BH"H"HC@@@@@@@@@@L@@@@@L3L3L0P@@@
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1255
@3L3L3A@@@@@@@@@@D@@@@@DQDQDP@@@@@QDQDQ@@@@@@@@@@@@b') ; colorMapFromArray:#[1 104 205 255 255 255 255 0 0 0 255 0 0 0 255 255 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?<C?0O?@??C?<O?0??0??C?<O?<O?0??C?<C?0O?@?<b') ; yourself); yourself]
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1256
!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  1257
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1258
configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1259
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1260
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1261
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1262
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1263
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1264
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1265
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1266
     self configure16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1267
     ImageEditor openOnClass:self andSelector:#configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1268
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1269
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1270
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1271
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1272
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1273
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1274
	constantNamed:#'GenericToolbarIconLibrary class configure16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1275
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1276
@@@@@@@@@@@@@DH3\@@@@@@@ARH5\@@@@@@@ARM0@@@A\@DPH3\@@@D3LBH3M0@@@!!D3L3L3\@A!!H!!D3L3L7\@T1H"I1D3L7@@T5U2H!!D3L@@@A5UWH!!D0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1277
@@@@L7H!!@@@@@@@@L7H@@@@@@@@@L0@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 88 88 88 220 220 220 128 128 128 195 195 195 48 48 48 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8@_8@?09?C?>O?8??;?????_?<_?0O?@C<@C0@C@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1278
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1279
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1280
copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1281
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1282
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1283
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1284
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1285
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1286
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1287
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1288
     self copy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1289
     ImageEditor openOnClass:self andSelector:#copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1290
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1291
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1292
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1293
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1294
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1295
	constantNamed:#'GenericToolbarIconLibrary class copy16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1296
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@* @@@J( @@BBEUP@*)*%@H@Z)$B*&BUP A**$J*X@I@@F**P@A @$@@Z*)@@EUUP@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 128 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1297
@@C<@O8@?0C?<O?8??3??/?>??;?? O>@?8C? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1298
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1299
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1300
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1302
cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1303
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1305
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1307
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1308
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1309
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1310
     self cut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1311
     ImageEditor openOnClass:self andSelector:#cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1312
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1316
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1317
	constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1318
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@E@@W@GR@%HBT IL@X@@@@b') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1319
@@@BH@H @"@CX@E@@\@@ @G@@W@GR@%HBT IL@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1320
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1321
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1322
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1323
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1324
cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1325
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1326
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1328
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1329
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1330
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1331
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1332
     self cut16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1333
     ImageEditor openOnClass:self andSelector:#cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1334
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1335
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1336
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1337
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1338
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1339
	constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1340
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@EUP@@A*%@@@Z)$@@FBUP@A**$@@X@I@@F**P@A @$@@Z*)@@EUUP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 128 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1341
@@C<@O9D?4S?1O?,?:#?.O>P?;#?+ C)@R$AJPD&@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1342
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1343
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1344
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1345
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1346
delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1347
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1348
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1349
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1350
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1351
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1352
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1353
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1354
     self delete16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1355
     ImageEditor openOnClass:self andSelector:#delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1356
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1357
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1358
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1359
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1360
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1361
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1362
	constantNamed:'GenericToolbarIconLibrary class delete16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1363
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@'' LOA N\@_ @<@C0@_@C&@\LC P^@ 0@@@D@@@b') ; colorMapFromArray:#[255 255 255 65 65 65]; yourself]
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1364
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  1365
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1366
desktop16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1367
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1368
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1369
    ^self desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1370
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1371
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1372
desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1373
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1374
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1375
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1376
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1377
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1378
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1379
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1380
     self desktop16x16Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1381
     ImageEditor openOnClass:self andSelector:#desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1382
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1383
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1384
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1385
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1386
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1387
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1388
	constantNamed:'GenericToolbarIconLibrary class desktop16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1389
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1390
@@@@@@@@@@@@@@@@@@@@@BL#H2L#_!!HSW@LDJB]J@%,#EF<9 %:CW44;JPY S&E-H1Q@]5L.T%EPA8U4X  =_2NAPP)%"A0?]R0I!!2<]F D#WP-6"W!!&UDH0
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1391
G 19CX(AH55#KV]UP3D_"7(NU3M(@RM]J39$U$P2HH1E_CQY^0D#WQ^D!!&$!!C85*VAAGDTXAH54YRBH[# >MZ''4PQ1E+@RL5RBTUH$=OS4=OS4=OS0D#OBH:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1392
J''H@@@@@@@@@@@@AH3Y1\!!YKV%)ZV%)ZV%)Z@V0$RX@&\D0ENF87_0DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[53 53 53 165 184 209 191 203 219 217 221 225 225 228 230 222 226 231 59 101 158 67 116 189 82 134 196 72 125 201 80 118 190 76 115 189 82 141 218 93 152 223 87 149 230 56 122 226 91 156 241 103 168 246 176 189 203 189 200 211 8 51 135 118 198 49 16 82 167 41 81 155 255 255 255 107 153 185 99 137 181 102 158 195 71 118 197 87 142 207 77 136 216 60 122 218 62 126 225 47 112 220 52 136 255 163 179 196 173 187 202 247 62 14 214 219 224 220 224 230 227 229 232 56 98 156 255 218 89 58 102 183 64 118 197 62 107 191 83 123 191 82 137 205 64 123 210 58 119 216 55 120 222 97 160 234 95 159 239 149 151 153 58 58 58 179 195 214 210 218 226 14 57 138 24 178 255 46 89 152 117 120 123 95 132 173 52 100 190 67 118 197 81 118 187 82 118 188 61 119 208 57 116 213 52 113 217 84 148 234 111 155 206 97 162 243 114 178 250 186 198 209 207 215 226 41 142 195 227 230 232 41 84 150 68 109 161 132 133 133 70 117 189 74 119 191 79 120 191 86 125 192 63 118 208 59 114 206 52 111 210 92 154 232 85 150 238 101 165 242 55 55 55 176 193 214 204 211 218 8 52 137 27 70 143 37 80 149 63 105 160 89 125 167 77 129 193 68 109 186 53 106 201 79 120 194 65 117 205 62 112 200 107 149 198 45 106 211 71 137 232 111 155 207 164 180 197 171 189 212 194 206 221 11 55 137 224 227 229 60 124 168 33 110 194 0 0 0 72 123 192 65 117 197 71 113 191 84 121 190 68 116 201 88 147 220 81 143 227 110 154 204 90 154 237 84 150 238 165 181 198 167 186 210 201 209 217 8 51 136 22 66 143 32 75 147 36 80 161 71 121 190 45 101 200 77 132 203 76 120 196 71 116 198 104 144 191 68 131 221 70 135 228 63 129 229 48 112 220]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C??????????????????????????????????0@@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1393
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1394
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1395
diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1396
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1397
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1398
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1399
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1400
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1401
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1402
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1403
     self diff16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1404
     ImageEditor openOnClass:self andSelector:#diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1405
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1406
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1407
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1408
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1409
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1410
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1411
	constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1412
	ifAbsentPut:[(Depth8Image new) width: 16; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1413
@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@A@XFA XFA XD@@@@@@@@@@PFA XF@@@@@@@@@@@@@@@DA XF@@XFA P@@@@@@@@@A@XF@@XFA XD
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1414
@@@@@@@@@@PFA @FA XFA@@@@@@@@@@DA X@A XFA P@@@@@@@@@A@XF@@XFA XD@@@@@@@@@@PFA X@A XFA@@@@@@@@@@DA XFA @@@@@@@@@@@@@@A@XF
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1415
A XFA XD@@@@@@@@@@PFA XFA XFA@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 0 0 0 194 194 194 132 132 132 198 198 198 255 255 255]; mask:((Depth1Image new) width: 16; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@') ; yourself); yourself]
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1416
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1417
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1418
diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1419
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1420
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1421
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1422
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1423
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1424
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1425
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1426
     self diff16x16Icon2 inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1427
     ImageEditor openOnClass:self andSelector:#diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1428
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1429
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1430
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1431
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1432
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1433
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1434
	constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  1435
	ifAbsentPut:[(Depth8Image new) width: 16; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1436
@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@A@XFA PFA XD@@@@@@@@@@PFA0XD@@@@@@@@@@@@@@@DA XF@@XFA P@@@@@@@@@A@XH@@PFB@XD
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1437
@@@@@@@@@@PFA @DA XFA@@@@@@@@@@DA  @A@XHA P@@@@@@@@@A@XF@@PFA XD@@@@@@@@@@PFA0X@A  FA@@@@@@@@@@DA XFA@@@@@@@@@@@@@@@A@XH
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1438
A PFB@XD@@@@@@@@@@PFA XDA XFA@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 0 0 0 194 194 194 132 132 132 198 198 198 255 255 255 248 0 0 0 252 0]; mask:((Depth1Image new) width: 16; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@') ; yourself); yourself]
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1439
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1440
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1441
doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1442
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1443
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1446
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1448
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1449
     self doIt16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1450
     ImageEditor openOnClass:self andSelector:#doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1451
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1452
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1453
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1454
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1455
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1456
	constantNamed:#'GenericToolbarIconLibrary class doIt16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1457
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@P@@@@P@@@@T@@@@W@@@@W5P@@W5P@@@EP@@@AP@@@@P@@@@P@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@H@A @N@A0@O@A?0O>A?0O>@C0@N@A0@F@@P@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1461
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1464
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1466
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1467
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1468
     self down16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1469
     ImageEditor openOnClass:self andSelector:#down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1471
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1472
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1473
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1474
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1475
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1476
	constantNamed:#'GenericToolbarIconLibrary class down16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1477
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1478
@@@@@@@@@@@@@EUUUU@@@@@@U&@CT@@@@@AVL3QP@@@@@EX3ME@@@@@@TCL4T@@@UUURL3QUUUAPH3L3L3MAT@TBL3L3MAT@@E@#L3MAT@@@APH3MAT@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1479
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C @D@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1481
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1483
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1485
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1486
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1487
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1488
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1490
     self edit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1491
     ImageEditor openOnClass:self andSelector:#edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1492
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1493
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1494
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1495
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1496
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1497
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1498
	constantNamed:#'GenericToolbarIconLibrary class edit16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1499
	ifAbsentPut:[(Depth8Image new) width: 16; height: 17; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1500
@@@@@@@@@@@@@@@@@@@@@@@@B (JB (JB (JB (@APT@@@(IBP$IA $IBP$IAPTC@@@JBP$IBPXIBP$IAPTC@0@@B XFA XFA XFAPTC@0L@@@(IBP$IA $I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
APTC@0LD@@@JBP$IBPXIAPTC@0LDB0@@B XFA XFAP C@0LD@ @@@@(IBP$I@@ H@0LD@ @@@@@JBP$IBPTHB@ HB0D@@@@@B XFA @HB@ DA@@A@@@@@@(I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1502
BP$GB@PDA (I@P@@@@@JBP$G@ ,FB $IBPD@@@@@B @@@P@@@@@@@@@A@@@@@@(IBP$I@@$IBP$I@P@@@@HA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1503
@@@b') ; colorMapFromArray:#[160 160 160 0 0 0 48 48 48 255 128 0 192 88 0 255 168 88 195 195 195 88 88 88 255 220 168 255 255 255 220 220 220 64 0 0]; mask:((Depth1Image new) width: 16; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?>3??O?<??3??O?<??#?<O?0??C?<O?0??C?<_?0@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1504
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1505
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1506
editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1507
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1508
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1509
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1510
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1511
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1512
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1513
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1514
     self editcopy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1515
     ImageEditor openOnClass:self andSelector:#editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1516
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1517
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1518
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1519
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1520
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1521
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1522
	constantNamed:#'GenericToolbarIconLibrary class editcopy16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1523
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1524
UUUU@@@@@@ATQDUP@@@@@EQDQRT@@@@@U@AEP%@@@@ATQDUUUUT@@EP@QCL5QU@@UDQDIBUEEPAT@@P@ITUATEQDIBH%QUUUU@A@@BUDL3UTIBH"ITQDEUUU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1525
UUUPA@AE@@@@UDQDQDT@@@AT@D@@QP@@@EQDQDQE@@@@UUUUUUTb') ; colorMapFromArray:#[48 48 48 220 220 220 255 255 192 160 160 160 255 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?@C>@O<@?8C?<O?8??3??/??????????@?<C?0O?@?<b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1526
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1527
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1528
editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1529
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1530
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1532
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1533
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1536
     self editcut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
     ImageEditor openOnClass:self andSelector:#editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1539
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1541
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1543
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1544
	constantNamed:#'GenericToolbarIconLibrary class editcut16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1545
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@4@@@@4@@@@4@@@@4@@@@4@@@@4@@@@4@@@@@$@@@@CP@@@@M@@@@@4@@@@CP@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 220 220 220 128 128 128 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A8A,0O1!!9"OC=8C?@C8@O C?@?^FH<1!!;LC7 F@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1546
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1547
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1548
editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1549
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1550
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1551
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1552
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1553
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1554
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1555
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1556
     self editpaste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1557
     ImageEditor openOnClass:self andSelector:#editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1558
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1559
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1560
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1561
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1562
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1564
	constantNamed:#'GenericToolbarIconLibrary class editpaste16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1565
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1566
@@@@@Q@@@@@ADQDP@QDQ@AY&XPDPE&XPEFXP@@@AY!!@TY!!DQDQE&DAQ&Y!!H"HQXPEFY&D"H!!TQ@TY&XRL2D%DQQ&Y!!H"HQDQEFY&D#L"Y&DTY&XRH"IRTQQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1567
Y!!H3L#MQEFY&D"IRUUDVY&XRL2L3TPDQDQIRUUUQ@@@@DQDQDQDb') ; colorMapFromArray:#[192 192 0 0 0 0 255 255 255 48 48 48 220 220 220 255 255 192 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@XA??O?>??;??/?>??;??????????????????7??@?<b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1568
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1569
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1570
edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1571
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1572
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1573
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1574
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1575
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1577
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1578
     self edittrash16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1579
     ImageEditor openOnClass:self andSelector:#edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1580
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1581
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1582
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1584
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1585
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1586
	constantNamed:#'GenericToolbarIconLibrary class edittrash16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1587
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1588
@@@@@0@@@@@@@@N@H@@@@@@QE&Y@Y(@@@C!!!!DVX"H@@@ACNH"DP@@@@H"DP"Q0@@@@ XNDP''@@@@BA 8QB\@@@@HFC!!DI0@@@@ XNDP''@@@@BA 8QB\@@@@H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1589
FC!!DI0@@@@ XNDP''@@@@@1 8QB\@@@@@@3"D@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 88 88 88 220 220 220 128 128 128 93 93 93 195 195 195 48 48 48 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A8@?>G?<_?0?>C?8O? ?>C?8O? ?>C?8O? ?>A?0A<@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1590
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1591
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1592
erase16x16Icon
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1593
    <resource: #programImage>
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1594
4040
01e4930b262f changed: #erase16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4012
diff changeset
  1595
    ^ self erase16x16Icon2
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1596
!
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1597
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1598
erase16x16Icon1
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1599
    "This resource specification was automatically generated
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1600
     by the ImageEditor of ST/X."
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1601
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1602
    "Do not manually edit this!! If it is corrupted,
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1603
     the ImageEditor may not be able to read the specification."
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1604
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1605
    "
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1606
     self erase16x16Icon1 inspect
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1607
     ImageEditor openOnClass:self andSelector:#erase16x16Icon1
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1608
    "
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1609
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1610
    <resource: #image>
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1611
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  1612
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1613
	constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1614
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1615
@@@8@#0LG!! GL@O @\@C8@\0C!! \BC0DN@@P@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1616
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1617
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1618
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1619
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1620
erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1621
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1622
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1623
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1624
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1625
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1626
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1627
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1628
     self erase16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1629
     ImageEditor openOnClass:self andSelector:#erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1630
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1631
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1632
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1633
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1634
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1635
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1636
	constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1637
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1638
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@3@@@C@@@@@0@3@C@A@@@@@ @0@A@@@@@@H@@A@@@@@@@C@C@@@@@@@C@@L@@@@@@C@PHC@@@@@@LP@B@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1639
L@@@@ @@@@@1@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 0 0 64 0 0 128 0 0 255 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@HCA0_O@_8@?@A8@O A7@FL@0XC@ H@@@@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1640
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1641
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1642
exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1643
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1644
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1645
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1646
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1647
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1648
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1649
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1650
     self exec16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1651
     ImageEditor openOnClass:self andSelector:#exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1652
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1653
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1654
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1655
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1656
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1657
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1658
	constantNamed:#'GenericToolbarIconLibrary class exec16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1659
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1660
@@@@A7@@@@@@A7A9%0]0@@A9A0Q@\I\@@GBR@3@)A0@@A2L8NCI0@@]9@8H# I]0^T@8L@"#AI]2BR"(!!ZJPI0\Q$()XJQE0@GII$"&TI0@GARD)$!!IP\@^P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1661
E7@G\P%0@G]0^U\G]0@@@@A1I0@@@@@@@@]0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[160 160 160 88 88 88 128 128 128 255 168 88 195 195 195 255 255 255 93 93 93 0 0 0 255 220 168 220 220 220 255 255 192]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@X@[6C?<O?0_>G?>?''???7?>O?1??''?>N=0C0@F@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1662
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1663
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1664
exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1665
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1666
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1667
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1668
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1669
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1670
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1671
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1672
     self exit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1673
     ImageEditor openOnClass:self andSelector:#exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1674
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1675
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1676
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1677
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1678
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1679
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1680
	constantNamed:#'GenericToolbarIconLibrary class exit16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1681
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1682
@@@@@@@@@@@@@@@@@@@@@@@@@QDQ@@@@@@DRH"H"@@@@@RH H"H@@@@RH"@"H%@@@AH"HBH"T@@@D"H H"IP@@@RH"@"H%@@@AH"HBH"T@@@@"H H"TC@@@B
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1683
H"H"UP@@@@@EUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 220 220 220 128 128 128 93 93 93 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@G0A?0O? ?>G?<_?1??G?<_?0??C?8G?@G0@@@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1684
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1685
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1686
fileNew16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1687
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1688
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1689
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1690
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1691
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1692
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1693
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1694
     self fileNew16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1695
     ImageEditor openOnClass:self andSelector:#fileNew16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1696
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1698
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1699
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1700
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1701
	constantNamed:#'GenericToolbarIconLibrary class fileNew16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1702
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:' @F@@X@A#<FO4X?A#?&O>X?9#?&O>X?9#?&O>X@A0@Db') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1703
@@@@@A? G?@_>A?<G?0_?A?<G?0_?A?<G?0_?A?<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1705
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1707
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1708
fileOpen16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1709
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1710
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1711
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1712
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1713
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1714
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1715
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1716
     self fileOpen16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1717
     ImageEditor openOnClass:self andSelector:#fileOpen16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1718
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1719
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1720
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1721
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1722
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1723
	constantNamed:#'GenericToolbarIconLibrary class fileOpen16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1724
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'0@@@@0@@@@@@@@@@@@@@@@@@@@@]@@@@M7]0@A7]4@@7P@@@GR**(CR**(@R**(@B**(@@@@@@@@@@@@<@@@@0@a') ; colorMapFromArray:#[0 0 0 255 255 0 128 128 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1725
@@@@\@BJ@@Y0C/? ?>C?8O????;??O?8??C?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1726
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1727
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1728
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1729
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1730
fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1731
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1732
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1733
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1734
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1735
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1736
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1737
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1738
     self fileSave16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1739
     ImageEditor openOnClass:self andSelector:#fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1740
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1741
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1742
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1743
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1744
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1745
	constantNamed:#'GenericToolbarIconLibrary class fileSave16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1746
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'0@@@@0@@@@@D**( AJ**@@R**!!@D**(PAJ**D@R**!!@E@@APAUUUT@T@@A@E@@(PAP@JD@T@B!!@@@@@@@@@@@0@a') ; colorMapFromArray:#[0 0 0 128 128 0 212 208 200 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1747
@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??#?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1748
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1749
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1750
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1751
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1752
fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1753
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1754
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1755
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1756
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1757
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1758
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1759
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1760
     self fileclose16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1761
     ImageEditor openOnClass:self andSelector:#fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1762
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1763
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1764
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1765
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1766
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1767
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1768
	constantNamed:#'GenericToolbarIconLibrary class fileclose16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1769
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1770
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@H @@@@@BH H"@@@@@@@"H"@@@@@@@@H"@@@@@@@@H"H @@@@@@H"@"H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1771
@"@@H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 93 93 93 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@O C? _?A?<O?8??#?>O?8??!!?<G?0O>@O @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1772
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1773
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1774
filter16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1775
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1776
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1777
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1778
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1779
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1780
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1781
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1782
     self filter16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1783
     ImageEditor openOnClass:self andSelector:#filter16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1784
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1785
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1786
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1787
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1788
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1789
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1790
        constantNamed:'GenericToolbarIconLibrary filter16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1791
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1792
H1$YFQ$YFR$YFQ$DLA$DD"D:C 8NC 8NK@8NC 8NKA,@MP$^J2XH@R<CEQXVIPH@@@@5GA8"@A@LER4VKS\@@@@@@CTZG!!  CCHWIP,@@@@@@@@@F10*D0XV
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1793
KS\@@@@@@@@@@@@_BR<LC0,@@@@@@@@@@@@@@CXAHB$@@@@@@@@@@@@@@@@6@R@6@@@@@@@@@@@@@@@@M#P DP@@@@@@@@@@@@@@@CXAD2$@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1794
@@@.M@L8@@@@@@@@@@@@@@@@MR\ JP@@@@@@@@@@@@@@@@@5JC @@@@@@@@@@@@@@@@@@@H1@@@@@@@@@@@@@@@@@@@@B @@@@@@@@@a') ; colorMapFromArray:#[255 240 0 240 224 20 112 80 20 255 192 0 144 96 20 240 240 220 255 176 30 255 240 255 255 240 20 240 240 50 112 80 30 112 64 20 255 192 20 240 224 220 255 255 255 255 176 60 255 224 0 160 112 0 128 96 30 255 208 20 240 240 210 255 176 20 255 160 30 255 176 50 255 255 30 144 96 0 240 240 60 96 80 50 240 240 80 240 224 210 255 240 100 80 80 30 255 208 0 80 80 60 255 240 50 128 112 60 240 255 240 240 176 50 255 255 20 240 224 30 224 192 20 160 96 0 255 240 60 255 240 80 255 255 240 255 160 50 144 128 20 240 208 20 144 80 0 128 80 20 240 176 30 240 255 255 240 224 0 96 80 20 144 112 20 128 64 0 160 112 20 224 224 220 240 240 240]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?????7?>O?0_>@?0A>@C0@O@@<@C0@O@@<@A0@C@@D@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1795
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1796
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1797
filterBlue16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1798
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1799
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1800
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1801
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1802
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1803
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1804
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1805
     self filterBlue16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1806
     ImageEditor openOnClass:self andSelector:#filterBlue16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1807
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1808
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1809
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1810
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1811
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1812
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1813
        constantNamed:'GenericToolbarIconLibrary filterBlue16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1814
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1815
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GDQDQDQD@@@B:Y&Y&X@@@@@P)&Y$@@@@@@LL"H@@@@@@@CFL@@@@@@@@AQ @@@@@@@@]]@@@@@@@@A;P@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1816
@H/@@@@@@@@@ U@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 52 70 80 100 136 150 96 130 150 80 110 130 64 98 120 92 124 140 40 52 60 32 42 50 112 148 170 88 118 130 64 88 100 76 102 120 80 116 130]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O? _<@? A<@C @N@@8@C @N@@8@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1817
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1818
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1819
finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1820
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1821
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1822
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1823
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1824
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1825
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1826
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1827
     self finish16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1828
     ImageEditor openOnClass:self andSelector:#finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1829
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1830
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1831
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1832
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1833
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1834
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1835
	constantNamed:#'GenericToolbarIconLibrary class finish16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1836
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1837
@@@@@@@@@@@@@@AD@@@@@@@@@DY@@@AD@@@@P6P@@DP@@@ABM$@@Q@QDQDH#Y@ADAEUVL"H6PDPDT"H"H"M$Q@Q"H"H"H!!ADAFH"H"H!!ADPDHQDRH!!A@Q@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1838
QDH!!A@AD@@@@P!!A@@DP@@@AAA@@@Q@@@@DA@@@AD@@@@Q@@@@@@b') ; colorMapFromArray:#[0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@C@@NC@<LC87?3_?-??7??_?=?>7?3@>LC00NC@0@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1839
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1840
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1841
flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1842
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1843
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1844
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1845
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1846
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1847
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1848
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1849
     self flagRed16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1850
     ImageEditor openOnClass:self andSelector:#flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1851
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1852
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1853
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1854
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1855
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1856
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1857
	constantNamed:#'GenericToolbarIconLibrary class flagRed16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1858
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1859
@@@@@@@@@@@@@@@F@@@@@@@@@FY @@@@@@@FA&@@@@@@Y&APY @@@FXEUPI&@@@@YUUSIBY @@A%T3IBI&@@@@X4QBI&Y @@A$QBI A&@@@@YBY @@Y @@@F
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1860
X@@@A&@@@@@@@@@@Y @@@@@@@@A&@@@@@@@@@@Y @@@@@@@@A&@b') ; colorMapFromArray:#[195 195 195 93 93 93 192 0 0 255 192 192 255 0 0 255 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@@N@A8@?0O?@?>C?8G?0_3@>FA X@@0@C@@F@@Xb') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1861
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1862
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1863
formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1864
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1865
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1866
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1867
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1868
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1870
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1871
     self formatCode16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1872
     ImageEditor openOnClass:self andSelector:#formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1873
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1874
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1875
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1876
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1877
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1878
	constantNamed:#'GenericToolbarIconLibrary class formatCode16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1879
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@UTEUUUUAP@AUPUUUUTE@@AUAUUUUPUU@ATEUUUUAUT@EPUUUUTE@@@UAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1880
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1881
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1882
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1883
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1884
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1885
forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1886
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1887
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1888
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1889
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1890
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1892
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1893
     self forward16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1894
     ImageEditor openOnClass:self andSelector:#forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1895
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1896
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1897
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1898
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1899
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1900
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1901
	constantNamed:#'GenericToolbarIconLibrary class forward16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1902
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1903
@@@@@@@@@@@@@@@BH@@@@@@@@@IB@@@@@@@@@!!P @@@@@@@B@TH@@@@"H"H@EB@@@BL3PP@AP @@H0@@@@@TH@@$@@@@@@YR@BP@@@@@YR@@HFY&@@YR@@@"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1904
H"H@YR@@@@@@@ YR@@@@@@@BYR@@@@@@@@IR@@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 192 192 0 255 255 0 0 0 255 255 255 192 255 255 0 64 64 0 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A @G@@^@A<C?8O?0??#??O?8??C?8@_@A8@G@@X@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1905
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1906
4326
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1907
functionsOnly16x16Icon
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1908
    "This resource specification was automatically generated
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1909
     by the ImageEditor of ST/X."
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1910
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1911
    "Do not manually edit this!! If it is corrupted,
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1912
     the ImageEditor may not be able to read the specification."
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1913
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1914
    "
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1915
     self functionsOnly16x16Icon inspect
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1916
     ImageEditor openOnClass:self andSelector:#functionsOnly16x16Icon
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1917
     Icon flushCachedIcons
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1918
    "
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1919
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1920
    <resource: #image>
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1921
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1922
    ^Icon
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1923
        constantNamed:'GenericToolbarIconLibrary class functionsOnly16x16Icon'
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1924
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1925
QDQDQDQDQDQDQDQDQDQDQDQEITQDQDQDQEA@UDQDQDQDMDQEETEQUDPTQEADQDDEQAQDEDEDEAEADQPTQAEDDTPTQAQDDTPQQAQDEDEDEAEDEDQPQDQAATPT
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1926
QDTUPUETQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[63 63 95 0 0 0 3 0 2 0 1 0 159 191 191 191 191 191]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A0@M @!!3"LCH$%:LRH1H$$#@2GN@@@@@@@@@@@b') ; yourself); yourself]
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1927
!
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  1928
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1929
goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1930
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1931
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1932
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1933
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1934
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1935
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1936
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1937
     self goto16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1938
     ImageEditor openOnClass:self andSelector:#goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1939
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1940
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1941
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1942
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1943
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1944
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1945
	constantNamed:#'GenericToolbarIconLibrary class goto16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1946
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@E@@@@TD@@@PD@@@PA@@@DA@@@@U@@@E@@@@DD@D@@T@TP@@@PD@@@PD@@@DA@@@AA@@@DE@@@DP@@@AT@@@@a') ; colorMapFromArray:#[64 0 0 0 0 0 0 192 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@C@@>@G0@?@C8@G@C@@^B@0<@G0@>@C8@O@BX@\@A0@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1947
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1948
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1949
grid16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1950
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1951
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1952
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1953
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1954
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1955
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1956
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1957
     self grid16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1958
     ImageEditor openOnClass:self andSelector:#grid16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1959
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1960
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1961
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1962
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1963
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1964
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1965
	constantNamed:'GenericToolbarIconLibrary class grid16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1966
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1967
H"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1968
&R&R&R&RH"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"Hb') ; colorMapFromArray:#[32 12 48 32 56 216 248 184 112 40 36 32 32 48 92 40 12 8 8 0 144 24 60 216 88 36 120 248 248 248]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1969
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1970
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1971
gridAlign16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1972
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1973
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1974
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1975
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1976
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1977
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1978
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1979
     self gridAlign16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1980
     ImageEditor openOnClass:self andSelector:#gridAlign16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1981
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1982
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1983
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1984
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1985
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1986
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1987
	constantNamed:'GenericToolbarIconLibrary class gridAlign16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1988
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1989
H"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)\"&R&R&R&RFBH"H"H"H"\KH)$)$)$)]J$"&WFR&R^K&RH"]GH"]+H"H)$*!!9\C$)$"&R
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1990
&$]E&R&RH"H"U@H"H"H)$)$#$)$)$"&R&R&R&R&RH"H"H"H"H"Hb') ; colorMapFromArray:#[32 12 48 32 56 216 248 184 112 40 36 32 32 48 92 40 12 8 8 0 144 24 60 216 88 36 120 248 248 248 32 40 32 32 16 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1991
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  1992
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1993
history16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1994
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1995
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1996
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1997
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1998
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  1999
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2000
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2001
     self history16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2002
     ImageEditor openOnClass:self andSelector:#history16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2003
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2004
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2005
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2006
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2007
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2008
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2009
	constantNamed:#'GenericToolbarIconLibrary class history16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2010
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2011
@@@@@@@@@@@ADQDQD@@@@@DQDQDP@@@@@QDQDQ@@@@@ADQDQDA@@@@DQDQDPD@@@@@@@@@@P@@@@@QDQDQ@P@@@ADQDQDA@@@@@@@@@@D@@@@@DQDQDPD@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2012
@QDQDQ@P@@@@@@@@@A@@@@@ADQDQD@@@@@DQDQDP@@@@@@@@@@@b') ; colorMapFromArray:#[1 104 205 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?<C?0O?@??C?<O?0??0??C?<O?<O?0??C?<C?0O?@?<b') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2013
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2014
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2015
idea16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2016
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2017
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2018
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2019
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2020
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2021
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2022
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2023
     self idea16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2024
     ImageEditor openOnClass:self andSelector:#idea16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2025
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2026
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2027
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2028
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2029
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2030
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2031
	constantNamed:#'GenericToolbarIconLibrary class idea16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2032
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2033
@@@BH"H@@@@@@BAUTB@@@@@BA*V @ @@@BAZU%)PH@@@HJUVV*@ @@@ )VQ%(B@@@BA&I T@H@@@@ T H@H@@@@@H@H@H@@@@@@*@ ( @@@@@@HB@ @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2034
@"L"@@@@@@@BNXH@@@@@@@JI\ @@@@@@@!! R@@@@@@@@H"@@@@@b') ; colorMapFromArray:#[255 255 0 48 48 48 0 0 0 220 220 220 255 255 255 255 220 168 255 255 192 160 160 160 88 88 88 128 128 128 255 168 88]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@O8A?0O? ?>C?8O? _<@? C>@G0@_@A<@G0@_@@8@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2035
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2036
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2037
indent16x16Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  2038
    <resource:#programImage>
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2039
    ^ self indent16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2040
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2041
    "Modified: / 06-04-2011 / 18:37:52 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2042
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2043
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2044
indent16x16Icon1
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2045
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2046
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2047
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2048
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2049
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2050
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2051
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2052
     self indent16x16Icon inspect
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2053
     ImageEditor openOnClass:self andSelector:#indent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2054
     Icon flushCachedIcons
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2055
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2056
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2057
    <resource: #image>
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2058
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2059
    ^Icon
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2060
        constantNamed:'GenericToolbarIconLibrary class indent16x16Icon1'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2061
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2062
@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0L@@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HC@0LC@@@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2063
@@@@@@@@@0LB@ LC@0@@@@@@@@@@@@HB@ HB@0LC@0LC@0LC@0LC@0HB@0LC@@@@@@@@@@@@@0LB@0LC@0@@@@@@@@@@@@LC@0LC@0LC@0LC@0LC@0LC@0@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2064
@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0@a') ; colorMapFromArray:#[0 0 0 220 226 243 0 0 128 0 0 0]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?8@@@O>@@@BG?L_?8@CG?H_<@@C?@@@@?0@@@@@@b') ; yourself); yourself]
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2065
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2066
    "Created: / 06-04-2011 / 18:37:36 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2067
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2068
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2069
indent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2070
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2071
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2072
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2073
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2074
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2075
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2076
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2077
     self indent16x16Icon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2078
     ImageEditor openOnClass:self andSelector:#indent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2079
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2080
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2081
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2082
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2083
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2084
    ^Icon
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2085
        constantNamed:'GenericToolbarIconLibrary indent16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2086
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2087
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H@@"H"H@@@@@@BHRH"H"H"@@H!!D"@@@@@@DQDQH"H"H @BHQH @@@@@@H!!H"H"H"H@@"
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  2088
H"H@@@@@@BH"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 34 110 181 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O?8??#?>O?8??''?>O?8??#?>O?8?? @@@@@b') ; yourself); yourself]
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2089
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2090
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2091
leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2092
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2093
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2094
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2095
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2096
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2097
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2098
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2099
     self leftAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2100
     ImageEditor openOnClass:self andSelector:#leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2101
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2102
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2103
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2104
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2105
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2106
	constantNamed:#'GenericToolbarIconLibrary class leftAdjust16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2107
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@@DEUUUUA@@AUPUUUUTD@@@AAUUUUPP@@UTEUUUUA@@@@PUUUUTD@@EUAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2108
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2109
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2110
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2111
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2112
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2113
leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2114
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2115
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2116
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2117
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2118
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2119
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2120
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2121
     self leftDown16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2122
     ImageEditor openOnClass:self andSelector:#leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2123
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2124
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2125
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2126
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2127
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2128
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2129
	constantNamed:#'GenericToolbarIconLibrary class leftDown16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2130
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2131
@@@@@@@@@@@@@EUUUUUUT@@@T@@@@@AP@@APL3L3L5@@@E@3MDQDT@@@TCL4UUUP@@ARL3QP@@@@@EL3ME@@@@UUT3L3UUT@@E@#L3MAT@@@APH3MAT@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2132
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O? ?>C?8O? ?>C>@O8G?<O? _<@? A<@C @D@@@@b') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2133
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2134
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2135
lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2136
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2137
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2138
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2139
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2140
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2141
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2142
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2143
     self lock16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2144
     ImageEditor openOnClass:self andSelector:#lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2145
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2146
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2147
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2148
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2149
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2150
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2151
	constantNamed:#'GenericToolbarIconLibrary class lock16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2152
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2153
@@@@]7\@@@@@@@\Z*(@@@@@@]''"G)0@@@@A: @_H@@@@@G2@A< @@@@@]5@G1P@@@@^H!!RJH @@@\3)&E$M5@@A3@DP4L7T@@HN0QDL3]P@@!!+DVZ*)5@@BF
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2154
,QY&*''T@@E*1E&**]P@@U+DVZ*M5@@AS@DP4L7T@@@VBJH"XT@@b') ; colorMapFromArray:#[255 220 168 220 220 220 64 64 0 128 128 0 192 192 0 0 0 0 195 195 195 88 88 88 48 48 48 64 0 0 160 160 160 255 255 255 128 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@<@G8@?0C''@N\@90G? ??C?<O?0??C?<O?0??C?<G? b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2155
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2156
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2157
palette16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2158
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2159
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2160
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2161
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2162
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2163
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2164
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2165
     self palette16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2166
     ImageEditor openOnClass:self andSelector:#palette16x16Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2167
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2168
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2169
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2170
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2171
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2172
    ^Icon
4350
734844d1d4fd changed: #palette16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4349
diff changeset
  2173
        constantNamed:'GenericToolbarIconLibrary class palette16x16Icon'
734844d1d4fd changed: #palette16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4349
diff changeset
  2174
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
734844d1d4fd changed: #palette16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4349
diff changeset
  2175
C 8NC 8NA XFA XNC 8NC 8HC 8FA0$IBP$IA08NC 8NC XGBP$IB04MBP$FC 8NC 8FBP$IBP,MCP$IA08NC 8FBPHA@P$IBP$IBP\NC 8FBP$AA@TIBP$I
734844d1d4fd changed: #palette16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4349
diff changeset
  2176
BPX@C 8NA $IBP$HBP$IBP\NC 8NC XI@0@@BP$IBP$IA XNC 8FBP@@@@$IBP$IBP$IA0X@A $IBP$IBP$IA0 HA0$IA XIBP$LC@0IBP @@@ IBPXFBP$I
734844d1d4fd changed: #palette16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4349
diff changeset
  2177
C@0LBP$HC 8HBP$FC XIBP(LB $IA0 HA $IA08NA $IBP$IBP$IBP$IBPXNC 8GBP$IBP$IBP$IA XHC 8NC \FA XFA XFA0 HC @a') ; colorMapFromArray:#[0 152 0 15 48 248 16 48 240 32 104 0 48 48 168 79 48 120 143 96 56 160 112 0 170 140 140 172 140 108 239 232 128 240 8 0 240 200 56 255 8 0 255 248 248]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@>@O<C?8O?!!?>O?0?>C?>O?>????3??O_?<??1?>C? b') ; yourself); yourself]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2178
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  2179
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2180
paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2181
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2182
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2183
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2184
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2185
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2186
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2187
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2188
     self paste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2189
     ImageEditor openOnClass:self andSelector:#paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2190
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2191
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2192
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2193
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2194
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2195
	constantNamed:#'GenericToolbarIconLibrary class paste16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2196
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2197
@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@AWTF@FA5\@@G\CL3L0]P@@U0@@@@A7@@A5]WU5]WT@@E]WV**** @@]WU:DQDZ(@AWU5(QDQ(Z@GU5^!!@@F** U5
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2198
]ZDQDQDZA5]W(P@@@A(@@@B!!DQDQF @@@J******@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2199
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 255 255 255 128 128 0 255 255 0 128 128 128 0 255 255 0 0 255 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2200
@@@G G?8??3??O?<??3??O?<??;???????=??0O?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2201
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2202
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2203
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2204
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2205
pipette16x16Icon
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2206
    "This resource specification was automatically generated
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2207
     by the ImageEditor of ST/X."
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2208
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2209
    "Do not manually edit this!! If it is corrupted,
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2210
     the ImageEditor may not be able to read the specification."
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2211
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2212
    "
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2213
     self pipette16x16Icon inspect
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2214
     ImageEditor openOnClass:self andSelector:#pipette16x16Icon
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2215
     Icon flushCachedIcons
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2216
    "
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2217
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2218
    <resource: #image>
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2219
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2220
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2221
	constantNamed:#'GenericToolbarIconLibrary class pipette16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2222
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2223
FQ$[F18^G!!8^G!!8^J"(^G!!\YF1,[G!!8^G!!8^IR (C!!$WFQ([F18^G!!8^IR$*J"TYE1\YF!!,[G!!8YIR *J"$SFQ\WFQ([F1,[IR *J"$TFQ$WE1\YF!!,YFR $
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2224
J" JFQ$YE1\WFQ$YFQ@]JAHCFQ$YFQXWE1\WE1T#I \LFQ$YFQ$UE!!\WE1X&I $YFQ$YFQ$YEQXVFQD&H  YFQ$YFQ$YFQTUEQD&HPPYFQ$YFQ$YFQ,UEQ@''
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2225
H@HYFQ$YFQ$YFQ([FP<&G0DYFQ$YFQ$YFQ$YFP4!!G@@YFQ$YFQ$YE1$WFQ$XBPTYFQ$YFQ$YE1$YE1\WB0XYFQ$YFQ$YFQ$YE1\WE0@a') ; colorMapFromArray:#[48 48 50 48 48 60 64 72 80 80 8 20 80 88 100 88 72 60 96 72 60 96 104 120 96 104 130 112 120 140 120 24 20 120 88 70 128 24 20 128 96 70 136 40 40 136 96 70 136 96 80 136 104 80 144 24 20 144 32 40 144 40 40 144 104 80 144 104 90 144 112 90 144 120 110 152 112 90 152 112 100 152 120 100 152 160 190 160 160 180 168 136 110 168 184 220 176 192 220 184 200 230 192 216 240 200 216 230 208 48 50 208 56 60 216 240 240 224 240 240 240 64 70 240 88 100 240 136 140]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@0@G @>@G8@?@C8@_@C8@^@C0@^@C0@^@C0@N@@0@@b') ; yourself); yourself]
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2226
!
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  2227
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2228
printIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2229
    "This resource specification was automatically generated
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2230
     by the ImageEditor of ST/X."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2231
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2232
    "Do not manually edit this!! If it is corrupted,
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2233
     the ImageEditor may not be able to read the specification."
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2234
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2235
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2236
     self printIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2237
     ImageEditor openOnClass:self andSelector:#printIt16x16Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2238
     Icon flushCachedIcons
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2239
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2240
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2241
    <resource: #image>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2242
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2243
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2244
	constantNamed:'GenericToolbarIconLibrary class printIt16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  2245
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2246
@@@@@@@@@@@@@@@@@@@@@@@@A XFA XFA X@@@@@@@@@@@XEAPTEAPT@@@@@@@@@@@@FAPTEAPT@@P@@@@@@@@@DA TEAPT@@P@@@@@DA@@@A@XEAPT@@PD@
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2247
APT@A@P@@@PFAPT@@PDC@@@@@@@D@@@DA T@@PDC@0DA@P@DA@@@A@X@@PDC@0DA@P@@A@P@@@P@@@@@@@DA@P@G@@PD@@@DA TEAP@A@P@GA0@DA@@@A@XE
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2248
AP@@@P@GA0\@A@P@@@PFAP\@@P@GA0\G@@PD@@@@A \G@@@GA0\GA0@@@@@@@@XFA @FA XFA @@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255 0 255 0 248 252 248 64 64 64 168 228 240]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?8C? O?@?>C?8O?0?>C?8O? ?>C?8O? ?>C?8@@@b') ; yourself); yourself]
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2249
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2250
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2251
redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2252
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2253
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2254
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2255
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2256
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2257
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2258
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2259
     self redo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2260
     ImageEditor openOnClass:self andSelector:#redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2261
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2262
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2263
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2264
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2265
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2266
	constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2267
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2268
@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2269
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2270
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2271
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2272
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2273
redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2274
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2275
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2276
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2277
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2278
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2279
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2280
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2281
     self redo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2282
     ImageEditor openOnClass:self andSelector:#redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2283
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2284
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2285
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2286
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2287
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2288
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2289
	constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2290
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2291
@@@@@@@@@@@@@@L3L@@@@@@CL@@CL@@@@C@@@@@C@@LC@!!L2@@@0H0LSL@L2@@L#LC@@@@L @BL3L@@@@C@@H3L0@@@@L@@#L3@@@@H"H"LCL@@@L3L3L0L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2292
@@@@@@@@@CL0@@@@@@@@@3L0@@@@@@@@@3L@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 192 0 0 64 0 0 128 0 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@G A? O?E?>7''?8G? O>@?8G= ?7@@N@@^@@\@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2293
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2294
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2295
reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2296
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2297
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2298
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2299
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2300
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2302
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2303
     self reload16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2304
     ImageEditor openOnClass:self andSelector:#reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2305
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2306
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2307
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2308
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2309
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2310
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2311
	constantNamed:#'GenericToolbarIconLibrary class reload16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2312
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2313
@@@@@@@@@@@@@@ARH@L@@@@@T"P@@@@@@@@"P@@@@@@@ARP@@@@@@@@BI@@@@@@@AUH"I@@@@@@@T"I@@@@@@@@EI@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2314
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 0 192 0 0 64 0 0 128 0 0 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@>@O>A>\G0P>@#8@?9!!?OC9>GO<HOD@<HG 9>A?0A<@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2315
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2316
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2317
repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2318
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2319
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2320
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2321
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2322
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2323
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2324
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2325
     self repositoryCVSIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2326
     ImageEditor openOnClass:self andSelector:#repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2327
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2328
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2329
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2330
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2331
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2332
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2333
	constantNamed:'GenericToolbarIconLibrary class repositoryCVSIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2334
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2335
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2336
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-APTEAPTEAPTEAPTEAPT9KPTA@PDA@PDA@PDA@PDENR<E@PDDA@DDB@PHA PAAS$0AP A@0$H@0$CBPLI@PT9L@TI
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2337
@PLIBPXIA $AA DENRHEB DD@ (J@ (J@ PAAS$9AP(JB (JB (JB (JB T9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2338
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2339
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2340
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2341
repositoryCheckIn
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2342
    "This resource specification was automatically generated
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2343
     by the ImageEditor of ST/X."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2344
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2345
    "Do not manually edit this!! If it is corrupted,
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2346
     the ImageEditor may not be able to read the specification."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2347
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2348
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2349
     self repositoryCheckIn inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2350
     ImageEditor openOnClass:self andSelector:#repositoryCheckIn
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2351
     Icon flushCachedIcons
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2352
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2353
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2354
    <resource: #image>
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2355
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2356
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2357
	constantNamed:'GenericToolbarIconLibrary class repositoryCheckIn'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2358
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2359
@@@@@@@@@@@TCP<MB  T@@@@@@@@@@@RG2H)JBP^FQH@@@@@@@@@DB@!!JR $G!!$F@@@@@@@@@@$VGR\#FA\UB0@@@@@@@@@GF2X)JBP^FP,@@@@@@@@@BQ,&
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2360
JR $G!!$K@@@@K"8.K"8.K"8(IA8YB0@@@@@@J2</J2,.JBP^FP,@@@@@K"<,K2<+K" $G!!$L@@@@K"0,K2</J28(IA8YC@@@K"4-K28.K",.JBT^FP0@K",-
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2361
KB8@BQ,.K"LXE1TE@B8/KR8@@AL[I"8#FA\UA@@.K28@@@@@D1LSD1@NDP@@K",.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 128 0 48 152 0 63 184 0 111 248 40 175 152 48 176 96 40 176 104 40 176 128 56 191 128 40 191 128 56 191 136 48 192 120 48 192 128 48 192 144 48 192 144 56 192 152 48 192 152 56 192 160 56 192 168 56 207 160 56 207 176 80 224 120 8 224 152 16 224 160 16 239 192 40 240 176 24 240 192 64 240 200 56 240 200 64 240 208 48 240 208 56 255 200 40 255 200 48 255 208 64 255 216 80 255 224 80 255 224 88 255 224 96 255 232 104 255 240 96 255 240 136 255 248 160 241 241 241 50 155 0 109 255 36 133 255 72 40 124 0 60 186 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O8A?0G?@_<A?0G?G?<G?0??G?<??77?^_=0?''@@@@@b') ; yourself); yourself]
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2362
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2363
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2364
repositoryCheckOut
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2365
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2366
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2367
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2368
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2369
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2370
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2371
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2372
     self repositoryCheckOut inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2373
     ImageEditor openOnClass:self andSelector:#repositoryCheckOut
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2374
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2375
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2376
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2377
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2378
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2379
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2380
	constantNamed:'GenericToolbarIconLibrary class repositoryCheckOut'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2381
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2382
@@@@@@@@@@@TCP<MB  T@@@@@@@@@@@RG2H)JBP^FQH@@@@@@@@@DB@!!JR $G!!$F@@@@@@@@@@$VGR\#FA\UB0@@@@@@@@@GF2X)JBP^FP,@@@@@@@@@BQ,&
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2383
JR $G!!$K@@@@@@@@@@@@@@@(IA8YB0@@@@@@@@DB@ DB@BP^FP,@@@@@@@LC@0@@JR $G!!$L@@@@@@LC@0@\I"$(IA8YC@@@@PHC@ @IF"X)JBT^FP0@@@HC
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2384
@ @@BQX]I2LXE1TE@@@B@ H@@APVGR\#FA\UA@@@@PHB@@@@EALSD1@NDP@@@@DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 128 0 48 152 0 63 184 0 111 248 40 175 152 48 176 96 40 176 104 40 176 128 56 191 128 40 191 128 56 191 136 48 192 120 48 192 128 48 192 144 48 192 144 56 192 152 48 192 152 56 192 160 56 192 168 56 207 160 56 207 176 80 224 120 8 224 152 16 224 160 16 239 192 40 240 176 24 240 192 64 240 200 56 240 200 64 240 208 48 240 208 56 255 200 40 255 200 48 255 208 64 255 216 80 255 224 80 255 224 88 255 224 96 255 232 104 255 240 96 255 240 136 255 248 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O8A?0G?@_<A?0G?@?<G?4??W?=??77?__=<?''8@_0@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2385
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2386
4389
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2387
repositoryGitIcon
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2388
    "This resource specification was automatically generated
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2389
     by the ImageEditor of ST/X."
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2390
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2391
    "Do not manually edit this!! If it is corrupted,
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2392
     the ImageEditor may not be able to read the specification."
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2393
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2394
    "
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2395
     self repositoryGitIcon inspect
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2396
     ImageEditor openOnClass:self andSelector:#repositoryGitIcon
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2397
     Icon flushCachedIcons
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2398
    "
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2399
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2400
    <resource: #image>
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2401
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2402
    ^Icon
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2403
        constantNamed:'GenericToolbarIconLibrary class repositoryGitIcon'
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2404
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2405
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2406
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDDA@DAA@DDA@PAFS$0FP$CBPDA@PPABPPA@Q$9L@@I
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2407
A $F@0DF@P$F@PD@NRH8@P(D@ (AA (A@ (ANC$9A0(AB (JB (JB (AB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2408
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2409
!
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  2410
4349
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2411
repositoryHGIcon
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2412
    "This resource specification was automatically generated
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2413
     by the ImageEditor of ST/X."
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2414
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2415
    "Do not manually edit this!! If it is corrupted,
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2416
     the ImageEditor may not be able to read the specification."
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2417
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2418
    "
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2419
     self repositoryHGIcon inspect
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2420
     ImageEditor openOnClass:self andSelector:#repositoryHGIcon
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2421
     Icon flushCachedIcons
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2422
    "
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2423
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2424
    <resource: #image>
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2425
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2426
    ^Icon
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2427
        constantNamed:'GenericToolbarIconLibrary class repositoryHGIcon'
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2428
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2429
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2430
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDD@PDD@PDDA@DAFS$0FP AA@(JA@$CBPDA@Q$9L@@I
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2431
@PXDA@XIA $F@0D@NRH8B DBB (F@P(D@ (ANC$9A0(AB (JB (JB (AB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2432
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2433
!
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  2434
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2435
repositoryIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2436
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2437
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2438
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2439
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2440
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2441
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2442
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2443
     self repositoryIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2444
     ImageEditor openOnClass:self andSelector:#repositoryIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2445
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2446
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2447
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2448
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2449
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2450
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2451
        constantNamed:'GenericToolbarIconLibrary class repositoryIcon'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2452
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2453
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2454
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-APTEAPTEAPTEAPTEAPT9KPTA@PDA@PDA@PDA@PDENR<E@PDA@PDA@PDA@PDAAS$0AP A@PDA@PDA@PDA@PT9L@TI
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2455
@PHB@PHB@PHB@PDENRHEB DD@ (B@ (B@ DAAS$9AP(JB (JB (JB (JB T9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2456
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2457
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2458
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2459
repositoryLog
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2460
    "This resource specification was automatically generated
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2461
     by the ImageEditor of ST/X."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2462
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2463
    "Do not manually edit this!! If it is corrupted,
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2464
     the ImageEditor may not be able to read the specification."
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2465
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2466
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2467
     self repositoryLog inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2468
     ImageEditor openOnClass:self andSelector:#repositoryLog
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2469
     Icon flushCachedIcons
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2470
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2471
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2472
    <resource: #image>
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2473
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2474
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2475
	constantNamed:'GenericToolbarIconLibrary class repositoryLog'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2476
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2477
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@4E@@@@@@@@@@@@@@@@@@DLF @@@@@@@@@@@@@@@A0A@P0E@@@@@@@@@@@@@@@WAP4AB0@C
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2478
@0LC@0\@@@@@E@@ECP@@@1PTFA I@@@@@@@RGA\@@@LXFA XBP@@@@@DC!!TXAA,CEAPTE@$@@@@YA XDA@P[@1 XFA I@@@@B@PDB (JD@LTEAPTBP@@@@ J
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2479
B@ [E!!LCFA XF@$@@@@WC0<OD1LQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[146 146 146 255 218 144 241 241 241 255 255 255 126 186 0 255 157 108 133 255 72 192 192 192 84 124 0 160 160 164 105 155 0 186 126 0 255 255 180 255 206 108 109 255 36 20 62 0 42 62 0 6 6 6 133 133 133 18 18 18 95 95 95 248 248 248 62 62 0 108 108 108 222 222 222 69 69 69 255 255 144 63 93 0 128 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@8@G @_@A=>G''8N_#?>O?8??#?>O8@@@@@@@@@b') ; yourself); yourself]
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2480
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  2481
4340
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2482
repositoryMCIcon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2483
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2484
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2485
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2486
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2487
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2488
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2489
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2490
     self repositoryMCIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2491
     ImageEditor openOnClass:self andSelector:#repositoryMCIcon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2492
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2493
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2494
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2495
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2496
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2497
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2498
        constantNamed:'GenericToolbarIconLibrary class repositoryMCIcon'
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2499
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2500
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2501
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDD@PDDB@DDA@ AFS$0FP HA@LDA@ D@P$H@Q$9L@@I
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2502
BPPA@PPHA DAB@D@NRH8B (D@P(DB DDA@ ANC$9A0(JB (JB (JB (JB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2503
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2504
!
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2505
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2506
repositoryP4Icon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2507
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2508
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2509
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2510
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2511
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2512
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2513
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2514
     self repositoryP4Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2515
     ImageEditor openOnClass:self andSelector:#repositoryP4Icon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2516
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2517
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2518
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2519
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2520
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2521
    ^Icon
4425
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  2522
        constantNamed:'GenericToolbarIconLibrary repositoryP4Icon'
4340
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2523
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2524
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
4425
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  2525
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDAA@PAB@PAB@ AFS$0FP HB@LIA@ DA@$H@Q$9L@@I
4340
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2526
BP$DA@$HA XFB@D@NRH8B (J@ (JB (FB  ANC$9A0(JB (JB (JB (JB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2527
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2528
!
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  2529
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2530
repositoryPerforceIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2531
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2532
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2533
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2534
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2535
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2536
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2537
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2538
     self repositoryPerforceIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2539
     ImageEditor openOnClass:self andSelector:#repositoryPerforceIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2540
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2541
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2542
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2543
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2544
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2545
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2546
        constantNamed:'GenericToolbarIconLibrary class repositoryPerforceIcon'
4425
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  2547
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  2548
@@@@@@@@@@@@@@@@@@@@@@@@@PHCA@T@@@@@A \H@@@@BP(KC@4NC0@@DADRD0@@@APUE!!\XFQ([GA4^G2@@@@@!!H"L$@BT&I2 )J",,@@@@KR8/LCD2L3P5
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  2549
M#\8NP@@@C(;OC4>O4AAP$MDQP@@@@AFQ4!!IR$-LST8@S5@@@@@@TRIRT5QUU%\@VE%Z@@@@@E-\WU9_XFE"@FM$YP@@@@@@@FY''J&!!)Z&-,[V9/@@@@@@@@
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  2550
\GE2\7Q5]'']8^P@@@@@@@@@@@@@@@G);@@@@@@@@@@@@@@@@@@A<_P@@@@@@@@@@@@@@@@@@_''<@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 166 144 53 162 134 43 161 134 43 163 134 42 149 116 32 144 140 67 165 134 41 84 61 13 155 131 46 247 203 70 238 189 60 232 178 48 227 174 50 235 185 58 187 145 44 147 149 89 241 206 86 235 183 54 107 78 15 148 120 36 239 191 62 209 157 41 75 52 8 56 39 5 188 142 37 232 182 57 113 86 23 87 91 60 236 207 95 226 178 57 222 171 50 69 50 8 148 117 34 239 192 62 195 146 38 11 6 0 176 156 56 237 186 59 152 122 44 166 147 71 211 158 37 212 165 50 211 161 45 37 26 3 148 120 38 239 192 63 214 167 51 169 132 38 179 159 56 232 201 82 227 176 50 146 118 41 163 121 29 94 67 11 206 174 54 192 144 39 13 9 0 148 121 41 239 191 65 229 181 58 226 176 54 221 171 51 213 164 48 179 141 44 120 91 25 94 68 13 14 14 3 236 199 63 162 122 34 149 118 29 238 191 62 209 158 41 70 52 14 45 35 9 116 105 55 128 100 29 101 74 14 2 1 0 245 202 63 129 99 31 150 117 28 200 150 39 16 9 0 120 120 76 208 170 64 154 111 22 12 7 0 127 112 33 238 192 58 98 76 22 124 95 24 207 164 53 194 147 38 78 74 37 211 184 80 211 158 42 93 68 14 72 57 12 181 171 75 228 179 55 100 78 21 31 23 6 141 121 44 230 181 57 242 192 57 244 192 56 241 192 57 234 191 67 227 179 59 241 189 56 215 166 47 89 65 13 104 76 15 106 78 17 103 79 23 104 80 24 106 79 20 221 176 55 211 163 48 110 85 22 105 78 19 239 199 62 163 122 32 235 188 57 138 100 22 85 64 18 50 38 9]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@>GG<<_?1;?G?<_?!!?6G>8_; _?@?<@C@@L@@0@@@b') ; yourself); yourself]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2551
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  2552
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2553
repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2554
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2555
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2556
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2557
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2558
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2559
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2560
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2561
     self repositorySVNIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2562
     ImageEditor openOnClass:self andSelector:#repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2563
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2564
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2565
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2566
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2567
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2568
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2569
	constantNamed:'GenericToolbarIconLibrary class repositorySVNIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2570
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2571
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2572
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PPD@PPHA@ D@PPAFS$0FP CBP CBPLI@0LD@Q$9L@@I
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2573
BPXIA $FBPXCA D@NRH8B HBB (BB (BB PANC$9A0(JB (JB (JB (JB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2574
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2575
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  2576
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2577
repositoryTag
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2578
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2579
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2580
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2581
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2582
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2583
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2584
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2585
     self repositoryTag inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2586
     ImageEditor openOnClass:self andSelector:#repositoryTag
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2587
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2588
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2589
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2590
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2591
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2592
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2593
	constantNamed:'GenericToolbarIconLibrary class repositoryTag'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2594
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2595
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH"H"H"@@@JL3L3L3N@@BL3L3L3L8@KJVL3L3L3 K/NT3L3L3N@@BL3L0LC@8@@43L3L3L3 @@ML3L3L3N@@@
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2596
@DQDQDQA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[35 35 35 98 98 98 128 128 66 252 252 128 68 68 68 129 65 65 128 64 2 241 241 241 67 67 67 128 64 64 190 190 66 2 2 2 66 66 66 65 65 3 97 65 3]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A?8O?1??O?=??1??G?<O?0_?@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2597
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2598
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2599
repositoryVersions
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2600
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2601
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2602
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2603
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2604
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2605
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2606
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2607
     self repositoryVersions inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2608
     ImageEditor openOnClass:self andSelector:#repositoryVersions
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2609
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2610
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2611
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2612
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2613
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2614
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2615
	constantNamed:'GenericToolbarIconLibrary class repositoryVersions'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2616
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3962
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  2617
@@@@@@@@@@@@@@@@@@@@@@@@@@@#FA(XH0@@@@@@@@@@@@@JABDNA@PJ@@@@@@@@@@@#ABD[HPPDG"L@@@@@@@@@FBDQC1XOB!!8X@@@@@@@@@A(\B08NABD^
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  2618
F @@@@@@@@@ZD T$E \[G!! @@@@@@@@ICQLSD2D[A@XV@@@@@@@I@0HJD1LAG X]ER@@@@@@@0$@@1XXF!! VE@0"EP@@@@@@@@LC@@@@@A<U@BHU@@@@@@@C
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  2619
@0@@@@@@CQT@E1T@@@@@@0L@@@@@@@@MEP@WH@@@@@LC@@@@@@@@@@4UDB@@@@@C@0@@@@@@@@@@@AT_@@@@@0L@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[186 126 0 74 140 199 95 159 191 63 95 159 180 230 255 79 124 169 146 146 146 160 160 164 241 241 241 63 127 191 120 120 120 89 144 198 217 147 0 82 82 82 235 235 235 192 192 192 155 105 0 222 222 222 74 134 193 79 141 199 62 42 0 124 84 0 95 95 95 255 206 108 57 57 57 159 191 191 0 0 0 255 255 255 90 145 199 31 31 31 144 218 255 69 69 69 93 63 0 248 248 248 255 218 144 108 108 108 162 186 210]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O A?@O>@?8C? O>A?8O?07? X_A >FA<XC1 CF@@b') ; yourself); yourself]
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2620
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  2621
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2622
rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2623
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2624
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2625
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2626
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2627
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2628
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2629
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2630
     self rightAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2631
     ImageEditor openOnClass:self andSelector:#rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2632
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2633
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2634
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2635
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2636
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2637
	constantNamed:#'GenericToolbarIconLibrary class rightAdjust16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2638
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@@DEUUUUAUP@@PUUUUTD@@@AAUUUUPUT@@DEUUUUA@@@@PUUUUTEU@@AAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2639
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2640
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2641
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2642
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2643
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2644
run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2645
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2646
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2647
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2648
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2649
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2651
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2652
     self run16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2653
     ImageEditor openOnClass:self andSelector:#run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2654
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2655
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2656
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2657
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2658
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2659
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2660
	constantNamed:#'GenericToolbarIconLibrary class run16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2661
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2662
@@@@@@@@@@@@@@@AT@@@@@@!!@@EP@AT@@CPRMDT!!P0@@ATQDQDP0@@@CQEMTQD@@@@IEL@EDH@@AEDL@@AQAD@L4QP@@EDL0@@MDD@EDT@@@ADQAEDQ@@@@A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2663
QDQDQC@@@AP4IDMAP0@@T0@AL@@#@@@@@@D0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 220 220 220 128 128 128 195 195 195 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A CFLO?0_>A?8G''!!<O''0>G'' _>A?8O?01#@F@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2664
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2665
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2666
search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2667
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2668
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2669
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2670
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2671
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2672
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2673
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2674
     self search16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2675
     ImageEditor openOnClass:self andSelector:#search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2676
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2677
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2678
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2679
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2680
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2681
	constantNamed:#'GenericToolbarIconLibrary class search16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2682
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@ @ @@@@@@@@@@@@B@B@@@@@@@@PDD@@DBA@@B@@ @@@@@@@P@@D@H@@B@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 212 208 200 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2683
@@@\\A10GG@>>C;8_?3??/?>??;>?/ >>C;8O @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2684
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2685
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2686
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2687
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2688
searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2689
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2690
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2691
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2692
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2693
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2694
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2695
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2696
     self searchNext16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2697
     ImageEditor openOnClass:self andSelector:#searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2698
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2699
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2700
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2701
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2702
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2703
	constantNamed:#'GenericToolbarIconLibrary class searchNext16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2704
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2705
@@@DUUT@@@@@@DT@AE@E@@@@T@@@AUT@@@AP@@@EUP@@@DT@@EUU@@@@AE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@C@@@C@@@@@@D@A@D@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2706
@@@@@@@@@C@@@@L@@@@@D@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2707
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2708
A<@LY@ \BA0LO@X@FL@X0C7 _?A?<G?0^OA8<G#0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2709
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2710
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2711
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2712
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2713
searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2714
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2715
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2716
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2717
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2718
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2719
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2720
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2721
     self searchPrev16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2722
     ImageEditor openOnClass:self andSelector:#searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2723
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2724
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2725
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2726
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2727
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2728
	constantNamed:#'GenericToolbarIconLibrary class searchPrev16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2729
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2730
@@@@UUU@@@@@T@U@@EP@@@AUT@@@AP@@@EUP@@@E@@@@UUT@@EP@@@@@@@@EP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@@@0@@@0@@@@@AA@@A@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2731
@@@@@@@@@@@@L@@@@0@@@@@P@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2732
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2733
@>@&LC PNA@<L@A @1 CF@^<C?8O? ?>C18OG <^@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2734
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2735
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2736
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2737
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2738
settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2739
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2740
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2741
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2742
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2743
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2744
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2745
    "
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2746
     self settings16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2747
     ImageEditor openOnClass:self andSelector:#settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2748
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2749
    "
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2750
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2751
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2752
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2753
    ^Icon
4390
19ea4b2feb20 changed: #settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  2754
        constantNamed:'GenericToolbarIconLibrary class settings16x16Icon'
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2755
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4390
19ea4b2feb20 changed: #settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  2756
@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0@@@@@@@@XC"@@@@@@H00^B0@@@@@XC"PN@@@@@@@#E1<G@@@@C"PNF@@RG @@@@ [A0@@H@8OF@@@AQD @A<UH!!T@
19ea4b2feb20 changed: #settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  2757
H@8[@@@@@@\YFA WHR@GH@8[@@@@@@@@A14YHR@ H@8[@@@@@@@@@@@GEQTRH@8 A @@@@@@@@@@@@@A@P8 G1 L@@@@@@@@@AXAE $AD1 \D1P@@@@@@AXA
19ea4b2feb20 changed: #settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  2758
E $B@P@QD10PA@@@@AXAE (B@QX@@A$SF!!LC@@@AE 4B@QX@@@@@D1PCDP@@@P4B@QX@@@@@@@@CDP@@@@4A@QX@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 47 80 128 95 136 184 111 104 96 111 104 104 112 112 104 112 112 120 127 120 120 127 128 120 127 160 200 127 168 208 128 128 120 128 128 128 128 168 208 143 136 128 143 136 136 159 144 144 159 152 144 159 152 160 160 160 160 160 160 168 175 168 168 175 200 240 176 168 168 176 176 176 191 184 184 192 184 184 192 192 184 192 192 200 207 200 200 208 200 208 208 208 208 223 216 216 224 224 216 224 224 224 239 232 224 240 240 240]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@NA0<OA8=#''''^8_?@?8A? A?@_>C=<_39>G''0L^@@b') ; yourself); yourself]
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2759
!
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2760
4461
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2761
showCodeCoverage16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2762
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2763
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2764
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2765
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2766
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2767
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2768
    "
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2769
     self showCoverageCode16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2770
     ImageEditor openOnClass:self andSelector:#showCoverageCode16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2771
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2772
    "
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2773
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2774
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2775
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2776
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2777
        constantNamed:'GenericToolbarIconLibrary showCodeCoverage16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2778
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@AUUUUPZ**UTEUUUUAZ*)UPUUUUTE**)UAUUUUPUU?=TEUUUUAUW?5PUUUUTE***UAUUUUPUUUUT@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 140 247 115 255 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2779
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2780
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2781
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2782
!
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  2783
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2784
snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2785
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2786
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2787
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2788
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2789
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2790
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2791
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2792
     self snapshot16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2793
     ImageEditor openOnClass:self andSelector:#snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2794
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2796
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2797
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2798
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2799
	constantNamed:#'GenericToolbarIconLibrary class snapshot16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2800
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2801
@@@@@@@@@@@@@@@@@@@@@@@@@G\0@@@@@0M0\3A7L0@CL3@3LCL3@@@@@@@@@@@@@@@@&Y@@@@@@L@&X&P@@@@@0BX&Y@@@@@CLI"Y$@@@@@@@&Y&P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2802
@I&P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2803
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 255 255 255 128 128 0 255 255 0 128 128 128 0 255 255 0 0 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2804
@@@C G?<??;??/?>??;??/?>??;??/?>??9??@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2805
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2806
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2807
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2808
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2809
sortByLineNumber16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2810
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2811
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2812
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2813
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2814
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2815
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2816
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2817
     self sortByLineNumber16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2818
     ImageEditor openOnClass:self andSelector:#sortByLineNumber16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2819
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2820
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2821
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2822
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2823
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2824
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2825
        constantNamed:'XPToolbarIconLibrary class sortByLineNumber16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2826
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2827
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0<C@@@@@@@@@@@@@@@@@@LP@0@@@@@@@@LE@@LE@@@CA@L@@@@@@@@CAP@CAP@@@0TC@@@@@@@C
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2828
APLCAPL@@@LE@0@CAPTEAPTEAPTEAP@CAPL@@@LC@0T@@0TC@0L@@0TC@@@@@@LE@@LE@@@@@@LE@0@CAPTEAPTEAPTEAP@CAPL@@@LCAPLCAPLC@0L@@0TC
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2829
@@@CAP@CAP@@@@@@APDE@PT@@0T@@0T@@@@@@ADEAPTQ@@@@@@@@@@@@@@@@DPTQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[159 191 191 63 63 95 63 63 159 191 191 191 0 1 0 0 0 0 191 159 159 127 63 127 255 255 255 159 63 127 63 127 191 223 191 191 159 95 127 63 95 191 127 159 159 1 1 3 3 0 2 159 159 159]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G@@\CY0M''A>]?=377CX]?=3?7M >6C8@G@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2830
!
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2831
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2832
sortByName16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2833
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2834
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2835
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2836
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2837
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2838
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2839
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2840
     self sortByName16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2841
     ImageEditor openOnClass:self andSelector:#sortByName16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2842
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2843
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2844
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2845
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2846
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2847
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2848
        constantNamed:'XPToolbarIconLibrary class sortByName16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2849
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2850
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8MCP8@@@@@@@@@@0<C@@@MC @MC @@@@@@@@LP@0@@@@@@CP(@@@@@@@@CA@L@@AHMB 4J@@@@@@@@@0TC@@8MC @M
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2851
B @@@@@@@@LE@0@NCP@@CP(@@@@@@@@CAPL@@@(MCP8BB @@@@@@@0TC@@@@@@@@@@@@@@@@@@LE@0@@@@@@@@\GA0\GA0@CAPL@@@@@@@@IA @KA00@@0TC
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2852
@@@@@@@@A @KA00@APDE@PT@@@@@@@@KA00@@ADEAPTQ@@@@@@@KA00@@@X@DPTQ@@@@@@@@C@\@@@XI@@@@@@@@@@@@@@\GA0\GA0@a') ; colorMapFromArray:#[159 191 191 63 63 95 63 63 159 191 191 191 0 1 0 0 0 0 191 159 159 127 63 127 255 255 255 159 63 127 63 127 191 223 191 191 159 95 127 63 95 191 127 159 159 1 1 3 3 0 2 159 159 159 63 159 191]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@C8GM \FA78G] ].A7<G@@\C=0M7@.>A38NW@3@C<b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2853
!
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  2854
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2855
start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2856
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2857
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2858
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2859
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2860
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2861
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2862
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2863
     self start16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2864
     ImageEditor openOnClass:self andSelector:#start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2865
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2866
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2867
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2868
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2870
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2871
	constantNamed:#'GenericToolbarIconLibrary class start16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2872
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2873
@@@@@@@@@@@@@@@@Q@@@@DP@@@Q$@@@@Q@@@QSP@@@AD@@QSI@@@@DP@QSH$QDQ@Q@QSH"M&X4ADQSH"H"H!!PDQ#H"H"H"E@QD@RH"H"HTADA@D"HQDQPDP@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2874
PAH$QDQ@Q@@D@RP@@@AD@@A@E@@@@DP@@@PD@@@@@@@@@DP@@@@b') ; colorMapFromArray:#[0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@0LG@0<CG0L?>7?;??/?>??;_?,?>1<CC0LG@@L@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2875
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2876
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2877
stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2878
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2879
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2880
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2881
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2882
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2883
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2884
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2885
     self stop16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2886
     ImageEditor openOnClass:self andSelector:#stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2887
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2888
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2889
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2890
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2892
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2893
	constantNamed:#'GenericToolbarIconLibrary class stop16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2894
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2895
@@@"H"H"@@@@@$QDQDP @@@$P3L3L1H@@$P3L3L3LR@$P0@3L0@3D"P3@@L0@CLRICL0@@@CL1H$L3L@@CL3D"P3L0@@L3LRICL0@@@CL1H$L0@CL@@3D"P3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2896
@CL3@CLR@!!L3L3L3LR@@HSL3L3LR@@@BDQDQDR@@@@@"H"H"@@@b') ; colorMapFromArray:#[255 255 255 128 0 0 0 0 0 192 0 0 255 192 192]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@_>C?<_?;?????????????????????_?8??A?8C?@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2897
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2898
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2899
terminal16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2900
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2901
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2902
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2903
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2904
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2905
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2906
    "
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2907
     self terminal16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2908
     ImageEditor openOnClass:self andSelector:#terminal16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2909
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2910
    "
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2911
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2912
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2913
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2914
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2915
        constantNamed:'AbstractFileBrowser class terminal16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2916
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2917
A@PDA@PDA@PDA@PDA@PDA@PJB (JB (JB (JB (JB PJGQ4\F1,[F!!$YFA WE!!XJB!!4B@ HB@ HB@ HB@ HVB ([@  HB@ HB@ HB@ BE@(JF0HGA0\GA0\G
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2918
A0\G@!!PJB!!(AA!!4FA XFA XFA DQB (Y@PXFGPXFA XFA XADP(JF@@EAQ4EAPTEAPTE@A@JB!! @AA4DAA4]GPPDA@@OB (V@@LC@0LC@0LC@0L@CP(JE @@
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2919
@@@@@@@@@@@@@@0JB!!TTEALQDQDPC0<MCP0KB (TEAHQDQ@PC08MB $KB0(DB (JB (JB (JB (JB (DA@PDA@PDA@PDA@PDA@PDA@@a') ; colorMapFromArray:#[95 96 104 95 96 120 95 104 120 95 120 168 95 128 168 95 128 176 96 136 184 96 144 200 111 144 200 127 120 120 143 136 136 176 176 176 191 184 176 191 184 184 192 184 184 192 192 184 192 192 200 207 200 200 207 200 208 208 200 208 208 208 208 223 208 208 223 216 216 224 224 216 224 224 224 239 232 224 239 232 240 240 240 240 255 240 248 255 248 248]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A??/???????????????????????????????7?>@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2920
!
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  2921
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2922
top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2923
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2924
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2925
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2926
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2927
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2928
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2929
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2930
     self top16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2931
     ImageEditor openOnClass:self andSelector:#top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2932
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2933
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2934
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2935
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2936
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2937
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2938
	constantNamed:#'GenericToolbarIconLibrary class top16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  2939
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2940
AUUUUUUUUP@EUUUUUUUU@@@@@EAP@@@@@@@EYCT@@@@@@EYBD5@@@@@EYBH!!MP@@@EYBH"HST@@EYBH"H"D5@EABH"H"H!!MPUUUTH"EUUU@@@E@"HU@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2941
TBH!!T@@@@@APH"EP@@@@@EPQDU@@@@@@UUUUT@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?1??@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2942
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2943
4362
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2944
tracepointBlue16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2945
    "This resource specification was automatically generated
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2946
     by the ImageEditor of ST/X."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2947
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2948
    "Do not manually edit this!! If it is corrupted,
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2949
     the ImageEditor may not be able to read the specification."
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2950
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2951
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2952
     self tracepointBlue16x16 inspect
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2953
     ImageEditor openOnClass:self andSelector:#tracepointBlue16x16
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2954
     Icon flushCachedIcons
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2955
    "
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2956
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2957
    <resource: #image>
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2958
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2959
    ^Icon
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2960
        constantNamed:'GenericToolbarIconLibrary class tracepointBlue16x16'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2961
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2962
D1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1L@@ALSD1LSD1LSD1LS@@@@@@@@D1LSD1LSD0@S@@(C@ LJ@ALSD1LSD1L@@@<ABP,I
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2963
@P<@D1LSD1LS@@@CBADQDP C@ALSD1LSD1L@@ PMCAHD@ @SD1LSD1LS@@LEC 8NAPL@D1LSD1LS@@@O@PXPA0DO@ALSD1LSD1LS@@(C@ LJ@@@SD1LSD1LS
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2964
D0@@@@@@@ALSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LS@@@@@@@@@@@@@@@@@@@@@@@@
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2965
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[254 252 255 46 104 127 38 96 114 54 118 139 108 187 203 107 179 195 131 193 205 130 192 204 130 188 200 152 198 208 169 215 225 180 220 229 83 174 190 90 178 194 115 189 204 144 205 216 145 204 215 152 208 219 89 178 192 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@C8@_0A?@G<@_0A?@C8@@@@@@@@@@@@@@b') ; yourself); yourself]
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2966
!
7290f2d22c33 added: #tracepointBlue16x16
Claus Gittinger <cg@exept.de>
parents: 4350
diff changeset
  2967
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2968
undent16x16Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  2969
    <resource:#programImage>
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2970
    ^ self undent16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2971
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2972
    "Modified: / 06-04-2011 / 18:38:05 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2973
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2974
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2975
undent16x16Icon1
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2976
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2977
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2978
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2979
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2980
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2981
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2982
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2983
     self undent16x16Icon inspect
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2984
     ImageEditor openOnClass:self andSelector:#undent16x16Icon
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2985
     Icon flushCachedIcons
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2986
    "
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2987
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2988
    <resource: #image>
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2989
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2990
    ^Icon
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2991
        constantNamed:'GenericToolbarIconLibrary class undent16x16Icon1'
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2992
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2993
@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0L@@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HC@0LC@@@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2994
@@@@@@@@@0HB@0LC@0@@@@@@@@@@@@HB@ HB@0LC@0LC@0LC@0LC@ HC@0LC@@@@@@@@@@@@@0LB@0LC@0@@@@@@@@@@@@LC@0LC@0LC@0LC@0LC@0LC@0@@
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  2995
@@@@@@@@@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@@@@@@@@@@@C@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0@a') ; colorMapFromArray:#[0 0 0 220 226 243 0 0 128 0 0 0]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?8@@@O>@@@BG?X_?8@FG?H_<@@C?@@@@?0@@@@@@b') ; yourself); yourself]
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2996
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2997
    "Created: / 06-04-2011 / 18:37:57 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2998
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  2999
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3000
undent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3001
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3002
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3003
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3004
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3005
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3006
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3007
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3008
     self undent16x16Icon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3009
     ImageEditor openOnClass:self andSelector:#undent16x16Icon2
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3010
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3011
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3012
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3013
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3014
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3015
    ^Icon
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3016
        constantNamed:'GenericToolbarIconLibrary undent16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3017
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3018
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H@@"H"H@@@@@@BD"H"H"H"@@DRH"@@@@@@DQDQH"H"H @AD"H @@@@@@HRH"H"H"H@@"
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  3019
H"H@@@@@@BH"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 34 110 181 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O?8??#?>O?8??''?>O?8??#?>O?8?? @@@@@b') ; yourself); yourself]
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3020
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3021
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3022
undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3023
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3024
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3025
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3026
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3027
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3028
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3029
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3030
     self undo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3031
     ImageEditor openOnClass:self andSelector:#undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3032
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3033
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3034
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3036
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3037
	constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3038
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3039
@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3040
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3041
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3042
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3043
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3044
undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3045
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3046
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3047
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3048
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3049
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3050
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3051
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3052
     self undo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3053
     ImageEditor openOnClass:self andSelector:#undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3054
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3055
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3056
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3057
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3058
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3059
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3060
	constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3061
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3062
@@@@@@@@@@@@@@@CL3@@@@@@@3@@@3@@L@@0@@H"H0@2@0@BH3D"LC@0@BL0@3D0L@@BL@@@@1L0@@L@@@@CL3@@@0@@@@L3L"H"H@@@@3L3L3L3@@@CL@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3063
@@@@@CL0@@@@@@@CL0@@@@@@@3L0@@@@@@@3L@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 192 0 0 64 0 0 128 0 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A8@_8#?3_?/>^? _<A?0G? _?A @N@A0@^@C @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3064
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3065
3506
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  3066
up16x16Icon
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  3067
    <resource: #programImage>
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  3068
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  3069
    ^ self up16x16Icon2
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  3070
!
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  3071
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3072
up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3073
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3074
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3075
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3076
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3077
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3078
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3079
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3080
     self up16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3081
     ImageEditor openOnClass:self andSelector:#up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3082
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3083
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3084
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3085
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3086
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3087
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3088
	constantNamed:#'GenericToolbarIconLibrary class up16x16Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3089
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3090
@@@@@@@@@@@@@@@F@@@@@@@@@FE @@@@@@@FATX@@@@@@FASIF@@@@@FASL2Q @@@FASL3L$X@@FASL3L3IF@FESL3L3L2Q Y&Y%L3I&Y&@@@FD3L&@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3091
XSL2X@@@@@A!!L3I @@@@@FT"H&@@@@@@Y&Y&X@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b') ; yourself); yourself]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3092
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3093
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3094
upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3095
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3096
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3097
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3098
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3099
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3100
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3101
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3102
     self upRight16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3103
     ImageEditor openOnClass:self andSelector:#upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3104
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3105
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3106
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3107
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3108
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3109
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3110
	constantNamed:#'GenericToolbarIconLibrary class upRight16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3111
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3112
@@@@@@@@@@@@@@@@T@@@@@@@@@AU@@@@@@@@@EAP@@@EUUUUT T@@@T@@BL3HE@@APL3L3L2AP@E@3L3L3MAT@TCL3L3MAT@APMDQCMAT@@E@4UUUAT@@@TC
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3113
QPAQT@@@APME@ET@@@@E@4T@T@@@@@UUUP@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@ @C@@NA?<G?8_?1??''?<_?!!?<G3 _LA< G0@@@@b') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3114
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3115
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3116
viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3117
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3118
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3119
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3120
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3121
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3122
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3123
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3124
     self viewDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3125
     ImageEditor openOnClass:self andSelector:#viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3126
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3127
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3128
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3129
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3130
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3131
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3132
	constantNamed:#'GenericToolbarIconLibrary class viewDetails16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3133
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@]+X@@@@@]+X@@@@@]+X@@@@@]+X@@@@@@@@b') ; yourself); yourself]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3134
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3135
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3136
viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3137
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3138
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3139
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3140
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3141
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3142
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3143
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3144
     self viewNoDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3145
     ImageEditor openOnClass:self andSelector:#viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3146
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3147
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3148
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3149
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3150
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3151
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3152
	constantNamed:#'GenericToolbarIconLibrary class viewNoDetails16x16Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3153
	ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@@@@b') ; yourself); yourself]
4200
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3154
!
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3155
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3156
viewTimeDetails16x16Icon
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3157
    "This resource specification was automatically generated
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3158
     by the ImageEditor of ST/X."
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3159
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3160
    "Do not manually edit this!! If it is corrupted,
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3161
     the ImageEditor may not be able to read the specification."
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3162
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3163
    "
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3164
     self viewTimeDetails16x16Icon inspect
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3165
     ImageEditor openOnClass:self andSelector:#viewTimeDetails16x16Icon
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3166
     Icon flushCachedIcons
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3167
    "
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3168
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3169
    <resource: #image>
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3170
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3171
    ^Icon
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3172
        constantNamed:'GenericToolbarIconLibrary class viewTimeDetails16x16Icon'
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  3173
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@]0A7@O^@<HC? G<@_0@\@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@\@G<@?8C? _?A?<G?0O>@?8A?@A0@@@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3174
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3175
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3176
!GenericToolbarIconLibrary class methodsFor:'image specs-20x20'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3177
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3178
bookmarks20x20
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3179
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3180
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3181
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3182
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3183
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3184
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3185
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3186
     self bookmarks20x20 inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3187
     ImageEditor openOnClass:self andSelector:#bookmarks20x20
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3188
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3189
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3190
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3191
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3192
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3193
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3194
        constantNamed:'GenericToolbarIconLibrary class bookmarks20x20'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3195
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3196
??????????????????????????????????????<1S/???????????????????????6BAD/????????????????????<]#I8*?????????????????????3^_
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3197
''U''?????????????????????YI2[_!!C??????????????????16F&)&WLO????????<&Q$YFQ$YETI"V%YI*U$D?OS4=K4YT#9RT$9FP#(6K"(VB_718]U0%
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3198
?4X:^X&H!!8RC G57]GE/ZVU@A_????<*Y''-:]''M2\F5(X%=UK G???????<QSF9,Z6]#WU!!SQBW???????????<VU6E^V%EMRTL"?????????????2%[T$=J
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3199
Q389NB#?????????????M$-HP#,3KB\ZE07??????????145OCP-IA0UC ,JG_??????????GSH+G!!,@?1HOA LSQO???????14!!H1$G?????1@T@ $H????
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3200
????GQ< AO????????<]C@ ]??????<]G_??????????????GQ7??0@a') ; colorMapFromArray:#[143 162 38 146 165 38 153 167 24 155 168 21 149 168 39 149 169 39 156 169 21 151 170 40 151 171 40 156 171 30 159 173 22 160 174 20 156 174 34 154 175 41 162 176 20 159 176 32 156 176 41 156 177 41 157 177 41 159 178 37 159 178 38 163 179 26 158 179 42 163 180 27 159 180 42 162 180 35 166 181 20 160 181 40 161 181 39 160 181 42 165 181 28 162 181 37 161 181 40 162 181 38 161 181 41 168 181 23 162 182 36 161 182 41 161 182 43 168 183 20 163 183 35 162 183 41 162 183 42 170 184 22 169 185 20 169 185 23 164 185 38 164 185 40 164 185 42 164 185 43 171 186 24 171 187 21 172 187 22 170 187 29 168 187 35 165 187 44 171 188 19 173 190 19 168 189 44 174 190 21 174 190 22 170 192 37 176 192 20 170 192 38 171 193 33 171 193 38 177 193 21 176 194 19 174 194 26 172 193 47 172 193 48 178 195 20 179 195 21 179 197 19 180 197 20 180 197 21 176 197 38 181 199 19 177 199 46 183 201 20 179 200 50 184 202 19 185 202 21 184 203 18 180 201 50 183 204 21 181 203 37 184 204 27 185 205 18 181 204 45 187 205 19 187 205 21 183 206 27 187 208 18 189 208 20 189 210 17 186 208 51 191 210 20 190 211 17 190 211 19 187 209 53 191 213 17 190 211 43 193 213 19 193 214 17 194 216 16 192 215 38 195 216 20 196 217 25 196 218 18 196 217 28 196 219 17 198 220 18 199 221 17 200 222 23 201 222 28 201 224 17 200 225 16 203 223 33 203 225 20 202 226 16 202 223 51 204 224 38 204 224 41 203 227 16 204 226 26 203 226 47 204 229 16 206 227 34 203 227 53 206 230 21 207 228 39 208 228 43 207 231 26 207 228 60 209 229 48 209 229 51 210 229 52 209 232 33 210 232 39 209 231 58 211 233 46 212 234 52 213 233 63 213 234 56 214 235 59 214 237 41 215 235 62 215 235 64 215 238 49 217 238 55 217 240 46 218 239 61 219 242 53 220 242 59 222 245 56 223 245 62 224 248 57 224 248 58 224 248 64 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@F@@@G@@@O@@@O@@@O @@_ @???0???0_?? G??@C?<@A?8@A?8@A?<@C?<@C=>@G0>@G O@F@C@') ; yourself); yourself]
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3201
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  3202
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3203
browseIt20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3204
    "This resource specification was automatically generated
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3205
     by the ImageEditor of ST/X."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3206
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3207
    "Do not manually edit this!! If it is corrupted,
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3208
     the ImageEditor may not be able to read the specification."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3209
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3210
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3211
     self browseIt20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3212
     ImageEditor openOnClass:self andSelector:#browseIt20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3213
     Icon flushCachedIcons
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3214
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3215
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3216
    <resource: #image>
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3217
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3218
    ^Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3219
	constantNamed:'GenericToolbarIconLibrary class browseIt20x20Icon'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3220
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3221
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@M&Y&Y D@@@@@@CY&Y&@P@@@@@@ATQDPAD@@@@@@@@@@@DS@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3222
@@@@@QL1D @@@@@@@AD3DR@@@@@@@@@@@QH@@@@@@@@@@@D L3L5@@@@@@@BA7]7]@@@@@@@HDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3223
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3224
@@@@@@@@@@P@_?0@_? @_? @_? @_? @_?<@@?8@A?0@C?? @_? @_? @_? @_? @0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3225
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3226
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3227
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3228
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3229
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3230
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3231
copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3232
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3233
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3234
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3235
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3236
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3237
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3238
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3239
     self copy20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3240
     ImageEditor openOnClass:self andSelector:#copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3241
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3242
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3243
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3244
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3245
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3246
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3247
	constantNamed:#'GenericToolbarIconLibrary class copy20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3248
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3249
QDQDQDQDQDQDQDQADQDTQDQDQDQDPTQDDDQDQDQDQDECMAPDQDQDQDQAQDPP@DQDQDQDPTL3P3ADQDQDQDEDQADQDTQDQDQAP3LTQDDDQDQDPTQBECMAPDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3250
QDECL1QDPP@DQDQAP$HTL3P3ADQDPRP"EDQDI@QDQDD@@AP3L3HDQDQDQDPTQBP"ADQDQDQDECL3L QDQDQDQAP$H"HDQDQDQDPRP"H"ADQDQDQD@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3251
QDQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3252
@@@@G8@@G<@@G>@@G?@@G?@@G?0@G?8@G?<@G?>@G?>@G?>@G?>@@O>@@O>@@O>@@O>@@O>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3253
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3254
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3255
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3256
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3257
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3258
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3259
cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3260
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3261
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3262
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3263
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3264
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3266
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3267
     self cut20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3268
     ImageEditor openOnClass:self andSelector:#cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3269
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3270
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3271
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3272
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3273
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3274
	constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3275
	ifAbsentPut:[(Depth1Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@F@@@@@@@@@@@@@@@@@@@@@G0@@]H@@%H@@%H@@$0@@$@@@X@B@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 248]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3276
@@@@@PP@@PP@@PP@@PP@@H @@H @@M @@E@@@G@@@B@@@G0@@]H@@%H@@%H@@$0@@$@@@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3277
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3278
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3279
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3280
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3281
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3282
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3283
cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3284
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3285
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3286
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3287
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3288
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3289
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3290
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3291
     self cut20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3292
     ImageEditor openOnClass:self andSelector:#cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3293
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3294
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3295
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3296
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3297
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3298
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3299
	constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3300
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3301
@@@@@@@@@@@@@@DQDQ@@@@@@@@@AQDPP@@@@@@@@@TL4E@@@@@@@@@EDQA@@@@@@@@@AP3MCL@@@@@@@@TQDP$@@@@@@@@ECL3L @@@@@@@AQDIBH@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3302
@TL3L2@@@@@@@@EBP"H @@@@@@@AIBH"H@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3303
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3304
@@@@_ @@_1A@_9A@_=A@_=A@_<"@_<"@_<6@_<T@_<\@_<H@_<_@@A4 @BT @BT @BS@@BP@@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3305
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3306
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3307
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3308
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3309
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3310
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3311
debugIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3312
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3313
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3315
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3316
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3317
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3318
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3319
     self debugIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3320
     ImageEditor openOnClass:self andSelector:#debugIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3321
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3322
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3323
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3324
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3325
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3326
	constantNamed:#'GenericToolbarIconLibrary class debugIt20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3327
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3328
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@AP@@@3@@@@@@@E@@@3DS@@@@@@UP@@LSL2@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3329
@@AUD@@@L3L @@@ETQUU@3L2@@@@UQEUTCL3H @@@@@EUP@BH @@@@@@AT@@@@@@@@@@@@P@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3330
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 128 0 0 248 0 0 208 220 0 248 252 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3331
@@@@@@@@@@@@@D@@@L#@@Z_ @9? A7?@C3?@G??@O?> _?>@_;=@C14@C @@G@@@F@@@L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3332
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3333
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3334
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3335
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3336
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3337
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3338
doIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3339
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3340
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3341
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3342
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3343
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3344
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3345
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3346
     self doIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3347
     ImageEditor openOnClass:self andSelector:#doIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3348
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3349
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3350
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3351
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3352
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3353
	constantNamed:#'GenericToolbarIconLibrary class doIt20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3354
	ifAbsentPut:[(Depth2Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@D@@@@@AP@@@@@W@@@@@E=X@@@A_V@@@@@E @@@@@X@@@@@B@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3355
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3356
@@@@@@@@@@P@@@0@@A @@C @@G@@@O@@@_<@@?8@A?0@C? @@O@@@N@@@\@@@X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3357
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3358
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3359
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3360
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3361
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3362
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3363
documents20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3364
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3365
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3366
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3367
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3368
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3369
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3370
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3371
     self documents20x20Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3372
     ImageEditor openOnClass:self andSelector:#documents20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3373
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3374
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3375
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3376
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3377
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3378
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3379
        constantNamed:'GenericToolbarIconLibrary class documents20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3380
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3381
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E)FG@$J[!!:WWX]PGP@@@@@@@@@@QAA"MR]%PF!!<E39Q@@@@@@@@@@AXJ7.QO8 F
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3382
%IT1 YP0L0@@@@@@@F1''E%IBM8P OC0<OC2S@@@@@@@@ B):@"53$EVB (JBOF,@@@@@@@@H#PH=K@=Y%RL_HY%$F @@@@@@@B<)J@DDM)AUQ7:CFFQV@@@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3383
@@@@F7&LN1U^VYUJCE1-YF(@@@@@@@@[^G\@S''JPUXJB (H<PP@@@@@@@E^K@H)MC%&UW5=_W31=@@@@@@@@_1N]XQFE$EVB (JBO@T@@@@@@@@GIX$8]I!!Y
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3384
%U=_W5<<U@@@@@@@@B95II-KCYAU (JB #2O@@@@@@@@K&AL&"IHL ,RD#$9I!!$@@@@@@@BRQYY0RSQ#S0NNT6$Y[0@@@@@@@I1[P6Y6!!''D:@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3385
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O@@@OG?8OG?8OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG>@O@@@O@@@O') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3386
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  3387
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3388
dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3389
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3390
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3391
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3392
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3393
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3394
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3395
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3396
     self dos20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3397
     ImageEditor openOnClass:self andSelector:#dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3398
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3399
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3400
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3401
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3402
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3403
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3404
	constantNamed:#'GenericToolbarIconLibrary class dos20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3405
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3406
@@@@@@@@@@@@@@L3L3L3L3L3L3@CDQDQDQDQDQDP@1H"H"H"H"H#D@LRIDH"H"H"H1@CD$H"IBIBH"LP@1IBH"H"IBH#D@LRP"H"H"IBH1@CD$H"IBH$H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3407
@1H$P"H"P"H#D@LSL3L3L3L3L1@CDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3408
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ @@C&L@D)P@D)H@D)D@C&X@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3409
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3410
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3411
dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3412
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3413
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3414
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3415
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3416
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3417
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3418
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3419
     self dosWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3420
     ImageEditor openOnClass:self andSelector:#dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3421
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3422
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3423
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3424
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3425
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3426
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3427
	constantNamed:#'GenericToolbarIconLibrary class dosWithoutText20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3428
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3429
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H$P"H"H"H#D@LRP"P"H"P"H1@CD$H"H$H"P"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3430
@1IBH"H"H"P#D@LRP"H"H"H"P1@CD$H"H$H"IBLP@1IBIBH"H$H#D@LRIDH"H"P"H1@CD"H"H"H"H"LP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3431
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3432
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3433
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3434
downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3435
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3436
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3437
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3438
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3439
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3440
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3441
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3442
     self downArrow20x20Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3443
     ImageEditor openOnClass:self andSelector:#downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3444
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3445
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3446
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3447
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3448
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3449
    ^Icon
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3450
        constantNamed:'GenericToolbarIconLibrary class downArrow20x20Icon'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3451
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3452
H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H@@@@@H"H"H"H"@"H"HBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3453
H@@@@!!DQH@@@@"HBDQDQDQDQHBH"HBDQDQDQD H"H"HBDQDQDR@"H"H"HBDQDQHBH"H"H"HBDQD H"H"H"H"HBDR@"H"H"H"H"HBHBH"H"H"H"H"H@H"H"H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3454
H"H"H"H"H"H"H"H"H"H"H"H"H"Hb') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?0E@?0@@?0G@?0@@?0B@?0@@?0@_?? O??MG?>@C?<@A?8C@?0H@_ @@O@@@F@C@@@A@@@@') ; yourself); yourself]
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3455
!
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3456
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3457
download20x20Icon
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3458
    "This resource specification was automatically generated
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3459
     by the ImageEditor of ST/X."
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3460
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3461
    "Do not manually edit this!! If it is corrupted,
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3462
     the ImageEditor may not be able to read the specification."
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3463
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3464
    "
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3465
     self download20x20Icon inspect
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3466
     ImageEditor openOnClass:self andSelector:#download20x20Icon
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3467
     Icon flushCachedIcons
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3468
    "
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3469
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3470
    <resource: #image>
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3471
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3472
    ^Icon
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3473
        constantNamed:'GenericToolbarIconLibrary class download20x20Icon'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3474
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3475
H"H"H"H"H"H"H"H"H @@@@@"H"H"H"HBH"H H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H @@@BDQD @@@B
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3476
H@HQDQDQDQD @"H@HQDQDQDR@BH"H@HQDQDQH@H"H"H@HQDQD @"H"H"H@HQDR@BH"H"H"H@HQH@H"H"@"H"H@H @"H"H@H"H"H@@BH"H"@BH"H"H@H"H"H 
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3477
@"H"H"H"H"H"H@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@?0@@?0E@?0@@?0G@?0@@?0B@?0@_?? _?? O??MG?>@C?<@A?8C@?0H0_ 00O@00F@3???1???0') ; yourself); yourself]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3478
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3479
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3480
edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3481
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3482
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3483
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3484
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3485
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3486
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3487
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3488
     self edit20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3489
     ImageEditor openOnClass:self andSelector:#edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3490
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3491
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3492
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3493
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3494
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3495
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3496
	constantNamed:#'GenericToolbarIconLibrary class edit20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3497
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3498
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ HB@ HB@@\F@@HB@ HB@ HB@ HB@ HB@ H@A0XI@@HB@ HB@ HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3499
@ HB@@\FA $@@ HB@ HB@ HB@ HB@ H@A0XI@@HB@ HB@ HB@ @@@@@@@@\FA $@@ HB@ HB@ H@@0LN@00@A0XI@@HB@ HB@ HB@@LC@08N@@\FA $@@@HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3500
@ HB@ @C@0@@@0L@A0XI@A@@@ HB@ H@@0L@C 8@@@(FA $@DP@@@ HB@@LC@@8P@@L@B DF@ALCC @B@ @C@0@@@@TC@0@A@P4@@0<C@@H@@@LC@0LC@@LC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3501
@@@M@@LE@0L@@ @@@@@@C 8C@0L@@@@CC0LC@@HB@ HB@ H@@@@NC @@@1DC@0@@@ HB@ HB@ HB@ @@C LE@0L@@ HB@ HB@ HB@ HB@ H@D@LC@@HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3502
@ HB@ HB@ HB@ H@@@@B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 166 126 78 0 255 51 255 255 255 153 153 153 102 102 102 255 204 0 255 255 102 248 3 8 236 152 0 253 202 138 102 102 102 204 204 204 110 74 32 181 181 181 125 125 125 117 117 117 162 162 162 254 12 17 214 214 214]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@F@@@O@@@O @@_ @@_@@_?@@?>@A?>@C??@G?? O?? _?? _?? O??@A?>@@O<@@C8@@A0@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3503
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3504
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3505
empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3506
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3507
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3508
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3509
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3510
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3511
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3512
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3513
     self empty1x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3514
     ImageEditor openOnClass:self andSelector:#empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3515
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3516
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3517
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3518
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3519
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3520
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3521
	constantNamed:#'GenericToolbarIconLibrary class empty1x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3522
	ifAbsentPut:[(Depth1Image new) width: 1; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@F #L#!!LG 8H@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 0 0 0]; mask:((Depth1Image new) width: 1; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3523
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3524
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3525
erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3526
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3527
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3528
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3529
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3530
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3531
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3532
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3533
     self erase20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3534
     ImageEditor openOnClass:self andSelector:#erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3535
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3536
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3537
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3538
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3539
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3540
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3541
	constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3542
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3543
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EDQAD@@@@@@@@@P3PTD@@@@@@@@@QDDQ@@@@@@@@@@L4L@@@@@@@@A@@Q@@P@@@@@@@T@@@BD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3544
@@@@ED@@H!!@@@@@@@AP@@@HP@@@@@@@P@BH@D@@@@@@@@@H"H@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3545
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3546
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3547
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3548
erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3549
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3550
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3551
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3552
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3553
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3554
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3555
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3556
     self erase20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3557
     ImageEditor openOnClass:self andSelector:#erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3558
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3559
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3560
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3561
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3562
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3563
	constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3564
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3565
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EUUQD@@@@@@@@@UDTUD@@@@@@@@@UUDQ@@@@@@@@@@QEH@@@@@@@@A@@UP@P@@@@@@@U@@@CD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3566
@@@@EU@@L1@@@@@@@AT@@@LP@@@@@@@P@CL@D@@@@@@@@@L3L@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3567
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 0 0 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3568
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3569
4308
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3570
eraseOverlay20x20
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3571
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3572
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3573
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3574
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3575
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3576
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3577
    "
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3578
     self eraseOverlay20x20 inspect
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3579
     ImageEditor openOnClass:self andSelector:#eraseOverlay20x20
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3580
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3581
    "
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3582
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3583
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3584
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3585
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3586
        constantNamed:'GenericToolbarIconLibrary class eraseOverlay20x20'
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3587
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3588
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3589
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@@@@@@@@@@@@XF@@@@@@@@@@@@Y @@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3590
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 0 0 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255 255 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@C B@C0L@A8X@@\0@@O @@G@@@O @@\0@@8X@A0L@C0N@C F@A@B@@@@@@@@@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3591
!
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  3592
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3593
executeMethod20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3594
    "This resource specification was automatically generated
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3595
     by the ImageEditor of ST/X."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3596
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3597
    "Do not manually edit this!! If it is corrupted,
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3598
     the ImageEditor may not be able to read the specification."
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3599
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3600
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3601
     self executeMethod20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3602
     ImageEditor openOnClass:self andSelector:#executeMethod20x20Icon
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3603
     Icon flushCachedIcons
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3604
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3605
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3606
    <resource: #image>
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3607
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3608
    ^Icon
4531
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3609
        constantNamed:'VistaToolbarIconLibrary executeMethod20x20Icon'
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3610
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3611
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@EUUUU@0UUUR@@ATQDPCLDQDQ@@@UDQ@L5@@@DP@
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3612
@EQD@3USLPQD@@ATPCMUL1ADQ@@@U@@@@3DDQDP@@EQDQ@LPQDQD@@@&Y&XAA&Y&Y @@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  3613
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 208 220 0 170 170 170 248 252 128 0 255 127 255 255 255 127 127 127]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3614
@@@@@@@@@@P@@@0@@A @_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3615
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3616
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3617
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3618
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3619
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  3620
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3621
fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3622
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3623
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3624
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3625
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3626
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3627
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3628
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3629
     self fileIn20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3630
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3631
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3632
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3633
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3634
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3635
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3636
	constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3637
	ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3638
@@@@@@@@@@@@@@@@@@@@Y&Y&Y&@@@@@@@FL3M&Y @@Y DFA"H"Y&X@DFXA@@Y"Y&Y&@A@@@P@FX&Y&Y @QDQD@M&I%UUX@DP@AA#M"H"H&@ADFD3L3L&Y&Y
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3639
@@@@L3L3M&Y&X@@@@CL3L2YDQF@@@@@@@3X"H"I @@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3640
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G?0@G?0?7?0???0?7?0?7?0?7?0???0???0_??0@??0@G?0@G?0@G?0J H@P @@R&I R)JP:/JPR(JPR&JP') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3641
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3642
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3643
fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3644
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3645
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3646
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3647
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3648
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3649
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3650
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3651
     self fileIn20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3652
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3653
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3654
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3655
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3656
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3657
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3658
	constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3659
	ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3660
@@@@@@@@@@@@@G]7]0@@Y&Y&Y&A;.;\@@FL3M&Y ^:*7,FA"H"Y&XG.;-0@@Y"Y&Y&A;**.H@FX&Y&Y ^;.;&0M&I%UUXG.**J$CM"H"H&A;.9,3L3L&Y&Y
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3661
^:"(L3L3M&Y&XG.[&SL3L2YDQFA9.Y&Y@3X"H"I \@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3662
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G?0?G?0?''?0???0???0???0???0???0???0???0???0???0???0@G?0J H@P @@R&I R)JP:/JPR(JPR&JP') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3663
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3664
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3665
fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3666
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3667
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3668
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3669
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3670
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3671
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3672
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3673
     self fileIn20x20Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3674
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3675
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3676
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3677
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3678
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3679
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3680
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3681
	constantNamed:#'GenericToolbarIconLibrary class fileIn20x20Icon3'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3682
	ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3683
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@A&Y&Y&@8"HL@@@Y7]6Y NFZC @@FH"I&XC"H 0@@A&I&Y&@8Y&!!&@@Y"Y&Y
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3684
NH"HR@A6X&DQXC!!&Y&P@]6H"H&@8"D]7]7]2Y&Y NFY'']7]7]6Y&XC!!HQ7]7]7I%UV@4!!DQD@G]"H"I L@@@@@A6Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3685
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 127 0 63 63 36 64 64 64 168 228 240 194 194 0 208 212 208 255 0 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C?0?C?0?#?0?3?0?;?0?;?0?;?0?;?0???0???0???0?;?0?;?0@C?0@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3686
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3687
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3688
fileNew20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3689
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3690
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3691
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3692
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3693
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3694
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3695
    "
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3696
     self fileNew20x20Icon inspect
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3697
     ImageEditor openOnClass:self andSelector:#fileNew20x20Icon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3698
     Icon flushCachedIcons
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3699
    "
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3700
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3701
    <resource: #image>
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3702
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3703
    ^Icon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3704
        constantNamed:'GenericToolbarIconLibrary class fileNew20x20Icon'
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3705
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3706
Y&Y&Y&Y&Y&Y&Y&Y&Y&Y%Y&U&YVY&Y&Y&Y%Y%Y%Y&Y&Y!!DQDUYVU&Y&Y&XTQDDEUVY&Y&Y&EDQUUUUUU&Y&Y!!QDPTUUY&Y&Y&XTQDEPTEY&Y&Y&EDQEH%A%Y&
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3707
Y&Y!!QDUDMPY%Y&Y&XTQDP4LFY&Y&Y&EDQCP3A&Y&Y&Y!!QDMCL0Y&Y&Y&XTP4L3LFY&Y&Y&ECP3L3A&Y&Y&Y!!MCL3L0Y&Y&Y&XP@@@@@FY&Y&Y&Y&Y&Y&Y&Y&
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3708
Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Xb') ; colorMapFromArray:#[0 0 0 64 64 64 168 172 168 168 228 240 248 252 248 255 0 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  3709
@@@@@DQ@@BR@A?T@A?8@A??@A?8@A?<@A?:@A?9@A?8@A?8@A?8@A?8@A?8@A?8@A?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3710
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3711
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3712
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3713
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3714
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3715
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3716
fileOpen20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3717
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3718
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3719
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3720
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3721
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3722
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3723
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3724
     self fileOpen20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3725
     ImageEditor openOnClass:self andSelector:#fileOpen20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3726
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3727
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3728
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3729
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3730
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3731
	constantNamed:#'GenericToolbarIconLibrary class fileOpen20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3732
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3733
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL0@@@@@@@@@@L@@0L@@@@@@@@@@@@3@@@BH"@@@@@CL0@@HQDRH"H @@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3734
@BEUTQDQD @@@@@!!UUUUUUH@@@@@HUT"H"H"H"H@@BERQDQDQDP @@@!!IDQDQDQB@@@@H$QDQDQDH@@@@BH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3735
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 0 0 128 128 128 0 248 252 184]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3736
@@@@@@@@@@@@@@@@@@8@@AE@@@C@G G@O? @O?0@O?0@O??@O?>@O?<@O?8@O?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3737
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3738
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3739
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3740
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3741
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3742
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3743
fileSave20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3744
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3745
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3746
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3747
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3748
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3749
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3750
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3751
     self fileSave20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3752
     ImageEditor openOnClass:self andSelector:#fileSave20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3753
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3754
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3755
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3756
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3757
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3758
	constantNamed:#'GenericToolbarIconLibrary class fileSave20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3759
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3760
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3H"H"H"@@@@@C]7H"QDIB@@@@@7QBH$QBQB@@@@M4P"IDP$P @@@C]DH"H"QDH@@@@7QDQDQDQB@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3761
@@M4Y&Y&Y$P @@@C]!!DQDQU$H@@@@7XQDQEQYB@@@@M6DQDUEVP @@@C]!!DQTUU$H@@@@7XQEQUUX"@@@@M6DUEUUVD @@@BH"H"H"H"H@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3762
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 168 172 168 168 228 240 96 96 96 208 212 208]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3763
@@@@@@@@@@@@G?8@G?<@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3764
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3765
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3766
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3767
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3768
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3769
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3770
fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3771
    "This resource specification was automatically generated
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3772
     by the ImageEditor of ST/X."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3773
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3774
    "Do not manually edit this!! If it is corrupted,
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3775
     the ImageEditor may not be able to read the specification."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3776
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3777
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3778
     self fitImageSizeToView20x20Icon inspect
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3779
     ImageEditor openOnClass:self andSelector:#fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3780
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3781
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3782
    <resource: #image>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3783
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3784
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3785
	constantNamed:#'GenericToolbarIconLibrary class fitImageSizeToView20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3786
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3787
@@DQDQDQDQDP@@@PDQDQDQDQ@P@A@ADQDQDQDP@PD@@PDQDQDPD@@QDQ@ADQDQ@@DQDQD@@@@@@@@@DQDQDPQDQDQ@DQDQDQDDQUUTPADQDQDQAEUUUT@QDQ
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3788
DQDPQEUUQ@DQDQDQDDQFQDPADQDQDQADQ$QD@QDQDQDPL3X3Q@DQDQDQDCL3L3LADQDQD@@@@@@@@@DQDQD@DQDQDP@QDQ@@DADQDQDA@@DA@ADQDQDQDP@P
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3789
@@@QDQDQDQDA@@@ADQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3790
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3791
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 0 137 0 174 218 230 0 206 0 133 60 36]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3792
8@A00@@0(@APE@J@C@L@G?>@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@G?>@C@L@E@J@(@AP0@@08@A0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3793
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3794
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3795
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3796
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3797
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  3798
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3799
history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3800
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3801
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3802
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3803
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3804
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3805
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3806
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3807
     self history20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3808
     ImageEditor openOnClass:self andSelector:#history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3809
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3810
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3811
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3812
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3813
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3814
	constantNamed:#'GenericToolbarIconLibrary class history20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3815
	ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3816
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J** @@@@IVU @@@@J**"@@@@IVU"@@@@J**"H@@@IVU"H@@@J**"H @@IVU"H @@J**"H @@@@@BH @@@***H @
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3817
@@@@@H @@@B**( @@@@@@@ @@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 129 194 194 194 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@G?0@G?0@G?<@G?<@G??@G??@G??0G??0G??0G??0G??0A??0A??0@_?0@_?0@G?0@G?0@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3818
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3819
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3820
inspectIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3821
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3822
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3823
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3824
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3825
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3826
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3827
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3828
     self inspectIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3829
     ImageEditor openOnClass:self andSelector:#inspectIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3830
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3831
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3832
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3833
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3834
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3835
	constantNamed:#'GenericToolbarIconLibrary class inspectIt20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3836
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3837
"H"H"H"H"H"H"H"H"H @@H"H"H"H"H @M&D@"H"H"H"@M&]&XP"H"H"H FXWY&XH"H"H"@E!!]FY&DH"H"H AEWQFY&BH"H"H@[]$Y&Y "H"H"@.7Y&Y&LH"H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3838
"HB;Q1DWY "H"H K-D.:]&LH"H"@.4R;)1L@&X"H @@K. @@"@JX"H"HB:BH"H"@JX"H"@(H"H"H"@JX"HB "H"H"H"@JX"@BH"H"H"H"@BH@H"H"H"H"H"H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3839
"@"H"H"H"H"H"H"H"H"H"H"H"H b') ; colorMapFromArray:#[0 0 0 128 132 128 168 172 168 208 212 208 248 252 248 248 252 128 152 204 216 64 64 64 255 255 255 128 64 64 208 220 0 248 252 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3840
@@@@@O@@@?0@A?8@A?8@C?<@C?<@C?<@C?<@G?8@O?8@_?<@_?N@C0G@C C G@A0F@@0L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3841
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3842
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3843
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3844
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3845
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3846
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3847
inspectLocals20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3848
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3849
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3850
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3851
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3852
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3853
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3854
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3855
     self inspectLocals20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3856
     ImageEditor openOnClass:self andSelector:#inspectLocals20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3857
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3858
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3859
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3860
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3861
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3862
	constantNamed:#'GenericToolbarIconLibrary class inspectLocals20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3863
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3864
@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H@@BEDQDQDQDDR@@@$P"H$QDQDP @@H"%&T"DQDWH@@B%&Y&YRDQ\R@@@& VY&X!!E1\ @B%!!DX"FT''E7H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3865
@&Y!!Y&Y&HW]2@@I&"F"HY"]7\ @BU(!!&Y&$'']7H@@BY&Y&Y"H"H"@@@%Y&Y&$ @@@@@@@"U&$"L0@@@@@@@BH"@BT0@@@@@@@@@@@BT0@@@@@@@@@@@BT0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3866
@@@@@@@@@BT0@@@@@@@@@@@BH@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 128 64 64 0 0 248 168 172 168 152 204 216 168 228 240 112 156 160 208 212 208]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3867
@@@@@@@@O??@O??@O??@O??@O??@O??@_??@_??@_??@_??@O??@O?@@G? @A90@@@8@@@\@@@N@@@F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3868
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3869
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3870
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3871
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3872
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3873
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3874
leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3875
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3876
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3877
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3878
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3879
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3880
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3881
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3882
     self leftArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3883
     ImageEditor openOnClass:self andSelector:#leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3884
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3885
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3886
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3887
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3888
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3889
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3890
	constantNamed:#'GenericToolbarIconLibrary class leftArrow20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3891
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3892
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@@HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ H@@ @B@ HB@ HB@ HB@ HB@ HB@@HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3893
@@HB@ HB@ HB@ HB@ HB@ @B@PD@@ HB@ HB@ HB@ HB@ H@@ DA@P@@@@@@@@@@@ HB@ HB@@HA@PDA@ HB@ HB@ @B@ HB@ @B@PDA@PDA@PDA@PDB@@HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3894
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@ @B@PDA@PDA@PDA@PDB@@HB@ HB@ @B@PDA@PHB@ HB@ H@@ HB@ HB@ @B@PDA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3895
@@@@@@@@@@@B@ HB@ HB@ @B@PD@@ HB@ HB@ HB@ HB@ HB@ @B@P@B@ HB@ HB@ HB@ HB@ HB@ @B@@HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3896
@ HB@ HB@ HB@ @B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M@B@@@F@J@N@@@^@J@>@@A??@C??@G??OO??@O??@G??@C??@A??E@>@H@^@@@N@@@F@N@B@A@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3897
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3898
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3899
newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3900
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3901
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3902
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3903
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3904
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3905
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3906
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3907
     self newDirectory20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3908
     ImageEditor openOnClass:self andSelector:#newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3909
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3910
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3911
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3912
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3913
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3914
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3915
	constantNamed:#'GenericToolbarIconLibrary class newDirectory20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3916
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3917
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@A@ HB@ HA@@@@@@@@@@@@@@@@@PHB@ HB@ HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3918
@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@D@@PHB@ HB@ HB@ HB@@@@@ HB@P@A@ HB@ HB@ HB@ @B@@H@@ HA@@DB@ HB@ HB@ H@@ H@@ H@@ D@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3919
@PHB@ HB@ HB@@HB@ @B@ H@@P@A@ HB@ HB@ HB@ HB@ HB@ HA@@DB@ HB@ HB@ HB@ HB@ HB@ D@@PHB@ HB@ HB@ HB@ HB@ HB@P@A@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3920
@ HB@ HB@ HA@@DB@ HB@ HB@ HB@ HB@ HB@ D@@PHB@ HB@ HB@ HB@ HB@ HB@P@A@ HB@ HB@ HB@ HB@ HB@ HA@@DA@PDA@PDA@PDA@PDA@PDA@PD@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3921
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 0 0 0 0 0 255 255 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@DQ@O:R@O9T@_<8@??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? @@@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3922
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3923
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3924
paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3925
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3926
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3927
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3928
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3929
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3930
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3931
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3932
     self paste20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3933
     ImageEditor openOnClass:self andSelector:#paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3934
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3935
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3936
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3937
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3938
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3939
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3940
	constantNamed:#'GenericToolbarIconLibrary class paste20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3941
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3942
@@@@@@@@@@@@@@@@@@@3L@@@@@@@@@L3&YH3@@@@@@@5T9&RUR@@@@@CUG&UURP2@@@@@5Q2H"H$L @@@@MTQDQDQCH@@@@CUDQCL3L2@@@@@5QDP1DQL @@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3943
@@MTQDLX SD @@@CUDQCDQD2H @@@5QDP1"HFHH@@@MTQDLQDQXR@@@CUDQCFH"HX @@@5QDP1DVE&H@@@MTQDLX"H!!"@@@@H"H#E!!Y&X @@@@@@@6E&Y&H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3944
@@@@@@L"H"H"@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 128 132 128 168 172 168 168 228 240 96 96 96 208 212 208 248 252 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3945
@@@@@N@@A?0@C?8@G?<@G?<@G?<@G?<@G?<@G?>@G??@G??@G??@G??@G??@G??@C??@@G?@@G?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3946
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3947
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3948
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3949
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3950
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3951
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3952
printIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3953
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3954
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3955
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3956
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3957
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3958
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3959
    "
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3960
     self printIt20x20Icon inspect
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3961
     ImageEditor openOnClass:self andSelector:#printIt20x20Icon
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3962
     Icon flushCachedIcons
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3963
    "
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3964
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3965
    <resource: #image>
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3966
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3967
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3968
	constantNamed:'GenericToolbarIconLibrary class printIt20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  3969
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3970
@@@@@@@@@@@@@@@@@@L3L3L3L0@@@@@CDQDQDQL@@@@@@1DQLQDS@@@@@@LQD3DQD @@@@@CDSLQDQH@@@@@@1ND&Y&R@@@@@@L8NY&Y$ @@@@@B"C&Y&YH@
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3971
@@@@JHD3L9&R@@@@@( Q"GLQD @@@B"AFH\1DQH@@@H"H(!!3DQDR@@@@@@JGLQDQD @@@@@B\"H"H"H@@@@@I2@@@@@@@@@@@BH@@@@@@@@@@@H @@@@@@@@
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3972
@@@B@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 128 132 128 168 172 168 168 228 240 208 220 0 248 252 128 32 220 32]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  3973
@@@@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@??@A??@C??@G??@@_?@@_?@@8@@@0@@A @@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3974
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3975
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3976
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3977
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3978
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3979
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3980
redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3981
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3982
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3983
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3984
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3985
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3986
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3987
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3988
     self redo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3989
     ImageEditor openOnClass:self andSelector:#redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3990
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3991
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3992
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3993
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3994
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3995
	constantNamed:#'GenericToolbarIconLibrary class redo20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  3996
	ifAbsentPut:[(Depth1Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@<@@ACD@B@,@B@\@B@<@AA<@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@<@@ACD@B@,@B@\@B@<@AA<@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3997
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3998
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3999
rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4000
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4001
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4002
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4003
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4004
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4005
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4006
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4007
     self rightArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4008
     ImageEditor openOnClass:self andSelector:#rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4009
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4010
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4011
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4012
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4013
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4014
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4015
	constantNamed:#'GenericToolbarIconLibrary class rightArrow20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4016
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4017
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ H@@ HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ HB@@H@@ HB@ HB@ HB@ HB@ HB@ H@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4018
@PH@@ HB@ HB@ HB@ HB@ HB@ @A@PH@@ HB@ HB@ H@@@@@@@@@@@DA@PH@@ HB@ HB@ @B@ HB@ HB@PDA@PH@@ HB@ HB@@HA@PDA@PDA@PDA@PH@@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4019
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@@HA@PDA@PDA@PDA@PH@@ HB@ H@@ HB@ HB@ DA@PDB@@HB@ HB@ @@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4020
@PDA@ @B@ HB@ HB@ HB@ HB@ @A@PH@@ HB@ HB@ HB@ HB@ HB@@DB@@HB@ HB@ HB@ HB@ HB@ H@@ @B@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4021
@ HB@ HB@ HB@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@D@@@F@H@G@@@G @@G0@O?8AO?<@O?>@O??@O??DO?>DO?<@O?8@@G0@@G @@G@@@F@@@D@J@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4022
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4023
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4024
search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4025
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4026
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4027
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4028
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4029
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4030
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4031
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4032
     self search20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4033
     ImageEditor openOnClass:self andSelector:#search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4034
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4036
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4038
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4039
	constantNamed:#'GenericToolbarIconLibrary class search20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4040
	ifAbsentPut:[(Depth2Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@B@@@@@@@@@@@@@@@@@H@H@@@@@@@@@@DAA@@@@PHD@@@B@@ @@@@@@@@@A@@@P@@H@@B@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4041
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 212 208 200 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@A10@A10@A10@C;8@C;8@G?<@O?>@O?>@O?>@O;>@O >@O >@O >@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4042
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4043
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4044
shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4045
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4046
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4047
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4048
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4049
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4050
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4051
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4052
     self shell20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4053
     ImageEditor openOnClass:self andSelector:#shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4054
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4055
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4056
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4057
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4058
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4059
	constantNamed:#'GenericToolbarIconLibrary class shell20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4060
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4061
@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"H"H"H"H#D@LRIDH"H"H"H1@CD$P"H"H"H"LP@1IDH"H"H"H#D@LRIDH"H"H"H1@CD"QBH"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4062
@1IDH$QBQDH#D@LRH"H"H"H"H1@CD3L3L3L3L3LP@1DQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4063
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ B F82 H%J D%: B%B L$2 ') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4064
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4065
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4066
shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4067
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4068
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4069
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4070
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4071
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4072
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4073
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4074
     self shell20x20WithoutTextIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4075
     ImageEditor openOnClass:self andSelector:#shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4076
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4077
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4078
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4079
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4080
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4081
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4082
	constantNamed:#'GenericToolbarIconLibrary class shell20x20WithoutTextIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4083
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4084
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4085
@1ICP"H"H"H#D@LRIDP"H"H"H1@CD"MBP"H"H"LP@1IBP$H"H"H#D@LRIDP"H"H"H1@CD"IBH$QBQDLP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4086
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4087
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4088
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4089
shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4090
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4091
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4092
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4093
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4094
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4095
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4096
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4097
     self shellWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4098
     ImageEditor openOnClass:self andSelector:#shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4099
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4100
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4101
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4102
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4104
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4105
	constantNamed:#'GenericToolbarIconLibrary class shellWithoutText20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4106
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4107
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4108
@1ICP"H"H"H#D@LRIDP"H"H"H1@CD"MBP"H"H"LP@1IBP$H"H"H#D@LRIDP"H"H"H1@CD"IBH$QBQDLP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4109
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4110
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4111
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4112
tableViewWidget20x20
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4113
    "This resource specification was automatically generated
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4114
     by the ImageEditor of ST/X."
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4115
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4116
    "Do not manually edit this!! If it is corrupted,
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4117
     the ImageEditor may not be able to read the specification."
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4118
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4119
    "
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4120
     self tableViewWidget20x20 inspect
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4121
     ImageEditor openOnClass:self andSelector:#tableViewWidget20x20
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4122
     Icon flushCachedIcons
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4123
    "
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4124
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4125
    <resource: #image>
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4126
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4127
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4128
	constantNamed:'XPToolbarIconLibrary class tableViewWidget20x20'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4129
	ifAbsentPut:[(Depth2Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C?O<?0@N,:3+@@?3?O<@@@@@@@@O<?3?@@:3+N,@C?O<?0@@@@@@@@?3?O<@C+N,:0@O<?3?@@@@@@@@@@@@@@
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4130
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O@@@OA#FO@@@OG??/G??/7??/G??/G??/G??/7??/G??/G??/G??/7??/G??/G??/@@@O@@@O@@@O') ; yourself); yourself]
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4131
!
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  4132
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4133
undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4134
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4135
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4136
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4137
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4138
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4139
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4140
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4141
     self undo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4142
     ImageEditor openOnClass:self andSelector:#undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4143
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4144
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4145
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4146
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4147
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4148
	constantNamed:#'GenericToolbarIconLibrary class undo20x20Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4149
	ifAbsentPut:[(Depth1Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4150
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4151
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4152
upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4153
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4154
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4155
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4156
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4157
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4158
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4159
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4160
     self upArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4161
     ImageEditor openOnClass:self andSelector:#upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4162
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4163
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4164
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4165
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4166
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4167
    ^Icon
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  4168
        constantNamed:'GenericToolbarIconLibrary class upArrow20x20Icon'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  4169
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  4170
H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H@H"H"H"H"H"H H H"H"H"H"H"@!!D H"H"H"H"HBDQD H"H"H"H HQDQD H"H"H"@!!DQDQD H"H"HBDQDQDQD H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  4171
H HQDQDQDQD H"@@@@HQDR@@@@H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H H"H"@"H"H"H"H@@@@@H"H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  4172
H"H"H"H"H"H"H"H"H"H"H"H"H"Hb') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@J@@@@@F@@@O@@@_ O@?0@A?8@C?<@G?>@O??E_??(@?0@@?0@@?0N@?0A@?0@@?0@@?0K@@@A@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4173
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4174
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4175
!GenericToolbarIconLibrary class methodsFor:'image specs-22x22'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4176
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4177
backward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4178
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4179
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4180
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4181
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4182
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4183
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4184
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4185
     self backward3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4186
     ImageEditor openOnClass:self andSelector:#backward3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4187
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4188
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4189
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4190
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4191
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4192
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4193
	constantNamed:#'GenericToolbarIconLibrary class backward22x22_3DIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4194
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4195
UUUUUUUPUUUUUUUPUUT@EUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPWUT*%UUPWWR*)UUPWUR*)UUP_5R*)UUP_UJ**UUP_UJ**UUPUUJ**UUPUPJ**UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4196
UR***)UPUTJ**UUPUUP*%UUPUUUAUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O @@O0@@O0@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@@?<@C??@C??@A?>@@_8@@G @@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4197
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4198
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4199
close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4200
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4201
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4202
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4203
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4204
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4205
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4206
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4207
     self close22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4208
     ImageEditor openOnClass:self andSelector:#close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4209
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4210
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4211
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4212
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4213
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4214
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4215
	constantNamed:#'GenericToolbarIconLibrary class close22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4216
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4217
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4218
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4219
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4220
@@@B@ H@@ HB@@@@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@A@@@@@@@B@ H@@@@@@@HB@ @@@@@@@@@@@@@B@ H@@@@@@@@@@ HB@@@@@@@@@@@@@ H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4221
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4222
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4223
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4224
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4225
copy22x22Icon
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4226
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4227
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4228
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4229
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4230
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4231
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4232
    "
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4233
     self copy22x22Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4234
     ImageEditor openOnClass:self andSelector:#copy22x22Icon
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4235
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4236
    "
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4237
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4238
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4239
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4240
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4241
	constantNamed:#'GenericToolbarIconLibrary class copy22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4242
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4243
@@@@@@@@@@AUUUW@@@A???>@@@A???>O@@A???>@@@A???>@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8?>@G???8?>IG???8?>@G???8**M
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4244
G???8@@@G???8@@KG???8@@@G???8@@@G???8@@HN***(@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@_?<@_?<@_?<@_?<@_?<@_?<???<???<???<???<???<???<???<???<???<???<??8@??8@??8@??8@??8@??8@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4245
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4246
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4247
copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4248
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4249
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4250
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4251
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4252
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4253
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4254
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4255
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4256
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4257
     self copyMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4258
     ImageEditor openOnClass:self andSelector:#copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4259
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4260
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4261
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4262
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4263
	constantNamed:#'GenericToolbarIconLibrary class copyMenuItem22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4264
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4265
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O@@@@@@@@@@AUUUW@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8**@G???8@@IN***(@@@@@@@@@@M
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4266
@@@@@@@@G???8@@KG???8@@@G???8@@@G???8@@HN***(@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<???<???<???<???<???<???<???<??8@??8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4267
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4268
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4269
currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4270
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4271
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4272
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4273
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4274
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4275
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4276
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4277
     self currentDirectoryIcon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4278
     ImageEditor openOnClass:self andSelector:#currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4279
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4280
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4281
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4282
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4283
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4284
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4285
	constantNamed:#'GenericToolbarIconLibrary class currentDirectoryIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4286
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(nil)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4287
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQIDP!!DP@@@@@@DQIDQDHQD@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4288
DQIDQDQBDQ@@@@DQIDQDQDP!!DP@@DQIDQDQDQDHQD@D"IDQDQDQDQ@@A@RH$QDQDQDQD@@D@@@QDQDQDQDP@@@@@ADQD@@QDQ@@@@@@DQDP@ADQD@@@@@@QD
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4289
Q@@DQDP@@@@@ADQDQDQDQ@@@@@@DQDQDQDQD@@@@@@QDQDQDQDP@@@@@ADQDQDQDQ@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4290
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4291
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4292
cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4293
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4294
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4295
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4296
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4297
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4298
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4299
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4300
     self cut22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4301
     ImageEditor openOnClass:self andSelector:#cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4302
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4303
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4304
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4305
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4306
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4307
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4308
	constantNamed:#'GenericToolbarIconLibrary class cut22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4309
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4310
@@@@@@@@@@@@@@@@DQDQDP0AL@@L@@@SL3L3CBL @B0@@AL3L3LL0B@@3@@@D3L3L0KB@@KB@@@SL3L3LL0@CL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4311
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@SL3L3L0CL0@@@@AL3L3L3@,CB@@@@D3L3L3@L0L0@@@@2H"H H"0 KBH @@@@@@KL3@@L3LH@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4312
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?<@_=\P_=<0_=,0_=50_>5 _>; _?[@_?[@_?.@_?.@_?N@_?[@_>[@_;;8_75<@F1,@D1$@D1$@F ,@C@X@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4313
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4315
cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4316
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4317
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4318
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4319
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4320
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4321
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4322
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4323
     self cutMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4324
     ImageEditor openOnClass:self andSelector:#cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4325
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4326
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4328
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4329
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4330
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4331
	constantNamed:#'GenericToolbarIconLibrary class cutMenuItem22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4332
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4333
@@@@@@@@@@@@@@@@@@@ADP0@@@@L@@@CL3L3CB@@@B0@@@L3L3LL0@@@3@@@@@@@@@KB@@KB@@@QDQDQDL0ACL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4334
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@2H"H"H"CL0@@@@@@@@@@@@,CB@@@@@@@@@@@L0L0@@@@@@@@@H"0 KBH @@@@@@KL3@@L3LH@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4335
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A@P@A 0@A 0_=50_>5 _>; _?[@_?[@_?.@_?.@_?.@_?[@@@[@@C;8@G5<@F1,@D1$@D1$@F ,@C@X@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4336
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4337
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4338
debug22x22Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4339
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4340
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4341
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4342
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4343
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4344
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4345
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4346
     self debug22x22Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4347
     ImageEditor openOnClass:self andSelector:#debug22x22Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4348
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4349
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4350
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4351
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4352
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4353
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4354
	constantNamed:#'GenericToolbarIconLibrary class debug22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4355
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4356
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4357
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ HB@ @@@@@@@@@@@@@@@@@@@ HBAPTEAPTB@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4358
@@@B@ @B@ HEAPTEAPTEAPH@@@@@@@HBAPTE@@HEAPTEAPTEAPTE@ @@@@@B@ TEAP@BAPTEAPTEAPTEAPH@@@@@@@HEAPT@@@@@@@@@@@@@@@@@@@@@@@HB
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4359
APTE@@HBAPTEAPTEAPTE@ @@@@@@@ HB@ @B@ TEAPTEAPTE@ H@@@@@@@@@@@@@@@HBAPTEAPTE@ @@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4360
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4361
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 127 127 127 128 0 0 161 161 165 194 194 194 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@L? @E?0@??8Q??<O??<C??<C??<O??<S??<@??8@G?0@L? @Q#X@FA @@@@@@@@@@@@') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4362
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4363
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4364
debug22x22IconForBlackBackgound
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4365
    "This resource specification was automatically generated
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4366
     by the ImageEditor of ST/X."
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4367
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4368
    "Do not manually edit this!! If it is corrupted,
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4369
     the ImageEditor may not be able to read the specification."
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4370
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4371
    "
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4372
     self debug22x22IconForBlackBackgound inspect
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4373
     ImageEditor openOnClass:self andSelector:#debug22x22IconForBlackBackgound
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4374
     Icon flushCachedIcons
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4375
    "
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4376
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4377
    <resource: #image>
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4378
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4379
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4380
	constantNamed:'GenericToolbarIconLibrary class debug22x22IconForBlackBackgound'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4381
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4382
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@X@@@@@@@@FA X@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4383
@@@@@@@F@@@@A X@@@XFA @@A @@@@@@@@@@@@XF@@@FA XFA XF@@@@@@@@@@@@@@@@A @FA HB@ HB@ X@@@@@@@@@@@XFA XF@ HBAPTEAPTBA @@A @@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4384
@@XB@ XB@ HEAPTEA XEAPHF@@@FA HBAPTEA HEA XEAPXFAPTE@ @@@@@B@ XEAPXBAPXFAPTEAPTEAPH@@@@@A HEAPTFA XFA XFA XFA XF@@@FA HB
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4385
A TEA HBAPTEAPTEA XE@ @F@@@F@ HB@ XB@ TEA XEAPXF@ X@@@@@@@@FA XFA HBAPXFAPTE@ X@@@@@@@@@@@@@A XFA XB@ HB@ X@@@@@@@@@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4386
A X@@@XFA XFA X@@@@@@@@@@@@@A @@@@XF@@@@A X@A X@@@@@@@@@@@@@A X@@@@@@@@FA @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4387
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 127 127 127 128 0 0 161 161 165 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@L? @E?0@??8Q??<O??<C??<C??<O??<S??<@??8@G?0@L? @Q#X@FA @@@@@@@@@@@@') ; yourself); yourself]
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4388
!
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  4389
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4390
delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4391
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4392
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4393
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4394
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4395
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4396
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4397
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4398
     self delete22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4399
     ImageEditor openOnClass:self andSelector:#delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4400
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4401
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4402
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4403
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4404
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4405
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4406
	constantNamed:#'GenericToolbarIconLibrary class delete22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4407
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4408
@@@@@@@@@@@@@@@@DQDQDQDQL@@@@@@SL3L3L3L @@@@@AL3L3L3L2@@@@@@D3L3L3L3H@@@H@@SL3L3L3L @@H@@AL3L3L3L2@@@@@@D3L3L3L3@@@@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4409
L3L3L0@ @@@ @AL3L3L3@@@@@@@@D3L3L3L@D@@@H@@SL3L3L0@QL3H @AL3L3L3@A@3LB@@D3L3L3L@DC@0H@@2H"H"H @PLC@ @@@@@@@@@A@0LB@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4410
@@@@DC@0H@@@@@@@@@@PLC@ @@@@@@@@@A@0LB@@@@@@@@@@DS@2H@@@@@@@@@HAL3HB@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?<@_?<@_?<P_?<P_?<X_?<X_?<H_?0H_?O<_?XL_?_<_?_<_?_<_?_<_?_<_?_<@@_<@@_<@@_<@@_<@@_<@@G0') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4411
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4412
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4413
displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4414
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4415
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4416
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4417
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4418
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4419
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4420
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4421
     self displayScreen22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4422
     ImageEditor openOnClass:self andSelector:#displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4423
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4424
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4425
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4426
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4427
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4428
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4429
	constantNamed:#'GenericToolbarIconLibrary class displayScreen22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4430
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4431
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&Y&Y&Y&Y&&P@@A&Y&Y&Y&Y&ZY@@@FXXUUV***)9$0@@Y!!H"H+.AF''&S@@A&,"H"H+DZ^YL@@F
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4432
Z2H"H",Q)9$0@@Y(H"J;-QF''&S@@A&E[.HUQDZ^YL@@FXUUUUUDQ*)$0@@Y!!UUUUTQF*&S@@A&(QF$*$QD^YL@@I&Y&Y&Y&Y&Y$0@@&Y&Y&Y&Y&Y&S@@@@L3
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4433
M)&YL3L3L@@@@@@F&Y$3@@@@@@@@ZY&Y&Y&S@@@@@@A)&Y&Y&YL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 80 96 80 112 112 64 64 64 48 64 80 64 96 96 128 128 128 48 80 80 80 96 96 112 112 112 64 80 80 80 96 112]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@G??0G??0G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8A??8@G<@@??@@??@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4434
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4435
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4436
down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4437
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4438
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4439
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4440
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4441
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4442
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4443
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4444
     self down22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4445
     ImageEditor openOnClass:self andSelector:#down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4446
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4447
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4448
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4449
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4450
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4451
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4452
	constantNamed:#'GenericToolbarIconLibrary class down22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4453
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4454
UUT@AUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4455
UT@*$AUPUV***%UPUU***UUPUUZ*)UUPUUV*%UUPUUU*UUUPUUUYUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@A?>@A?>@@?<@@_8@@O0@@G @@C@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4456
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4457
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4458
downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4459
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4460
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4462
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4463
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4464
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4465
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4466
     self downRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4467
     ImageEditor openOnClass:self andSelector:#downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4468
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4469
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4470
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4471
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4472
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4473
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4474
	constantNamed:#'GenericToolbarIconLibrary class downRight22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4475
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4476
UUUUUUUPP@EUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUT%UPR*UUT)UPR*UUT*UPR*P@@*%PR*****)P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4477
R******PR*****)PR*****%PQUUUU*UPUUUUT)UPUUUUT%UPUUUUTUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ L@_ N@_ O@_?? _??0_??8_??8_??0_?? @@O@@@N@@@L@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4478
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4479
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4480
editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4481
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4482
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4483
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4484
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4485
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4486
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4487
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4488
     self editor22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4489
     ImageEditor openOnClass:self andSelector:#editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4490
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4491
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4492
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4493
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4494
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4495
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4496
	constantNamed:#'GenericToolbarIconLibrary class editor22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4497
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4498
*******************************("H"H"H"H"J(@**"EUUU%UUUU@@^**HUUUVUUUU@@]:*(!!UUUYUUUT@A7**"FY&Y&Y&X@]7^**HUUUVUU@@]7\Z*(
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4499
!!UUUYU@@]7\R**"EUUU%T@A7]1J**HY&Y&XC]7\Q&**(!!UUU(3M7\Y&***"EUUU#L3L2QJ***HY&Z#L3L6)D***(!!&Y*L3L6Z$R***"EUUP3M&ZEQJ***HUU
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4500
RRY(UUUD***("*)J*****$R***"J)J******QJ***HUUUZUUUUUD***TQDQDQDQDQDR***************(b') ; colorMapFromArray:#[240 160 80 192 80 0 64 0 0 240 208 160 0 0 0 240 240 240 192 192 192 240 128 0 208 208 208 48 48 48 160 160 160]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G??LG??<G??<G??<G??<G??<G??<G??<G??8G??0G??0G??0G??0G??0G??0G??0G??0G??0O??0@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4501
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4502
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4503
font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4504
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4505
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4506
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4507
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4508
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4509
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4510
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4511
     self font22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4512
     ImageEditor openOnClass:self andSelector:#font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4513
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4514
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4515
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4516
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4517
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4518
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4519
	constantNamed:#'GenericToolbarIconLibrary class font22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4520
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4521
@@@@@@@@@@@@@@@@@@@@@!!X @@@@@@@!!X @@@6H@@@@@@DP6H@@@Y!!H@@@@@QDY"@@@BY"@@@@ADQBY"@@@FX @@@@@DQCX @@@6H@@@@@QEP6H@@@@ @@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4522
ADUDP @C@@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@ADT2@@@CH@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@QDT2@@@CH@@@@@QDQSH@@@@ @@@@@DQE
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4523
P @@@@@@@@@@@DQ@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 150 150 150 213 213 213 215 48 48 134 54 54 240 240 240]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G @OG0@O''<@O7>@O<?@A>? A?? A??@A<?@A<>@A<>@A<>@A=>@C?>@G<>@C<\@@8D@@H@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4524
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4525
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4526
forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4527
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4528
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4529
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4530
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4531
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4532
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4533
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4534
     self forward22x22_3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4535
     ImageEditor openOnClass:self andSelector:#forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4536
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4537
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4538
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4539
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4540
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4541
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4542
	constantNamed:#'GenericToolbarIconLibrary class forward22x22_3DIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4543
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4544
UUUUUUUPUUUUUUUPUUUUUUUPUUUQUUUPUUTJUUUPUUB*)UUPUP***%UPUQU*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5R*)UUPWUR*)UUPWWR*)UUPWUJ**UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4545
UUJ**UUPUT***%UPUT***%UPUR***)UPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C@@@O0@@?<@C??@C??@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@A?>@A?>@C??@A??@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4546
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4547
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4548
help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4549
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4550
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4551
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4552
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4553
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4554
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4555
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4556
     self help22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4557
     ImageEditor openOnClass:self andSelector:#help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4558
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4559
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4560
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4561
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4562
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4563
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4564
	constantNamed:#'GenericToolbarIconLibrary class help22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4565
	ifAbsentPut:[(Depth1Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O0A@_8@@?<@@8\C@8\A@@\@@@8@@A8@@C0@@G @@G@@@G@@@G@C@@@@@@@@@G@@@G@@@G@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 127 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O0@@_8@@?<@@8\@@8\@@@\@@@8@@A8@@C0@@G @@G@@@G@@@G@@@@@@@@@@@G@@@G@@@G@@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4566
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4567
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4568
home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4569
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4570
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4571
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4572
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4573
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4574
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4575
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4576
     self home22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4577
     ImageEditor openOnClass:self andSelector:#home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4578
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4579
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4580
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4581
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4582
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4583
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4584
	constantNamed:#'GenericToolbarIconLibrary class home22x22Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4585
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4586
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQH2DQ@@@@@@@@DQH4L!!DP@@@@@@DQH4QCHQD@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4587
DQH4QDP2DQ@@@@DQH4QDQDL!!DP@@DQH4QDQDQCHQD@D"H4QBH"ADP0@A@RH#QBH"H QC@@D@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MD
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4588
IUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 128 128 128 192 192 192 100 128 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4589
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4590
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4591
keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4592
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4593
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4594
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4595
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4596
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4597
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4598
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4599
     self keyboardMapping22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4600
     ImageEditor openOnClass:self andSelector:#keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4601
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4602
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4603
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4604
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4605
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4606
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4607
	constantNamed:#'GenericToolbarIconLibrary class keyboardMapping22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4608
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4609
@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@@@B%P@@@@@JUT@@@@@)TE@@H@BUTQP@@@ETTQ\@@@JTTU?@@@J$@W<@@@B)U_0@@@@*U?@@@@@J''<@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4610
@@B''0@@@@@@''@@@O@@@D@@@@@@@@@@@K@@@@@@@@@@@@@@@M@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 128 128 128 192 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@G@@@O @@_0@@?8@A?<@C?>@G??@G?? G??@C?>@A?<@@?8@@_0@@O @@G@@@B@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4611
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4612
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4613
languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4614
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4615
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4616
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4617
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4618
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4619
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4620
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4621
     self languages22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4622
     ImageEditor openOnClass:self andSelector:#languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4623
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4624
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4625
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4626
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4627
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4628
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4629
	constantNamed:'GenericToolbarIconLibrary class languages22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4630
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4631
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B (JB (@@@@@@@@F <O@@@@@@@@@@@ZJB (GA0\GA0(JB VE @@@@@@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4632
F" (JA0\GA0\GB (E!!X@@@@@@@@@@A((JA0\GA0\GA0\JA(Z@@@@@@@@@@@ZJB \GA0\GA0\GB (J@@@@@@@@@@@F" (@@X\G@X@GA0(JB B@@@@@@@@@A((
3718
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  4633
J@@FB0,F@@(J@@(J@ @@@@@@@@@ZJB @@@XFB0X@@@TEAPTE@@@@@@@@F" (@ALFA!!4S@0LBAPTEB@@@@@@@@AT@@@@]H2L#GP8QDQLSG2@WE0$@@@@U@@@@
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  4634
GQ<_G1<QDQDSD1<_E1\I@@@@A@@@@AL]GRLSD!!HMF1,_G1<_BP@@@@@@@@@SFQ$YFRT%EALSHRP^G $@@@@@@@@@D1$"H"H%IQPSD2D$G"HI@@@@@@@@@AP"
78056f301c44 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3700
diff changeset
  4635
H!!$"H"H"H"H"H"H"A0@@@@@@@@@PFA LA2H"CBH"I!!$"H 0@@@@@@@@@C@0L@@@GA00GA00LA0\@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4636
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 32 32 32 48 48 48 49 48 49 54 54 54 69 69 69 75 67 22 82 82 82 85 14 14 89 89 89 105 105 105 106 88 25 110 19 19 113 19 19 131 129 131 134 122 39 149 25 25 149 26 26 158 27 27 158 140 45 164 161 164 164 161 172 165 43 43 177 161 52 196 175 0 197 194 197 204 36 36 204 75 75 205 36 36 205 113 38 212 66 66 216 81 81 223 72 72 227 202 66 231 120 120 231 123 123 255 129 0 255 238 162 255 251 229 255 255 255]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@O \@??>@??>@??>@??>@???0???0???0???8???8???8???89??81??81??81??81??8A9?0A@@@A@@@A@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4637
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4638
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4639
left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4640
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4641
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4642
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4643
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4644
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4645
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4646
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4647
     self left22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4648
     ImageEditor openOnClass:self andSelector:#left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4649
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4650
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4651
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4652
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4653
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4654
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4655
	constantNamed:#'GenericToolbarIconLibrary class left22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4656
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4657
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUTUUUUUPURUUUUUPUJUUUUUPT*P@@@@PR******PJ******P*******PZ******PV*UUUUUPU*UUUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4658
UZUUUUUPUVUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@A @@C @@G @@O??<_??<???<???<_??<O??<G @@C @@A @@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4659
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4660
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4661
leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4662
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4663
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4664
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4665
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4666
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4667
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4668
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4669
     self leftDown22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4670
     ImageEditor openOnClass:self andSelector:#leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4671
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4672
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4673
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4674
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4675
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4676
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4677
	constantNamed:#'GenericToolbarIconLibrary class leftDown22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4678
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4679
UUUUUUUPU@@@@@@PUJ****)PUJ****)PUJ****)PUJ****)PUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUP@J*@UUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4680
***)UUUPZ**%UUUPV**UUUUPU*)UUUUPUZ%UUUUPUVUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G8@@G8@@G8@@G8@@G8@@G8@@G8@@??@@??@@_>@@O<@@G8@@C0@@A @@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4681
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4682
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4683
load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4684
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4685
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4686
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4687
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4688
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4689
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4690
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4691
     self load22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4692
     ImageEditor openOnClass:self andSelector:#load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4693
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4694
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4695
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4696
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4697
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4698
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4699
	constantNamed:#'GenericToolbarIconLibrary class load22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4700
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4701
UUUUUUUPUUUUU?UPUUUUW*5PU???>*/PU:****)PUUUUUUZPP@@@@@EPS?????&PS?????%PS?????&PS?????%PT?????9PT?????9PT?????9PT?????9P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4702
T?????9PT?????9PUO????>PUO????>PUO????>PU:*****PUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4703
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4704
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4705
loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4706
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4707
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4708
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4709
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4710
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4711
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4712
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4713
     self loadFromMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4714
     ImageEditor openOnClass:self andSelector:#loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4715
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4716
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4717
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4718
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4719
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4720
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4721
	constantNamed:#'GenericToolbarIconLibrary class loadFromMethod22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4722
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4723
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4724
L3L3L3L3L2DQDCL:(3L3N*L3HRDPL3**(3N*(3L!!DQDCL:*#N*N*L3HQDPL3**(:L:(3L!!DQ@3N*N*(3*#L2DQDCL:(3(3N*L3HQDPL3*#L3L:(3L!!DQ@3N*
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4725
L3L3*#L2DQDPL3*#L3N*(3L!!DQ@3N*L3L3*#L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 255 0 0 255 255 0 0 255 0 0 0 255 0 255 255 255 0 255 127 127 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4726
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4727
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4728
loadImage22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4729
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4730
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4731
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4732
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4733
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4734
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4735
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4736
     self loadImage22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4737
     ImageEditor openOnClass:self andSelector:#loadImage22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4738
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4739
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4740
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4741
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4742
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4743
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4744
	constantNamed:#'GenericToolbarIconLibrary class loadImage22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4745
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4746
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4747
L3L3L3L3L2DQDCMDY''\3L3L3HRDPL4Q&]3L3L3L!!DQDCMU&X 3L3L3HQDPL5VY"CL3L3L!!DQ@3QFY7L3L3L2DQDCMDY''\3L3L3HQDPL5VY"CL3L3L!!DQ@3UY
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4748
&HL3L3L2DQDPL4Q&]3L3L3L!!DQ@3QFY7L3L3L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 255 0 0 255 255 0 0 255 0 0 0 255 0 255 255 255 0 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4749
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4750
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4751
make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4752
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4753
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4754
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4755
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4756
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4757
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4758
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4759
     self make22x22Icon1 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4760
     ImageEditor openOnClass:self andSelector:#make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4761
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4762
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4763
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4764
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4765
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4766
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4767
	constantNamed:#'GenericToolbarIconLibrary class make22x22Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4768
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4769
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FA @@@@@@@@@@@@@@@@@@A XF@@@FB (F@@@@A X@@@@@@@@@A (JB XFB (JB XFAP(GA @@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4770
@@XJB (JB (JB (JB (JA0X@@@@@@@@A@P(JB (JB (JB (JA0TE@@@@@@XFA XFB (JA0TA@P(JB TEA XF@@XGB (JB (JA0TA@@@AB (JB (JB XFB (J
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4771
B (JB \AAP\A@P(JB (JB (E@PXFA (JB (JAPTEAP\JB (EAPTE@PDA@PDFB (JB (JB (JB (EAPDA@PDA@PDFB (JB (JB (JB (JB \E@PDA@@DFB (J
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4772
B (JB (JB (JB (JB XA@@@BA@(JB HBB (JB (DA@PJB (F@@@@@@DGA0DA@PXJB (F@PDAA XF@P@@@@@A@PDA@PDFB (JA DA@PDA@PD@@@@@@PDA@PDA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4773
A \JA0XA@@DA@PDA@@@@@@@A@PD@@@DFA XA@@@@@PDA@@@@@@@@@@@@@@@A@PDA@P@@@@@@@@@@@@@@@@@@@@@@@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@A
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4774
@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 48 48 48 56 59 56 64 68 64 88 92 88 128 128 128 160 160 160 192 192 192 216 219 216 239 244 239 248 252 248]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@C@@C''#@G?? G?? G?? _??8???<???<???<???<???<_??8_??0O??0O??0O?70GO# @O @@O @@G@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4775
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4776
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4777
make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4778
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4779
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4780
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4781
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4782
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4783
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4784
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4785
     self make22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4786
     ImageEditor openOnClass:self andSelector:#make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4787
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4788
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4789
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4790
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4791
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4792
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4793
	constantNamed:#'GenericToolbarIconLibrary class make22x22Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4794
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4795
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4796
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0KC 0KC@@@@@@@@@@@@@@@@@@NC@,NB00LB00KC@0@@@@@@@@@@@@@C 8NC@0NC 0LC 0L@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4797
@@@@C@8NC@0NC 0@@@@@@@@@@@@@@@8NC 8NC@@@C@0NC 0L@@@@@@@@@@@MCP@NC 8@@@8NC@@NC @@@@@@@@@@CP@MC 8NC 8NC@8N@@8@@@@@@@@@@@@L
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4798
CP8NC 8NC 8NC 4@@@@@@@@@@@@@C@4@C @NC @M@@8M@@@@@@@@@@@@@@0@C@4@C 8@CP4@CP@@@@@@@@@@@@@@@@0M@@4M@@4M@@@@@@@@@@@@@@@@@@@L
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4799
CP@NC @MCP@@@@@@@@@@@@@@@@@@@@@@C 8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4800
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 48 48 48 56 59 56 64 68 64 88 92 88 128 128 128 160 160 160 192 192 192 216 219 216 239 244 239 248 252 248 88 88 88 184 252 248 0 128 128 0 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@O0@A?>@C??@C??@C??@G?? G?? G?? G?? C??@C??@C??@@?<@@?<@@G @@@@@@@@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4801
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  4802
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4803
memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4804
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4805
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4806
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4807
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4808
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4809
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4810
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4811
     self memory22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4812
     ImageEditor openOnClass:self andSelector:#memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4813
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4814
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4815
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4816
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4817
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4818
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4819
	constantNamed:#'GenericToolbarIconLibrary class memory22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4820
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4821
@@@@@@@@@@@@@@@@@@@@@@?0@@@@@@@@@@@L;8;!!0@@@@@@@@@VL0W\,@@@@@@@L<T,W]43@@@@@@I,"8Z(R-10@@@@I<,,Z**Q78P@@@L24DZ****E0H@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4822
<,EM7Z**E00P@LTR9M7]7ZE0H50@=RE0C]7]E0BF?0<,E0@@C]Q0HREPBK-0@@@@Q0T?H\@KTA4@@@^-4_=\@@H A@@@^ JOG<@@@ID@P@^ GE3O@@@@AP@D
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4823
R EO:O0@@@@@T@4PT%3,@@@@@@@E4G_58%@@@@@@@@AZ\QGL0@@@@@@@@@@@1<@@@@@@@@@@@@@D@@@@@@@b') ; colorMapFromArray:#[0 0 0 80 80 80 160 160 160 240 240 240 64 64 64 144 144 144 224 224 224 48 48 48 128 128 128 208 208 208 32 32 32 112 112 112 192 192 192 16 16 16 96 96 96 176 176 176]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A @@G>@@G?@@_? @??0A??0C??8C??8O??<O??<_??8_??8_??0_?? O??@G??@C?<@A?8@@?8@@C @@A@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4824
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4825
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4826
new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4827
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4828
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4829
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4830
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4831
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4832
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4833
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4834
     self new22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4835
     ImageEditor openOnClass:self andSelector:#new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4836
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4837
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4838
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4839
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4840
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4841
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4842
	constantNamed:#'GenericToolbarIconLibrary class new22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4843
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4844
@@@@@@@@AUUUUP@@A????2@@A????2 @A????0@@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4845
A?????8@A?????8@A?????8@A?????8@A?????8@C*****(@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?>@_??@_?? _??0_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4846
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4847
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4848
newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4849
    "This resource specification was automatically generated
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4850
     by the ImageEditor of ST/X."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4851
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4852
    "Do not manually edit this!! If it is corrupted,
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4853
     the ImageEditor may not be able to read the specification."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4854
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4855
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4856
     self newMenuItem22x22Icon inspect
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4857
     ImageEditor openOnClass:self andSelector:#newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4858
     Icon flushCachedIcons
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4859
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4860
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4861
    <resource: #image>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4862
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4863
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4864
	constantNamed:#'GenericToolbarIconLibrary class newMenuItem22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  4865
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4866
@@@@@@@@@@@@@@@@@@@ADP@@@@@@@@@CL3L3@@@@@@@@@@L3L3L@@@@@@@@@@@@@@@@H@@ @B@@QDQDQDQFAFAJ@@AL3L3L3L3 8N@@@D3L3L3L3L8"B@@@S
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4867
L3L3L3"H"H"H@AL3L3L3L3NH  @@D3L3L3L3NC 8@@@2H"H"H"JBJBJ@@@@@@@@@B@@H@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4868
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@_??<_??8_??8_??8_??<_??8_??8_??8_??<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4869
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  4870
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4871
openBreakpointBrowser22x22Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4872
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4873
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4874
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4875
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4876
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4877
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4878
    "
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4879
     self openBreakpointBrowser22x22Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4880
     ImageEditor openOnClass:self andSelector:#openBreakpointBrowser22x22Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4881
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4882
    "
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4883
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4884
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4885
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4886
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4887
        constantNamed:'GenericToolbarIconLibrary class openBreakpointBrowser22x22Icon'
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4888
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4889
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4890
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CDGAP(VF3\@@@@@@@@@@@@@@@@@@@4XMS4>N3@YD4TFA @@@@@@@@@@@A1FP$H@S4=OS1(JQT8F@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4891
@A5BP D_G4=OS4=OL@]NS X@@@@@@CL/P$=O@T=OS4=OS4H0H49NA @@@@@%NT=OS1=OS4=OS4=OL@QNS X@@@@@GS9OS4<_S4=OS4=OS4PI@@@@@@@@@A5D
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4892
S4=OS4=OS4=OS4=DC49NA @@@@@]O!!<_G1<A@PDA@PDAQ@=NA X@@@@@G#YOS4=OS4=OS4=OS4PEA @@@@@@@CH''S4=OG4=OS4=OS4<4C@@@@@@@@@@@DSAO
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4893
S0EOS4=OS4=BC$T@@@@@@@@@@ATQM!!<AG1=OS4=BIB0@@@@@@@AVSTDTBAD(N$IBP#P4IB4@@@@@@@AUT5I@D @@E ,PE2X$K#0@@@@@@@AUUEIIJ"H@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4894
@@@@@@@@@@@@@@@@UEIIJ2D@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 64 64 64 64 64 64 127 127 127 127 127 175 127 128 175 128 0 0 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 160 64 64 160 64 64 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 161 161 165 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 192 192 208 192 239 255 192 240 255 194 194 194 207 143 95 207 207 191 207 223 239 207 239 240 207 255 255 208 208 223 208 224 239 208 255 255 217 217 217 223 128 63 223 255 255 239 239 240 239 255 255 240 207 144 255 0 0 255 64 64 255 64 64 255 64 64 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@O? @_?0@??8Q??<O??<C??<C??<O??<S??<C??8C??0A?? A??XO?? _O<@?@@@>@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4895
!
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4896
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4897
openBreakpointBrowserIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  4898
    <resource:#programImage>
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4899
    ^ self openBreakpointBrowser22x22Icon
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4900
!
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  4901
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4902
paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4903
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4904
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4905
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4906
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4907
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4908
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4909
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4910
     self paste22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4911
     ImageEditor openOnClass:self andSelector:#paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4912
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4913
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4914
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4915
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4916
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4917
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4918
	constantNamed:#'GenericToolbarIconLibrary class paste22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4919
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4920
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4921
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4922
L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@@@@@@L"H"H"H"H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<???<???<???<???<???<??8@??8@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4923
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4924
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4925
pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4926
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4927
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4928
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4929
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4930
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4931
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4932
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4933
     self pasteMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4934
     ImageEditor openOnClass:self andSelector:#pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4935
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4936
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4937
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4938
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4939
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4940
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4941
	constantNamed:#'GenericToolbarIconLibrary class pasteMenuItem22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4942
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4943
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4944
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@CH"H"H"H"@QDQD@@@@@@@@@@ADQDP@@@@@QDQDQDQDQ@@@@@A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4945
DQDQDQDQD@@@@@DQDQDQDQDP@@@@@QDQDQDQDQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<@??<@??<@??<@??<@??<@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4946
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4947
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4948
printer22x22Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  4949
    <resource:#programImage>
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4950
    ^ self printer22x22Icon1
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4951
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4952
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4953
printer22x22Icon1
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4954
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4955
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4956
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4957
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4958
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4959
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4960
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4961
     self printer22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4962
     ImageEditor openOnClass:self andSelector:#printer22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4963
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4964
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4965
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4966
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4967
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4968
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4969
	constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4970
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4971
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@@@@@@@@@@D@@@@@@@@@@@@@@@@A@@@@@@@@@@@A@@@A@PDA@@@A@PD@@P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4972
@@@A@@@@@@@@@@@@@@@@@P@@@@@@@@@@@P@A@PD@@PD@@PD@@PDA@P@@@@@@@P@@@@@@@@@@@@@@@@DD@PPA@@@@@PDA@PDA@PDA@PDA@PDD@PPA@P@@@PPD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4973
A@PDA@PDA@PDA@PD@PPAAPD@@@DA@PDA@PDA@PDA@PDA@PDAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTE@P@@@PTEAPTEAPTEAPTB@ HEAPDEAPD@@@DEAPTE
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4974
APTEAPTE@ HBAPTAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTA@@@@@PTEAPTEAPTEAPTEAPTEAPDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4975
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4976
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 255 0 129 129 129 194 194 194 105 133 190]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4977
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4978
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4979
printer22x22Icon2
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4980
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4981
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4982
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4983
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4984
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4985
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4986
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4987
     self defaultIcon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4988
     ImageEditor openOnClass:self andSelector:#defaultIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4989
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4990
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4991
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4992
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4993
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4994
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4995
	constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  4996
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4997
QDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ@@@@@@@@@ADQDQ@QDQDQDQDADQDQDAD@@AD@@PDQDQD
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4998
ADQDQDQDPDQDQDPD@@P@P@P@@DQDPDQDQDQDQ@DAADP@@@@@@@@@DA@DPADQDQDQDQDA@0Q@@@@@@@@@@@@3AD@3L3L3L2H#LCADPCL3L3L3H"L0ADQ@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  4999
@@@@@@ADQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[0 0 0 194 194 194 255 255 0 105 133 190 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5000
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5001
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5002
reload22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5003
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5004
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5005
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5006
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5007
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5008
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5009
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5010
     self reload22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5011
     ImageEditor openOnClass:self andSelector:#reload22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5012
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5013
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5014
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5015
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5016
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5017
	constantNamed:#'GenericToolbarIconLibrary class reload22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5018
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5019
@@@@@@@@@@@UT@@@@@EU@D@@@@UT@@@H@AUP@@@@@EU@@@@@@EU@@@@E@EU@@@@@@EU@@@@@AUUT@@@@@UUP@@@@@EU@@@@@@AT@@@@@@@P@@@@H@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5020
@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@G@@@@@@@J@@@@@@@I@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 129 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G<C@_?C@??#A?C3C>@;G<@KG<@CG<@C??$C_?NCO>_CG<?#C9?3A3?;@''??@@?#P@?C\A?COC>CG?<CC?8C@? C') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5021
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5022
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5023
removeTab22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5024
    "This resource specification was automatically generated
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5025
     by the ImageEditor of ST/X."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5026
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5027
    "Do not manually edit this!! If it is corrupted,
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5028
     the ImageEditor may not be able to read the specification."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5029
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5030
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5031
     self close22x22Icon inspect
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5032
     ImageEditor openOnClass:self andSelector:#close22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5033
     Icon flushCachedIcons
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5034
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5035
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5036
    <resource: #image>
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5037
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5038
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5039
	constantNamed:#'GenericToolbarIconLibrary class removeTab22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5040
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5041
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5042
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5043
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5044
@@@B@ H@@ HB@@@@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@A@@@@@@@B@ H@@@@@@@HB@ @@@@@@@@@@@@@B@ H@@@@@@@@@@ HB@@@@@@@@@@@@@ H@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5045
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5046
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5047
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5048
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5049
right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5050
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5051
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5052
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5053
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5054
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5055
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5056
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5057
     self right22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5058
     ImageEditor openOnClass:self andSelector:#right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5059
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5060
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5061
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5062
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5063
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5064
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5065
	constantNamed:#'GenericToolbarIconLibrary class right22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5066
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5067
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUIUPUUUUUJUPUUUUUJ%P@@@@@J)PJ******PJ****** J******PJ*****)PEUUUUZ%PUUUUUJUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5068
UUUUUIUPUUUUUEUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@F@@@G@@@G ???0???8???<???<???8???0@@G @@G@@@F@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5069
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5070
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5071
save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5072
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5073
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5074
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5075
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5076
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5077
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5078
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5079
     self save22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5080
     ImageEditor openOnClass:self andSelector:#save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5081
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5082
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5083
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5084
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5085
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5086
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5087
	constantNamed:#'GenericToolbarIconLibrary class save22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5088
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5089
AL3L3L@PM3L3L0?PML3L3L=PM3L3L0=PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM@@@@@?PO??????PO??????PO??????P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5090
O=UUUU?PO=???[?PO=5O?Z?PO=6O?Z?PO=6O?Z?PO=0O?Z?P5U***U5P') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5091
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5092
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5093
saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5094
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5095
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5096
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5097
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5098
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5099
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5100
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5101
     self saveAsMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5102
     ImageEditor openOnClass:self andSelector:#saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5103
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5104
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5105
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5106
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5107
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5108
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5109
	constantNamed:#'GenericToolbarIconLibrary class saveAsMethod22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5110
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5111
@A@0LC@0LC@0@@DCD0LC@0LC@0@3LPLPLD@0LCP0LCLQ@1LCQ@LCQ@L@L1DCDCADPCQDLC@3LPLS@4QDQDPC@CL1@1@0QCQ@QC@0L3DCD0MD@0MD@0@3LPLP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5112
LDP0LDP0LCL1@1LCQ@LCQ@L@L3DCDC@0LC@0LC@3LPLP@@@@@@@@@CL1@3L3L3L3L3L3L3DCL3L3L3L3L3L3LPL3L3L3L3L3L3L1@3L1DQDQDQDQL3DCL3D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5113
L3L3LRL3LPL3LSDPL3L1H#L1@3L1LR@3L3D"L3DCL3D1HCL3LRH3LPL3LS@@L3L1H#L1LQDQH"H"H"DQLQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 127 127 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5114
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5115
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5116
start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5117
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5118
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5119
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5120
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5121
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5122
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5123
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5124
     self start22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5125
     ImageEditor openOnClass:self andSelector:#start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5126
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5127
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5128
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5129
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5130
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5131
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5132
	constantNamed:#'GenericToolbarIconLibrary class start22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5133
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5134
@@@@@@@@@@@@@@@@@N8@@@@@@@@@@@@N<^@@@@@@@@@@@@;.;.;.;.@@@@@@C/G @@@@8^@@@@@N<^@@@@@A@@@@@@;18@@@@@D@@@@@C.;.;.; @P@@@@@N
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5135
<^@@@@@@@@@@@@;18@@@C!!G.@@@@C/G @@@@G>@@@@@N;.;.; @_8@@@@@;18@@@@A? @@@@C/G @@@@G>@@@@@N<^@@@@@_8@@@@@;.;.;.@A? @@@@C/G
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5136
@@@@G>@@@@@N<^@@@@@_8@@@@@;18@@@@@@@@@@@C.; @@@@DQ@@@@C ; 8@@@A&X@@@C 8@8N@@@"H"@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5137
@@@AC@DAG DAG?<@G N@G N@G N@G?.@G N@G _@G _@G?_@G _@G _@G _@G?_@G ? G!!?0G!!?0G!!.PKQNPT(_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5138
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5139
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5140
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5141
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5142
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5143
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5144
4292
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5145
startNewSystemBrowserIcon22x22
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5146
    "This resource specification was automatically generated
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5147
     by the ImageEditor of ST/X."
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5148
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5149
    "Do not manually edit this!! If it is corrupted,
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5150
     the ImageEditor may not be able to read the specification."
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5151
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5152
    "
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5153
     self startNewSystemBrowserIcon22x22 inspect
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5154
     ImageEditor openOnClass:self andSelector:#startNewSystemBrowserIcon22x22
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5155
     Icon flushCachedIcons
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5156
    "
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5157
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5158
    <resource: #image>
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5159
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5160
    ^Icon
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5161
        constantNamed:'XPToolbarIconLibrary class startNewSystemBrowserIcon22x22'
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5162
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5163
NP(JB (JB (JB (9@@@@@@@@@@@@@@*Q$YFQ$YFQ$YFQB @@@@@@@@@@@@@J$V1,[F1,[F1,[@(@@@@@@@@@@@@@B)E,[F1,[F1,[F0J@@@@@@@@@@@@@@*Q
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5164
[F1,[F1,[F1,B @@@@@@@@@@@@@JNQHRD!!HRD!!HRD (@@@@@@@@@@@@@NP(JB (JB (JB (9@@@@@@@@@@@@@@@@@@@@@@@@QATTIR)P@@@@@@@@@@@@@@@@
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5165
@@@@F2]HVEQ@JBI''@@@@@@@@@@@@@@@@J6&Q XFA UT)FF\JB (JB @@@@@@KFI[B0,H@ LGA TU_9FQ$S$@@@@@L5I1V0,CB@XMCPXMAQLA@PDR@@@@@B1Y
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5166
VT8KB@4NC 8NCPTW@PDAD @@@@@,Y$-CB0XMC0<OC08EGQHRD!!H@@@@@KE%UP0,LC!!DQDQ@OAQ4JB (J@@@@@B5IVT4KB0,KB0,KB0,T@@@@@@@@@@AEMU%M
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5167
B0,KB0,KB0-GF (JB (@@@@@@A=@ST5MS$9NS$9+GF^Q$YD9@@@@@@@$G4%&Y&)1]XV@L#1/[6=/D @@$HI]H1X_M%M&Z&MQL#6B[6=/[1H@#86LWBD@@BTY
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5168
G#P2O%^B[6=/[6<R@@BL[P@@@@@@@@@/K1HRD!!HRD!!HRD @a') ; colorMapFromArray:#[0 0 0 32 223 32 40 255 124 50 255 112 51 255 109 54 229 139 62 255 87 62 255 88 62 255 91 62 255 136 64 64 64 73 255 115 83 255 62 91 255 73 94 255 74 101 255 84 105 255 85 112 255 96 127 127 127 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 143 175 208 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 159 192 239 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 160 208 255 160 223 255 170 170 170 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 175 223 255 176 175 207 176 176 176 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 176 223 255 176 224 255 176 239 255 183 183 183 190 190 190 191 175 143 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 239 255 191 240 255 192 192 208 192 239 255 192 240 255 192 255 255 196 196 196 207 143 95 207 207 191 207 207 207 207 207 208 207 207 223 207 208 223 207 223 239 207 239 240 207 239 255 207 240 255 207 255 255 208 208 223 208 208 224 208 224 239 208 255 255 217 217 217 223 32 32 223 128 63 223 192 255 223 223 32 223 223 224 223 255 255 224 224 224 224 224 239 224 239 240 224 255 255 231 207 255 231 208 255 238 191 255 238 192 255 239 159 232 239 191 255 239 223 255 239 224 255 239 239 224 239 239 239 239 239 240 239 255 255 240 207 144 240 239 223 240 240 239 240 255 255 246 176 255 247 175 255 247 207 255 247 239 255 254 160 255 254 191 255 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??@@??@@??@@??@@??@@??@@??@@@O0@@_<@@??<A??<C??<C??<C??<C??<C??@C??<A??<A??<O??<_O?<LA?<') ; yourself); yourself]
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5169
!
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  5170
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5171
stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5172
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5173
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5174
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5175
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5176
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5177
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5178
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5179
     self stop22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5180
     ImageEditor openOnClass:self andSelector:#stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5181
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5182
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5183
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5184
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5185
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5186
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5187
	constantNamed:#'GenericToolbarIconLibrary class stop22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5188
	ifAbsentPut:[(Depth1Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A?>@A?>@A?>@A?>@A?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 0 0 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@?<@A?>@C??@G?? O??0_??8_??8_??8_??8_??8_??8_??8_??8_??8O??0G?? C??@A?>@@?<@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5189
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5190
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5191
up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5192
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5193
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5194
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5195
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5196
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5197
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5198
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5199
     self up22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5200
     ImageEditor openOnClass:self andSelector:#up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5201
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5202
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5203
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5204
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5205
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5206
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5207
	constantNamed:#'GenericToolbarIconLibrary class up22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5208
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5209
UUURUUUPUUUJ%UUPUUT*)UUPUUR**UUPUUJ**%UPUT***)UPUVU*%UUPUUT*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5T*%UUPWUT*%UUPWWT*%UUPWUT*%UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5210
UUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUTUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@C@@@G @@O0@@_8@@?<@A?>@A?>@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5211
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5212
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5213
upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5214
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5215
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5216
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5217
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5218
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5219
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5220
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5221
     self upRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5222
     ImageEditor openOnClass:self andSelector:#upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5223
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5224
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5225
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5226
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5227
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5228
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5229
	constantNamed:#'GenericToolbarIconLibrary class upRight22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5230
	ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5231
UUUUT%UPUUUUT)UPUUUUT*UPP@@@@*%PR*****)PR******PR*****)PR*****%PR*UUU*UPR*UUT)UPR*UUT%UPR*UUTUUPR*UUUUUPR*UUUUUPR*UUUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5232
R*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPYU%UUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@L@@@N@@@O@_?? _??0_??8_??8_??0_?? _ O@_ N@_ L@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5233
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5234
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5235
!GenericToolbarIconLibrary class methodsFor:'image specs-24x24'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5236
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5237
baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5238
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5239
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5240
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5241
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5242
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5243
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5244
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5245
     self baseImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5246
     ImageEditor openOnClass:self andSelector:#baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5247
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5248
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5249
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5250
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5251
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5252
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5253
	constantNamed:#'GenericToolbarIconLibrary class baseImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5254
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5255
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5256
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5257
A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XF@@@@BY&H!!DQ&Y&XF@@@@BY&H!!DQ&Y&XF@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5258
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5259
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5260
    "Modified: / 06-02-2007 / 19:41:08 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5261
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5262
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5263
baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5264
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5265
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5266
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5267
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5268
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5269
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5270
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5271
     self baseMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5272
     ImageEditor openOnClass:self andSelector:#baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5273
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5274
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5275
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5276
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5277
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5278
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5279
	constantNamed:#'GenericToolbarIconLibrary class baseMenu24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5280
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5281
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5282
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5283
@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R]2I7H'']2TE@@@@@RH"H"H"H"TE@@@@AUUUUUUUUUTE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5284
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5285
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5286
    "Modified: / 06-02-2007 / 19:41:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5287
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5288
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5289
baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5290
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5291
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5292
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5293
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5294
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5295
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5296
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5297
     self baseWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5298
     ImageEditor openOnClass:self andSelector:#baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5299
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5300
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5302
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5303
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5304
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5305
	constantNamed:#'GenericToolbarIconLibrary class baseWindowSpec24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5306
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5307
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5308
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5309
AUUUT T"H%H@@@@@ARH"T T"H%H@@@@@ARH"T T"H%H@@@@@AUUUT UUUUH@@@@@@"H"H H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5310
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5311
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5312
    "Modified: / 06-02-2007 / 19:41:03 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5313
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5315
bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5316
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5317
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5318
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5319
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5320
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5321
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5322
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5323
     self bugReporter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5324
     ImageEditor openOnClass:self andSelector:#bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5325
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5326
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5328
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5329
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5330
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5331
	constantNamed:#'GenericToolbarIconLibrary class bugReporter24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5332
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5333
@@@@@@@@@@@@@@@@@@@@@QDQDQDQDP@@@@@@@@@@@@@@@P@@@@@ADQDQDQDQ@P@@@@@@@@@@@@@A@P@@@@QDQDQDQDPA@P@@@@@@@@@@@@PA@P@@ADQDQDP@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5334
Q@PA@@@@AADQQ@QD@@P@@@@@ADQDQD@DP@@@@@@@ADEAPTPD@BH"H @@ADPTD@P@H"L3L2@@ADEA@"@"H3L3L3H@@@@BH3LBL3L3L3L @@@BH3LBL3L3L3L
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5335
@@@@H3L@@@@@@@@@@@@BH3LBH3L3L3L @@@@H#HBH#L3L3H @@@@@@@@H"H"H"@@@@@@@@@@@@H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5336
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 170 170 170 128 0 0 255 0 0 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@??8@??8C??8C??8O??8O??8???8???8???<???0???8???<???>???>???>A??>_??>O??>@[?<@B?8@F_0@H1,@C@0@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5337
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5338
    "Modified: / 06-02-2007 / 19:41:01 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5339
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5340
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5341
changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5342
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5343
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5344
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5345
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5346
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5347
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5348
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5349
     self changesBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5350
     ImageEditor openOnClass:self andSelector:#changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5351
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5352
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5354
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5355
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5356
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5357
	constantNamed:#'GenericToolbarIconLibrary class changesBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5358
	ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5359
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C????@@@@@@@C@@@????3@@@@@@@3@@EUUUT3@@@@@@D3@AUUUUD3@A?5UUD0@AUUUUD0@A]7UUD@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5360
AW]7UD@@A]7]U@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<A??<A??<G??<G??<_??<_??<_??<_??0_??0_??@_??@_?<@_?<@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5361
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5362
    "Modified: / 06-02-2007 / 19:40:59 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5363
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5364
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5365
class24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5366
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5367
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5368
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5369
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5370
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5371
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5372
    "
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5373
     self class24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5374
     ImageEditor openOnClass:self andSelector:#class24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5375
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5376
    "
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5377
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5378
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5379
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5380
    ^Icon
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5381
        constantNamed:'GenericToolbarIconLibrary class24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5382
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5383
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5384
DQDQDQDQDQDQDQDQDQDQDQDQDQDQL"H"H"H"LQDQDQDQIDQDQDQCHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQH1DQDQDQHQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5385
DQDQL"H"H"H"LQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5386
DQDQDQDQDQDQDQDQDQDQDQDQ') ; colorMapFromArray:#[32 223 32 127 127 127 64 64 64 170 170 170 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?? @?? @?? @?? @?? @?? @?? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5387
!
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5388
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5389
dart24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5390
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5391
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5392
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5393
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5394
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5395
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5396
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5397
     self dart24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5398
     ImageEditor openOnClass:self andSelector:#dart24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5399
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5400
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5401
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5402
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5403
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5404
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5405
        constantNamed:'GenericToolbarIconLibrary dart24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5406
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5407
@@@@@@@@@@@@@@@A@ L@@@@@@@@@@@@@@@@@@@@@@@@@@@PEA XG@@@@@@@@@@@@@@@@@@@@@@@HBPXJB0,JC@@@@@@@@@@@@@@@@@@@@@4NC0XKB0,KA L@
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5408
@@@@@@@@@@@@@@@@D@(JB0,KB0,KDP<R@@@@@@@@@@@@@@@SEATVEQTUE!!TUEQ\XFP@@@@@@@@@@@A([GA4^G!!8^G!!8^G!!8^G2@@@@@@@@@@@BD"H2P^IRT%
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5409
IRT%IRT%I"\(@@@@@@@@JRD"B0,$G"T%IRT%IRT%IR(+K@@@@@@-K"T"B0,KIA8%IRT%IRT%IR<*J" @@@@!!IRT0H0,KB2P^IRT%IRT%IRX*J"\1@CH.IRT"
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5410
B0,KB0,$G"T%IRT%IRT*J"(3MBT%IQ8"B0,KB0,KIA8%IRT%IRT/J2(,MRT%IQ8"B0,KB0,KB2P^IRT%IRT.J"(3@CX.IQ8"H0,KB0,KB0,$G"T%IRT%J"(3
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5411
@@@7HRT"B0,KB0,KB0,KIA8%IRT%K2,3@@@@NC$"B0XKB0,KB0,KB2P^IRT%K"(3@@@@@B4:B XFA ,KB0,FB0,$G"T%IR(,@@@@@@@;OC4QA XFA XKA ,K
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5412
O!!8%K"(*@@@@@@@@O1@POC4QA XKB0XKB38^J$AA@@@@@@@@@@$PBP$PODHFA XKA )CQDT@@@@@@@@@@@@IDA@PBP%FATHFQ4!!I@@@@@@@@@@@@@@@@BQ@P
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5413
DA@IBP$RDA@;@@@@@@@@@@@@@@@@@D(PDA@PDA@ID@$@@@@@') ; colorMapFromArray:#[0 0 0 176 216 240 48 208 200 15 216 184 144 216 224 48 216 200 0 208 184 31 216 200 191 216 240 95 216 208 0 216 184 0 208 176 16 216 184 143 216 224 32 216 200 0 224 200 80 216 208 15 208 184 79 216 200 47 176 200 0 168 208 0 152 200 0 152 184 0 160 200 16 168 200 112 192 240 95 160 216 0 192 208 15 168 184 0 112 200 0 120 200 0 160 240 31 176 240 0 128 208 0 184 184 0 216 176 0 160 184 0 128 200 0 144 208 0 168 240 15 168 240 32 144 208 0 160 224 0 168 224 15 168 224 95 168 216 0 136 208 0 152 216 0 176 184 16 168 224 47 144 208 15 160 224 47 152 208 15 128 200 31 136 208 16 136 208 16 144 208 0 136 216 31 184 200 160 224 224 63 216 200 32 208 184 0 168 184 111 216 208 0 176 240 31 168 224 31 208 184 15 176 200 79 184 224 143 208 240 79 216 208 16 208 184 47 216 200 112 224 216 96 216 208]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A0@@C8@@O<@@_>@@??@A?? C??0C??8G??<O??>O???_???????????_???O???G???C???A???@???@_?>@O?8@G?8@C?0') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5414
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  5415
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5416
deleteClass24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5417
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5418
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5419
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5420
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5421
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5422
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5423
    "
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5424
     self deleteClass24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5425
     ImageEditor openOnClass:self andSelector:#deleteClass24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5426
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5427
    "
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5428
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5429
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5430
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5431
    ^Icon
4531
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  5432
        constantNamed:'VistaToolbarIconLibrary deleteClass24x24Icon'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5433
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5434
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH @@@@@B@@@@@@@BH"@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5435
@@H @@@@@@@@H"H@@BH@@@@@@@@@E"H&X"Y&D@@@@@@@X@H"H @AX@@@@@@@XDP"IDQCX@@@@@@@XDH"H$QCX@@@@@@@XBH$P"QCX@@@@@@@X"H3L2H3X@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5436
@@@@H"Y&Y&I6D@@@@@@BH"@@@@\''@@@@@@@BH @@@@A7@@@@@@@@H@@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4531
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  5437
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 170 170 170 255 0 0 127 127 127 223 223 32 240 240 240 64 64 64 255 128 128]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@A0A@A8F@@<L@@?? @?? @?? @?? @?? @?? @?? A8G@A0C@@ A@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5438
!
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  5439
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5440
desktop24x24Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5441
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5442
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5443
    ^self desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5444
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5445
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5446
desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5447
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5448
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5449
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5450
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5451
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5452
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5453
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5454
     self desktop24x24Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5455
     ImageEditor openOnClass:self andSelector:#desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5456
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5457
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5458
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5459
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5460
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5461
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5462
	constantNamed:'GenericToolbarIconLibrary class desktop24x24Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5463
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5464
@K^7-;^7-5" (J@&J$EAI*A2KTP@K AD@K^7-;]AI*A2KTP@K AD"BXSD085X3$N@CH2A7-;G!!,[Y:9?*5AP&9.COV>"(#U/@CJ$)WZSSI\JB&@FRYA5#X6M
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5465
^J"(\C&(@G,YRYP"H"H"G0",R$(3R!!0E_S\KV3$7@G-I%BJ2 KIQCB@8HS  H@$IY(E)E :A@A8F%BJ@ F"-HC !!NB@ T%J0&V%)VP9)@A- %2J2ZJ4LNBD!!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5466
HB@MT%J0&V%)#@9)@A- B"I(TP08HRD!!HB@MT%J0&V&\#@9)@F]LB"IQ,S !!HRD!!HBART+B0&V&\E09)@J9L%1>RHBD!!HRD!!HBART+B0&V&DWP9)@G=L%8JU
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5467
HRE*HRD H@5RT+B0T6&D.&1)@G= %@ \OF)"HRD HEIRT+A: Y2D@F2\@J- +:0%R6)"HRD HEIR,KA> XRD@V2D@EA _ET%R6(!!HS8 CUIR,KA> XRD@V2D
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5468
@E@F^J0%R6(!!HR@ T%IR,KA> XRD@ :D@I-II1@P-FH!!HR@ T%J0,G9> XRD@ :D@I.])(=E]8U-[UYVO3<?O2"E!!QDQ@ 8Q@AJ5Q)9B")5_W5=_W4!!HMCP4
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5469
GQ4]K08]@HNFQZLXJ5=.EAPTEK"!!(ZF!!"8&IF :I@HLC\U]@JWN6-+Z6V%)CP4MCEV9.F 9.@F-+Z35T''8]/[:J"\GA[E%&L@A(ZF 8Z@KV5NP:9(E1D@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5470
KWH&D08NC 8NC 8N@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N') ; colorMapFromArray:#[239 239 240 239 239 255 240 240 255 111 112 128 64 112 191 48 112 208 79 112 191 95 111 176 64 112 208 63 127 223 95 128 207 95 144 223 63 112 223 48 112 224 175 176 191 144 160 207 112 159 208 159 175 191 143 144 207 191 191 207 47 63 95 47 48 80 208 208 224 223 224 240 255 208 64 48 95 176 255 255 255 96 127 176 48 111 208 127 143 160 96 112 176 80 127 208 48 112 223 47 111 223 95 128 208 95 144 224 95 160 240 47 96 208 192 207 208 111 144 208 144 160 176 16 143 191 192 192 208 15 127 191 32 48 80 223 223 224 239 240 240 240 255 255 48 111 191 112 143 160 80 111 176 47 111 207 112 128 160 160 175 176 80 128 207 80 144 223 48 111 223 160 175 191 79 128 223 79 143 240 47 96 223 160 175 208 47 112 223 143 159 176 0 175 224 192 192 207 96 176 31 32 48 64 224 224 224 47 128 191 63 143 191 32 80 175 112 128 144 64 111 191 48 111 207 32 96 208 95 127 191 79 128 207 80 143 223 95 159 224 127 143 191 79 127 223 63 127 224 80 159 240 160 176 208 48 96 207 143 159 191 15 159 208 207 208 208 208 223 224 32 47 64 207 208 224 223 223 223 224 224 240 64 127 191 111 127 144 80 127 191 80 143 207 32 111 223 159 175 176 79 127 207 79 143 223 80 144 224 111 127 191 80 128 223 96 160 240 32 96 223 159 175 208 176 176 191 128 159 191 47 63 80 176 191 223 192 207 224 48 111 144 208 208 223 64 80 111 48 111 176 48 96 176 64 111 176 79 128 176 63 111 191 64 127 207 64 143 224 95 112 176 64 112 207 79 128 208 79 143 224 112 128 191 95 143 223 95 159 240 79 127 208 143 159 207 111 175 255 144 160 191 144 144 175 175 191 223 208 223 223 63 79 95 31 112 175 63 64 95 223 223 240 47 96 176 0 0 0 63 144 208 63 96 176 48 96 191 64 127 208 80 112 191 80 127 207 63 112 208 64 128 223 95 127 207 95 127 208 80 144 240 79 144 240 128 144 207 96 160 255 144 159 176 224 48 0 175 176 208 207 207 208 48 64 95 191 192 223 15 160 240 31 79 160 47 95 175 96 144 176 47 96 191 79 127 191 63 127 208 63 112 207 112 143 191 63 111 207 64 127 223 111 128 191 79 112 207 64 128 224 64 112 223 95 128 223 144 160 208 95 143 224 159 160 176 31 47 64 208 208 208 48 63 95 191 192 207 224 239 240]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5471
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  5472
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5473
documents24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5474
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5475
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5476
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5477
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5478
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5479
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5480
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5481
     self documents24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5482
     ImageEditor openOnClass:self andSelector:#documents24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5483
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5484
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5485
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5486
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5487
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5488
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5489
        constantNamed:'GenericToolbarIconLibrary class documents24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5490
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5491
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V%)FG@$IB&8^%9]]!!5APGP@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5492
TP@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>TP@@@@@@@@@@VE +^9FQO8 F%IRULXFA%C@3L0@@@@@@[F1''E%IRP#^DHB@<OC0<OC2S$0@@@@@@ H@*^ HBKWNP
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5493
UUVB (JB #1+Z0@@@@@@ H@*^ HBKWNPUUVB (JB #1+Z0@@@@@@B@"M@#4=K@=Y%YT#G2D!!&VPZF @@@@@@K2<)J@DAACZPUUUG_(NCFFQVU @@@@@@F1-9
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5494
#C,;EU9Y%YUJCE1\[VQ*Z @@@@@@F1-8]0@@S''JPUUVB (JB #1APP@@@@@@F1-8]0@@S''JPUUVB (JB #1APP@@@@@@U5^K@H*JSP9Y%YU_W5=_W31=_P@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5495
@@@@_7<S''VE!!DXVPUUVB (JB #0EAP@@@@@@A0\%"S 8]I!!Y%YU_W5=_W31TU@@@@@@@A0\%"S 8]I!!Y%YU_W5=_W31TU@@@@@@@K"95II.[R06PUUVB (JB
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5496
 #2O#0@@@@@@K"9 SI*ZH$ 2B0,RD#$9NRXYFP@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@''I1[P6Y&](Y1
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5497
N#(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G?? G?? G?? G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G?0@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5498
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  5499
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5500
dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5501
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5502
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5503
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5504
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5505
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5506
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5507
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5508
     self dos24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5509
     ImageEditor openOnClass:self andSelector:#dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5510
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5511
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5512
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5513
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5514
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5515
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5516
	constantNamed:#'GenericToolbarIconLibrary class dos24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5517
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5518
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH"H"H"H"H1@@@@LRP"H"H"H"H1@@@@LRIBH"H"H"H1@@@@LRH$H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5519
H"H"H1@@@@LRH"P"H"H"H1@@@@LRH$H"H"H"H1@@@@LRIBH"H"H"H1@@@@LRP"H"H"H"H1@@@@LRH"H"QDIDP1@@@@LSL3L3L3L3L1@@@@@QDQDQDQDQDQ@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5520
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5521
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@D@@@D@@@\1 @%J@@%I@@%H @\3@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5522
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5523
    "Modified: / 06-02-2007 / 19:40:56 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5524
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5525
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5526
fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5527
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5528
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5529
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5530
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5531
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5532
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5533
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5534
     self fileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5535
     ImageEditor openOnClass:self andSelector:#fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5536
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5537
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5538
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5539
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5540
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5541
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5542
	constantNamed:#'GenericToolbarIconLibrary class fileBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5543
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5544
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3@Y&Y&Y&Y&@@@@@@3@X@@@@@@F@@@@@@3@XN;.;.8F@@@@@@3@XN; @@@@@@@@@@3@XN;
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5545
=/[6=/@@@@3@X@; [6=/[6@@@@3@XAC =/@@A/@@@@3@X@D@[6A/C6@@@@3@X@@P=/[6=/@@@@3@X@@@[6=/[6@@@@3@XO@@=/[6=/@@@@3@XF<@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5546
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5547
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O?? O?? O?? O?? O??<O??<O??<O??<O??<O??<O??<O??<O??<O?? O?? O?? O?? O?? G?? C?? @@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5548
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5549
    "Modified: / 06-02-2007 / 19:40:54 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5550
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5551
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5552
fileIn24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5553
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5554
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5555
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5556
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5557
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5558
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5559
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5560
     self fileIn24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5561
     ImageEditor openOnClass:self andSelector:#fileIn24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5562
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5563
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5564
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5566
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5567
	constantNamed:#'GenericToolbarIconLibrary class fileIn24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5568
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5569
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&XF@@@@@@@@A#L2Y&XF@@A&Y X@A#L2Y&XF@AA&Y D@A"H"Y&XF@AA&Y DCA&I&Y&XF@AA&Y DC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5570
M&I%URXF@A@@@3L3L6I%URXF@ADQD3L3L3H"H"XF@AD@@3L3L6I&Y&XF@AD@Y DCM&I$QBXF@AD@Y DCA&I$QBXF@@@@@@@@A&H"H"XF@@@@X@@@A&Y&Y&XF
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5571
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5572
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?>@@?>_>?>_>?>_>?>_??>_??>_??>_??>_??>_??>_??>O>?>@ ?>@@?>@@@@EPD@HP@@ISD0IT%H]W%HITEHISEH') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5573
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5574
    "Modified: / 06-02-2007 / 19:40:51 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5575
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5577
garbageCollect24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5578
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5579
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5580
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5581
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5582
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5583
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5584
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5585
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5586
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5587
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5588
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5589
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5590
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5591
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5592
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5593
	constantNamed:#'GenericToolbarIconLibrary class garbageCollect24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5594
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5595
@@@@@@@@@@@@@ADQ@@@@@@@@@@@@@ADQDQ@@@K.;,QF1DQDQDQ@@B;.;.1.0@@DQDQ@@.;@@.;.1@@@ADQ@@.0@@F;.1@2@ADQ@@.0@@.;.1DCHADQ@K.;@@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5596
DQDQDPL DQB0.0,@DQDP@@@0DQ,K@KB0DQ@BH"H@DQ@@@@@@DQ@P@@@0DP@@@@8N@@@QDSL0D@@@C.;.8@@PL3@ @@@@@NC @@@PLC@ @@@@;.;.@@@PLC@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5597
@@@@C 8@@@@PLC@ @@B (@@AD@@PLC@ @J*** CA0@@PLC@ @@(J@L3L3@@PLC@ B***(@0L@Q@SLCL @JB CL3L0Q@CH"H@@ADQDLCADQDP@@@Q@ADQD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5598
@QD@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O"@@_6@@8>8@0^<@0>^A8@OB4A?EJG?@@G?@EG?@_''?@JG?@?G?@TG?B G?O2''?EO7?_%G?J_''?@JA<@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5599
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5600
    "Modified: / 06-02-2007 / 19:40:47 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5601
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5602
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5603
historyBackInTextIcon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5604
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5605
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5606
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5607
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5608
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5609
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5610
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5611
     self historyBackInTextIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5612
     ImageEditor openOnClass:self andSelector:#historyBackInTextIcon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5613
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5614
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5615
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5616
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5617
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5618
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5619
        constantNamed:'VistaToolbarIconLibrary class historyBackInTextIcon'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5620
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5621
%IRT%IRT%IRTS4=OS4=O$$>T%IRT%IRT%IRX&I"X&I"X&I"X&I"X&I"X&I"X&IRT%)ZX%YVV%)ZU%YT@@@@@%)ZV%YT@&IVV%)ZX%YVV%)ZU%P@@@@@@%)ZV
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5622
%YT@&IVV%)ZX%YVV%)ZU%P@@@@@@%YZV%YT@&IVV%)ZX%Y"X&I"X#P@@@@@@@@@@@@@@&IVV%)ZX%YVV%)X@@@BI@@@@@@@@@@BU&IVV%)ZX%YVV@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5623
@@@@@E0K@@BU&@BV%)ZX%Y"X&I"X@@@@@@@@S 8F!!XBU&@BV%)ZX%P@@@@@@@@@@@H4#D''4@!!XAO&@AO%YVX%P@@@@@@@@@@#P8]"X8@@@@@@@BD%YVXS9"X
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5624
&I"X@H=<@3^N^(:N]7]7[0B@%T>XS0@@@@@@@@A4@0(6[6<,H!!(5ZPB@%P"X] @@@@@@@@@@!! 4DE6<@@@@@AQF@%P"X\)"X&I"X@@@@@H \@ 0@ HB@ HB@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5625
%W&XE @@@@@@@@@@@@BOPPD@ A @&@AO%PBXCQAYX@@@@@@@@@@@$%0K B@(&@AO%PBX$I"X&I"X@@@@@@@@@D)JQ4]D&D=O%@BX%D=OS4=O@@@@@@@@@D=O
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5626
S4=O&D=O%@BX%IQOS4=OQ @@@@@@@D=OS4=O&D=O%@BX%IRTS4=OS0@@@@@@#4=OS4=O&IIO%@BX%IRT%D=OS4=OS4=O$$>T%IRT&IRT%IRX&I"X&I"X&I"X
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5627
&I"X&I"X&I"X&IRT%IRT%IRT%IRTS4=OS4=O$$>T%IRT%IRT') ; colorMapFromArray:#[0 146 0 0 150 0 0 158 0 8 150 8 8 170 8 16 150 16 16 154 16 24 154 24 24 158 24 24 162 24 24 182 24 33 154 33 33 211 24 41 158 41 41 162 41 41 166 41 41 174 41 49 162 49 49 166 49 57 166 57 57 199 49 66 178 57 66 190 57 66 227 57 74 199 66 74 203 66 74 227 74 74 231 66 82 174 82 82 182 74 82 190 74 82 203 66 82 207 74 82 215 74 82 231 82 90 182 90 90 207 82 90 211 74 90 211 82 90 215 74 90 215 82 90 223 82 90 227 82 90 231 82 90 235 82 90 235 90 99 211 90 99 215 82 99 215 90 99 219 82 99 219 90 99 223 82 99 223 90 99 227 99 99 235 90 107 195 99 107 211 99 107 223 90 107 227 90 107 235 90 107 235 99 107 235 107 107 239 90 107 239 99 115 142 222 115 186 107 115 211 99 115 227 99 115 235 99 115 235 107 115 239 99 115 239 107 123 190 123 123 195 123 123 239 107 123 239 115 123 239 123 123 243 107 132 199 132 132 239 107 132 239 123 132 243 107 132 243 115 132 243 123 132 247 123 140 203 140 140 215 132 140 243 115 140 243 123 140 243 132 140 247 115 140 247 123 148 199 148 148 243 123 148 243 132 148 247 123 148 247 132 148 251 123 148 251 132 156 203 156 156 243 132 156 243 140 156 251 123 156 251 132 165 251 140 165 251 156 173 170 156 173 215 173 173 235 156 173 251 148 173 251 156 173 251 165 181 239 165 181 251 156 181 251 165 181 251 173 189 215 181 189 247 173 189 251 173 189 255 173 189 255 181 198 223 198 198 251 173 198 255 181 206 227 206 206 243 181 206 255 189 214 207 206 214 211 214 214 255 189 214 255 198 222 219 214 222 219 222 222 223 222 222 227 214 222 227 222 222 231 214 222 251 206 222 255 198 222 255 206 231 227 231 231 239 231 231 255 214 239 235 231 239 235 239 239 243 239 247 239 239 247 239 247 247 243 239 247 243 247 247 247 247 255 255 255 0 0 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@O??<H@@DH@@DH@@DK<@DHA@DH@CDK8G4H@_4H@??K;??HA??H@??K8_?H@O$H@G$K8@DH@@DH@@DH@@DH@@DO??<@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5628
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5629
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5630
imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5631
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5632
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5633
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5634
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5635
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5636
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5637
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5638
     self imageEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5639
     ImageEditor openOnClass:self andSelector:#imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5640
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5641
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5642
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5643
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5644
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5645
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5646
	constantNamed:#'GenericToolbarIconLibrary class imageEditor24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5647
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5648
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5649
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@(@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5650
A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFXI& BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFXI* @@@@@@@@@@@@@I* @@@@@@@@@@@@@I& @@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5651
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5652
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5653
    "Modified: / 06-02-2007 / 19:40:45 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5654
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5655
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5656
installAsWebPage24x24Icon
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5657
    "This resource specification was automatically generated
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5658
     by the ImageEditor of ST/X."
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5659
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5660
    "Do not manually edit this!! If it is corrupted,
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5661
     the ImageEditor may not be able to read the specification."
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5662
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5663
    "
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5664
     self installAsWebPage24x24Icon inspect
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5665
     ImageEditor openOnClass:self andSelector:#installAsWebPage24x24Icon
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5666
     Icon flushCachedIcons
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5667
    "
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5668
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5669
    <resource: #image>
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5670
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5671
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5672
	constantNamed:#'GenericToolbarIconLibrary class installAsWebPage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5673
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5674
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"H"H"H@BYBP@%UUUUUUUU$@BYBP@%UUUUUUUU$@BYBP@%UUUUUUUU$@@@@@@%UU.;.5UU$@@@@@@%U[.;.;
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5675
UU$@@@@@@%V;.;.;-U$@@@@@@%.*.;**.5$@@@@@@%.**;.**5$@@@@@@%.**;***5$@@@@@@%.:*;***5$@@H&P@%.:*;**.5$@@@@@@%V;.;*+-U$@@@$@
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5676
@%U[.;.;UU$@@@$@@%UU.;.5UU$@@@$@@%UUUUUUUU$@@H"P@%UUUUUUUU$@@H&P@%UUUUUUUU$@@H&P@%UUUUUUUU$@@H&P@)&Y&Y&Y&Y$@@H"P@@@@@@@@
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5677
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 191 191 191 255 0 0 240 240 0 255 255 0 100 100 100 0 255 0 0 0 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@??>@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_??>_??>N@@@@') ; yourself); yourself]
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5678
!
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  5679
4335
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5680
left2Arrow24x24Icon
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5681
    "This resource specification was automatically generated
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5682
     by the ImageEditor of ST/X."
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5683
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5684
    "Do not manually edit this!! If it is corrupted,
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5685
     the ImageEditor may not be able to read the specification."
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5686
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5687
    "
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5688
     self left2Arrow24x24Icon inspect
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5689
     ImageEditor openOnClass:self andSelector:#left2Arrow24x24Icon
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5690
     Icon flushCachedIcons
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5691
    "
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5692
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5693
    <resource: #image>
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5694
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5695
    ^Icon
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5696
        constantNamed:'XPToolbarIconLibrary class left2Arrow24x24Icon'
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5697
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5698
%)ZVM3^V%)X7M3\7M3\7%)ZVM3\7M3^V%)ZVM3^V%)X7M3\7]1 @%)ZVM3\7M3^V%)ZVM3^V%)X7M3]&TT01M9ZVM3\7M3^V%)ZVM3^V%)X7$U8,I3TKM9ZV
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5699
M3\7M3^V%)ZVM3^V%)ZQTSL>FSTKM9ZVM3\7M3^V%)ZVM3^V%%H$!!!!%]T#TKM9ZVM3\7M3^V%)ZVM3^V!!RP?"%ZEICTKM9ZVM3\7M3^V%)ZVM3^NS@16^H9L
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5700
CCT5MST5MST5N0$@M3\7M58EHWQ#W T!!]FNW%6=/MCP4H@EEM3^QTUQ\MIEQUE04"FEMIRT"RP<9LCTKM5JG_)\HT(]>%0 (JAQ+#8<ZA2-,#STKM8]2DFQN
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5701
!!7HPYD9 XFAW#4E;^%MG"3TKM8\RVFI !!1IXX&A_W8ROGV!!UK&\^TCTKM7\;#DIP]3.LP%@@\G@_B )UT6\^@#TKM3^PA#5OE)@FOT<VC :S_8A)_UU)ISTK
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5702
M3\7 (L:RS2B 3)IOF,%IWA0H"JTVPDKDQDQDT)%IA,SR&T$F3T5MST5MST5@W$KDQDQDQEJ RPDC$*AICU<B0,KB0,KB0-*DQDQDQDQR L$\X=J@3TK[$)J
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5703
R$)JR$)JDQDQDQDQDQD\A&4UJ#TKR!!DQDQDQDQDQDQDQDQDQDQDQK8MFV#TKR!!DQDQDQDQDQDQDQDQDQDQDQDV:IV3TKR!!DQDQDQDQDQDQDQDQDQDQDQDQEJ
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5704
CQ\KR!!DQDQDQDQDQDQDQDQDQDQDQDQDQR$ 1R!!DQ') ; colorMapFromArray:#[132 239 107 16 150 16 132 239 123 189 215 181 57 199 49 41 166 41 41 158 41 82 231 82 173 251 148 57 166 57 90 211 74 214 211 214 173 235 156 148 199 148 115 239 99 107 235 107 189 251 173 247 243 239 107 211 99 132 247 123 140 247 123 66 227 57 148 247 132 33 154 33 123 195 123 231 255 214 90 231 82 90 227 82 222 227 214 99 223 82 90 207 82 99 215 82 181 251 173 181 239 165 115 239 107 115 227 99 8 150 8 123 239 115 140 247 115 206 243 181 148 247 123 173 170 156 74 231 66 74 227 74 49 166 49 115 142 222 82 203 66 222 231 214 173 251 165 222 223 222 99 223 90 82 182 74 189 255 173 0 146 0 123 243 107 247 243 247 247 239 247 123 239 123 24 162 24 24 154 24 148 251 132 41 174 41 222 251 206 140 215 132 90 235 82 90 235 90 173 251 156 107 239 90 99 219 82 222 219 222 0 158 0 99 211 90 231 227 231 115 235 107 247 239 239 255 255 255 16 154 16 132 243 123 140 243 123 140 243 132 148 243 132 41 162 41 206 227 206 74 203 66 66 178 57 82 207 74 181 251 156 107 235 90 181 251 165 107 235 99 33 211 24 0 150 0 189 247 173 198 251 173 90 182 90 132 243 115 140 243 115 148 251 123 148 243 123 156 251 132 156 243 132 123 190 123 132 199 132 74 199 66 90 215 74 90 215 82 222 219 214 107 239 99 99 227 99 8 170 8 239 235 231 189 255 181 123 239 107 24 182 24 115 211 99 206 255 189 214 255 189 214 255 198 222 255 198 198 223 198 165 251 140 49 162 49 82 215 74 90 223 82 214 207 206 90 211 82 82 190 74 99 219 90 99 215 90 156 203 156 239 235 239 82 174 82 132 243 107 173 215 173 107 195 99 24 158 24 156 251 123 115 186 107 222 255 206 156 243 140 66 190 57 165 251 156 140 203 140 99 235 90 222 227 222 231 239 231 107 227 90 107 223 90 115 235 99 239 243 239 247 247 247 198 255 181]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@0@@A8@@G8@@O8@@_8@@?8@A??>C???O???_???_???_???_???O???G???C???A???@?<@@O8@@G8@@C8@@A8@@@8@') ; yourself); yourself]
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5705
!
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  5706
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5707
leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5708
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5709
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5710
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5711
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5712
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5713
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5714
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5715
     self leftArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5716
     ImageEditor openOnClass:self andSelector:#leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5717
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5718
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5719
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5720
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5721
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5722
	constantNamed:#'GenericToolbarIconLibrary class leftArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5723
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5724
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5725
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5726
@0LA@PDK@@@@@@@@@@@@@@DL@@@MC <P@@@@DPLR@@@@@@@@@@@@@PX@@ALTEP8PDQDVE0\R@@@@@@@@@@@AAADQD1PUEQTNF@$SFP(R@@@@@@@@@@@KB!!P[
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5727
GAPUEQT]GQ4]GP(R@@@@@@@@@@@@D (TG!!0TEA,_G1<[H@(R@@@@@@@@@@@@@AHJC!!< GQ4JB (JB"DK@@@@@@@@@@@@@@@RB 8^B DRD!!HRD!!HK@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5728
@@@@@@@@D (]H H@@@@@@@@@@@@@@@@@@@@@@@@@@AHJHPD@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5729
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5730
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 32 96 32 64 96 96 128 160 64 96 128 128 160 192 32 96 128 128 160 160 160 192 224 0 96 128 0 0 0 128 128 160 64 192 192 32 160 192 64 128 192 128 192 224 192 224 224 0 0 32 96 192 224 0 160 192 0 128 192 160 224 224 96 160 192 128 192 192 64 160 192 192 192 192 32 192 192 0 192 224 0 128 160 32 192 224 64 192 224 0 192 192 0 64 96 0 64 128]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@B@@@F@@@N@@@^@@@>@@A??@C??@G??@O??@O??@G??@C??@A??@@>@@@^@@@N@@@F@@@B@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5731
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5732
    "Modified: / 06-02-2007 / 19:40:42 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5733
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5734
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5735
leftArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5736
    "This resource specification was automatically generated
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5737
     by the ImageEditor of ST/X."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5738
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5739
    "Do not manually edit this!! If it is corrupted,
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5740
     the ImageEditor may not be able to read the specification."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5741
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5742
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5743
     self leftArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5744
     ImageEditor openOnClass:self andSelector:#leftArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5745
     Icon flushCachedIcons
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5746
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5747
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5748
    <resource: #image>
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5749
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5750
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5751
	constantNamed:'GenericToolbarIconLibrary class leftArrow24x24disabledIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  5752
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5753
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5754
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5755
@0LA@PDK@@@@@@@@@@@@@@DL@@@FCP8O@@@@D@LQ@@@@@@@@@@@@@PX@@AHND04ODA@TEP\Q@@@@@@@@@@@AAA@PD 8SD1LME $RE0(Q@@@@@@@@@@@KB 8U
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5756
F@8SD1LYFQ$YFP(Q@@@@@@@@@@@@DP(NF!! NC!!T[F1,UE0(Q@@@@@@@@@@@@@ADJCQ,WFQ$JB (JB!!0K@@@@@@@@@@@@@@@QB 4ZB DQDQDQDQDK@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5757
@@@@@@@@DP(YGPH@@@@@@@@@@@@@@@@@@@@@@@@@@ADJG@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5758
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5759
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 25 25 25 28 28 28 57 57 57 121 121 121 89 89 89 153 153 153 80 80 80 150 150 150 185 185 185 70 70 70 0 0 0 131 131 131 124 124 124 115 115 115 176 176 176 214 214 214 3 3 3 166 166 166 96 96 96 204 204 204 144 144 144 172 172 172 134 134 134 137 137 137 92 92 92 147 147 147 156 156 156 48 48 48 51 51 51]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@B@@@F@@@N@@@^@@@>@@A??@C??@G??@O??@O??@G??@C??@A??@@>@@@^@@@N@@@F@@@B@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5760
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  5761
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5762
make24x24Icon3
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5763
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5764
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5765
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5766
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5767
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5768
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5769
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5770
     self make24x24Icon3 inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5771
     ImageEditor openOnClass:self andSelector:#make24x24Icon3
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5772
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5773
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5774
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5775
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5776
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5777
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5778
        constantNamed:'GenericToolbarIconLibrary class make24x24Icon3'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5779
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5780
_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_3MNNRP]_7=?_7=?_7=?_7=?_7=?_7=?_4%QU$05HQ]?_7=?_7=?_7=?_7=?_7=?_7=?_5MYT"<W
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5781
_7=?_7=?_7=?_7=?_7=?_7=?_7=WVEUEF''=?_7=?_7=?_7=?_7=?_7=?_7<6UD=KR"%?_7=?_7=?_7=?_7=?_7=?_7<?ST!!COD)A_7=?_7=?_7=?_7=?_7=?
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5782
_2MGQ#85K")?_7=?_7=?_7=?_7=?_7=?_29BNS@+I"\:FG=?_7=?_7=?_7=?_7=?H#\2KR)?_1%PV"U?_7=?_7=?_7=?_7<_N3%?_7=?_2@[QE,1_7=?_7=?
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5783
_7=?EQ84KG=?_7=?_7<8GDA?_7=?_7=?_7<FCAX(_7=?_7=?_7=?OW=?_7=?_7=?_0<LA0\N_7=?_7=?_7=?_7=?_7=?_7<CE@,GBPQ?_7=?_7=?_7=?_7=?
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5784
_7=?_0HSB \IAW=?_7=?_7=?_7=?_7=?_7=?_1@JA0 E_7=?_7=?_7=?_7=?_7=?_7=?C0,GBPU?_7=?_7=?_7=?_7=?_7=?_7<KB0\IAW=?_7=?_7=?_7=?
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5785
_7=?_7=?CQHKA0 D_7=?_7=?_7=?_7=?_7=?_7=?DP,IBPU?_7=?_7=?_7=?_7=?_7=?_7=?_0(J@ E?_7=?_7=?_7=?_7=?_7=?_7=?_7<E@G=?_7=?_7=?
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5786
_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[9 9 9 11 11 11 31 31 31 32 32 32 33 33 33 34 34 34 34 34 35 35 35 35 35 36 36 36 36 36 37 37 37 38 38 38 39 39 39 39 39 40 40 40 40 41 41 41 42 42 42 44 44 45 45 45 46 47 47 47 48 48 48 51 51 51 65 65 65 88 88 88 89 89 89 98 99 100 101 101 101 103 104 105 104 104 105 111 111 112 113 113 114 117 117 118 119 120 121 120 120 120 121 121 123 123 123 125 125 125 126 125 126 128 129 129 129 129 130 130 131 131 130 133 133 133 138 138 138 139 139 139 142 142 142 144 144 144 145 145 145 147 147 147 148 148 148 147 148 152 149 149 149 151 151 151 152 152 152 154 154 154 155 155 157 156 156 155 157 158 159 158 158 158 159 159 159 160 160 160 161 161 161 160 162 168 164 164 164 166 166 167 166 166 168 168 168 168 169 169 169 170 170 170 171 171 171 172 172 172 173 173 173 177 177 177 178 178 178 178 178 179 180 180 180 183 183 183 186 186 186 187 187 187 188 188 188 191 191 191 193 193 193 196 196 198 197 197 197 201 201 201 202 202 202 203 203 203 203 203 204 206 206 206 214 214 214 216 216 216 223 223 223 238 237 237 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@C8@@C>@@@_@@@O @@O0@@O8@@_0@@_<@@>^@A0_@G N@O@D@_@@A>@@C<@@C8@@G0@@O @@?@@@>@@@^@@@L@@@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5787
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5788
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5789
menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5790
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5791
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5792
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5793
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5794
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5796
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5797
     self menuEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5798
     ImageEditor openOnClass:self andSelector:#menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5799
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5800
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5801
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5802
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5803
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5804
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5805
	constantNamed:#'GenericToolbarIconLibrary class menuEditor24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5806
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5807
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@QDQDQDQDQ@@@GA0@RH"H"H"H"TEAWA0@R\"H"H''H"TEAP@@@R]7\"]7\"TEAP@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5808
H"TEAP@@@P@@@@@@@@TEAP@@@QDQDQDQDQTEAP@@@RH"H"H"H"TEAP@@@R\"I2H"H"TEAP@@@R]2I7\''\"TE@C]0@RH"H"H"H"TE@@@@@P@@@@@@@@TEAP\@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5809
@QDQDQDQDQTEAP\@@RH"H"H"H"TEAP\@@R]2I7H'']2TE@CM0@RH"H"H"H"TE@C]0AUUUUUUUUUTE@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5810
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5811
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5812
    "Modified: / 06-02-2007 / 19:40:40 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5813
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5814
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5815
method24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5816
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5817
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5818
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5819
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5820
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5821
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5822
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5823
     self method24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5824
     ImageEditor openOnClass:self andSelector:#method24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5825
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5826
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5827
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5828
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5829
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5830
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5831
        constantNamed:'GenericToolbarIconLibrary method24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5832
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5833
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5834
DQDQDQDQDQDQDQDQDQDQDQDQDQDQL"H"H"H"LQDQDQDQIDQDQDQCHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQH1DQDQDQHQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5835
DQDQL"H"H"H"LQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5836
DQDQDQDQDQDQDQDQDQDQDQDQ') ; colorMapFromArray:#[223 32 32 127 127 127 64 64 64 170 170 170 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?? @?? @?? @?? @?? @?? @?? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5837
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5838
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5839
methodFinder24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5840
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5841
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5842
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5843
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5844
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5845
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5846
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5847
     self methodFinder24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5848
     ImageEditor openOnClass:self andSelector:#methodFinder24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5849
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5850
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5851
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5852
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5853
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5854
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5855
        constantNamed:'XPToolbarIconLibrary methodFinder24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5856
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5857
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5858
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADEQPX
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5859
IR)P@@@@@@@@@@@@@@@@@@@@@A,''RE!!YUD@(H&\@@@@@@@@@@@@@@@@@J6&Q XFA XEUJQ!!''B (JB (9@@@@@@@,X%,KB0 C@ LGA TU_9FQ$S$J@@@@@DX?
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5860
 U,K[F1,[F1,[@X LV1,[AHJ@@@@@CMR\U,K[F1,[F1,[F0ED61,[AHJ@@@@@B1YVT8K[F1,[F1,[F0EE61,[AHJ@@@@@B1&R4LK[F1,[F1,[F0EGQHRD!!HJ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5861
@@@@@B1YUTLK[F1,[F1,[F0EGP(JB (9@@@@@B5IVT4K[F1,[F1,[F0KE@@@@@@@@@@@@DT5VT4KB0,KB0,KB0-GF @@@@@@@@@@@@@_PD5MST9NS$9NS&,\
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5862
Y0@@@@@@@@@@@@@$G4%&Y&)1\WVE CH<@@@@@@@@@@BP %4#E!!<6T6Y1Z&MQL#4@@@@@@@@@@H>M#E0!!@@@%FQ8&MCH>U0@@@@@@@@@@#8:L[S(0@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5863
@@@@@@@@@@@@@@@@#(1-N2<@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 32 223 32 255 40 124 255 51 109 255 51 109 229 54 139 255 62 88 255 62 88 255 62 91 255 62 136 64 64 64 255 72 115 255 83 62 255 91 73 255 94 74 255 101 84 255 105 85 255 112 96 127 127 127 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 143 175 208 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 159 192 239 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 160 208 255 160 223 255 170 170 170 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 175 223 255 176 175 207 176 176 176 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 176 223 255 176 224 255 176 239 255 183 183 183 190 190 190 191 175 143 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 239 255 191 240 255 192 192 208 192 239 255 192 240 255 192 255 255 196 196 196 207 143 95 207 207 191 207 207 207 207 207 208 207 207 223 207 208 223 207 223 239 207 239 240 207 239 255 207 240 255 207 255 255 208 208 223 208 208 224 208 224 239 208 255 255 217 217 217 223 32 32 223 128 63 223 192 255 223 223 32 223 223 224 223 255 255 224 224 224 224 224 239 224 239 240 224 255 255 231 207 255 231 208 255 238 191 255 238 192 255 239 159 232 239 191 255 239 223 255 239 224 255 239 239 224 239 239 239 239 239 240 239 255 255 240 207 144 240 239 223 240 240 239 240 255 255 246 176 255 247 175 255 247 207 255 247 239 255 254 160 255 254 191 255 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O8@@_>@@???A???C???C???C???C???C???C?? C?? A?? A??@O?>@_O<@?@@@>@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5864
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5865
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5866
newClassWizardIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5867
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5868
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5869
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5870
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5871
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5872
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5873
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5874
     self newClassWizardIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5875
     ImageEditor openOnClass:self andSelector:#newClassWizardIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5876
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5877
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5878
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5879
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5880
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5881
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5882
	constantNamed:'GenericToolbarIconLibrary class newClassWizardIcon'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5883
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5884
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5885
@@@@@@@@@@@8B@ HB@ HB@ HB@ 8@@@@@@@@@@@@@@@H:^''):^''):^''):S H@@@@@@@@@@@@@@@H:PXFA XFA XFA!!8H@@@@@@@@@@@@@@@H:PXFA XFA XF
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5886
A!!91RF$@@@@@@@@@@@@H:PXFA ZB^G(FA&5/&38@@@@@@@@@@@@HNA8^G!!97,)EXT&KC%DL@@@@@@@@@@@@8B@ HB@!!9%.^-#;''#]V,@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5887
@@B5V[C)9^S^V#\@@@@@@@@@@@@@@@@@@@@@TIO&7]_V)5\!!QP@@@@@@@@@@@@@@@@A-W;_!!5=SS6-F"O2 @@@@@@@@@@@@@@GM,7NO_5]OA&&)ILCT@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5888
@@@@@@@@@D^]%WY +="IDC,V_P@@@@@@@@@@@@@@@F!!@PV\.X=Q.A0>DFP@@@@@@@@@@@@@@@@@@@@@@H*9VBP@Q 1L@@@@@@@@@@@@@@@@@@@@@P$P2$ 0@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5889
D(D$@@@@@@@@@@@@@@@@@@@@@BL4@@@K@AP3I@@@@@@@@@@@@@@@@@@@@@@@@@@@I HXLRX@@@@@@@@@@@@@@@@@@@@@@@@@@BPBGR<1@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5890
@@@@@@@@@@@*@!!<W@@@@@@@@@@@@@@@@@@@@@@@@@@@@JPTJ') ; colorMapFromArray:#[0 0 0 3 3 3 4 4 4 4 8 8 11 16 17 12 12 12 32 223 32 33 4 8 64 64 64 67 27 35 69 69 69 75 80 80 80 93 92 90 19 2 94 95 110 107 120 120 109 13 19 109 107 107 111 110 110 111 115 115 112 112 112 116 117 116 120 76 87 120 120 120 121 121 121 121 132 132 122 120 120 122 122 122 125 57 47 125 125 125 127 127 127 133 133 133 140 70 60 144 32 17 145 28 14 158 75 75 158 158 158 159 36 2 159 159 159 160 34 3 161 79 79 161 161 161 162 162 162 163 59 29 163 63 34 164 164 164 165 76 76 166 166 166 167 46 5 167 167 167 168 46 6 168 168 168 169 89 89 169 91 91 169 171 171 170 86 86 170 170 170 171 79 75 173 90 77 173 125 137 173 173 173 174 85 83 175 49 40 176 68 12 177 50 40 177 67 67 177 111 111 179 70 70 180 72 11 180 117 117 180 180 180 181 26 10 181 28 13 181 80 16 181 179 180 181 186 191 183 70 49 183 88 19 184 69 48 184 186 186 185 55 55 185 183 184 186 56 56 190 50 30 190 52 32 190 104 94 191 87 23 192 94 18 193 37 20 193 38 17 193 88 18 193 108 101 194 81 72 194 85 77 195 165 162 196 67 35 196 92 19 196 144 142 197 68 34 197 99 19 197 147 144 198 80 57 198 81 55 198 128 128 199 96 93 199 102 100 200 105 21 202 136 136 203 82 39 203 107 107 203 109 25 204 83 37 204 85 46 204 102 102 205 88 47 205 104 103 205 172 171 207 111 32 208 116 34 210 44 27 210 44 29 211 86 86 211 93 93 211 138 29 214 83 58 215 201 202 216 87 60 216 142 31 216 183 183 217 217 217 218 66 59 218 218 218 218 225 224 219 65 39 220 134 134 220 140 140 220 188 188 221 141 25 222 168 168 223 32 32 223 157 52 223 170 170 223 223 32 224 136 74 224 160 53 225 125 88 225 214 215 226 139 77 226 165 73 226 167 74 227 133 95 227 143 29 228 151 118 228 157 124 229 149 33 229 159 68 230 185 185 232 162 71 232 187 187 237 201 113 239 203 111 239 236 236 240 177 48 240 190 95 241 154 38 241 192 97 242 195 195 242 200 38 243 203 45 243 236 237 244 202 202 244 212 212 244 215 215 245 211 166 246 182 50 246 204 39 246 215 174 246 218 162 247 202 143 247 224 224 247 226 163 247 228 228 247 241 241 248 224 165 248 233 233 249 228 166 249 230 230 249 244 244 249 245 245 250 228 195 250 247 247 251 232 48 251 239 239 252 215 48 252 249 249 253 245 165 253 247 247 253 249 249 253 251 251 253 252 252 253 253 253 254 229 48 254 233 48 254 247 200 254 248 202 254 253 253 254 254 254 255 214 57 255 233 52 255 239 67 255 240 51 255 241 49 255 242 70 255 245 68 255 246 68 255 246 122 255 248 62 255 248 94 255 249 62 255 249 93 255 249 166 255 251 176 255 252 111 255 253 112 255 254 171 255 254 180 255 255 171 255 255 174 255 255 180 255 255 214 255 255 216 255 255 251 255 255 253 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@O?8@O?8@O?8@O?>@O?>@O?>@O?>@@O>@@G? @O?0@_?0@_? @_? @@?0@@?8@@Y<@@@>@@@_@@@O@@@G') ; yourself); yourself]
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5891
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5892
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5893
newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5894
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5895
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5896
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5897
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5898
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5899
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5900
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5901
     self newDataSet24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5902
     ImageEditor openOnClass:self andSelector:#newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5903
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5904
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5905
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5906
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5907
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5908
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5909
	constantNamed:#'GenericToolbarIconLibrary class newDataSet24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5910
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5911
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDPDQDADQ@@@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5912
H"TE@@@@@P@@@@@@@@TE@@@@@QDPDQDADQTE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5913
@QDPDQDADQLE@0@C@RH D"HAH"T5@0@0@RH D"HAH"TC@0L@@RH D"HAH"TEL3@@@RH D"HAH"L3L3L3AUUPUUTEUUT@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5914
@@@0@0@0@@@@@@@@@@L@@0@C') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8???T@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5915
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5916
    "Modified: / 06-02-2007 / 19:40:38 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5917
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5918
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5919
newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5920
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5921
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5922
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5923
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5924
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5925
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5926
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5927
     self newFileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5928
     ImageEditor openOnClass:self andSelector:#newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5929
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5930
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5931
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5932
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5933
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5934
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5935
	constantNamed:#'GenericToolbarIconLibrary class newFileBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5936
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5937
@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@@@@@@@@@@@ADAD@@@3@Y&Y&Y&@QDADP@@3@X@@@@@@P@@@P@@3@XN;.;.@QDADP@@3@XN; @@@ADAD@@@3@XN;
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5938
=/[0DQ@@@@3@X@; [6=/@@@@@@3@XAC =/@@A/@@@@3@X@D@[6A/C6@@@@3@X@@P=/[6=/@@@@3@X@@@[6=/[6@@@@3@XO@@=/[6=/@@@@3@XF<@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5939
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5940
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@8@@A<O??>O???O???O???O??>O??<O??<O??<O??<O??<O??<O??<O??<O?? O?? O?? O?? O?? G?? C?? @@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5941
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5942
    "Modified: / 06-02-2007 / 19:40:36 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5943
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5944
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5945
newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5946
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5947
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5948
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5949
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5950
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5951
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5952
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5953
     self newImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5954
     ImageEditor openOnClass:self andSelector:#newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5955
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5956
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5957
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5958
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5959
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5960
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5961
	constantNamed:#'GenericToolbarIconLibrary class newImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5962
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5963
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5964
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5965
A7\3LQE&Y&$FZP@IA7\3LQE&Y&ZVZPBPA7\3LQE&Y&XIBP$@BY&H!!DQ&Y&XF&Y@@BY&H!!DQ&Y&&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5966
@@BPBPBP@@@@@@@@@@$@BP@I') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5967
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5968
    "Modified: / 06-02-2007 / 19:40:31 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5969
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5970
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5971
newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5972
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5973
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5974
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5975
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5976
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5977
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5978
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5979
     self newMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5980
     ImageEditor openOnClass:self andSelector:#newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5981
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5982
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5983
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5984
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5985
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5986
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5987
	constantNamed:#'GenericToolbarIconLibrary class newMenu24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  5988
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5989
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5990
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5991
@QDQDQDQDQLE@0@C@RH"H"H"H"T5@0@0@R]2I7H'']2TC@0L@@RH"H"H"H"TEL3@@AUUUUUUUUUL3L3L3@@@@@@@@@@@@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5992
@@@0@0@0@@@@@@@@@@L@@0@C') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5993
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  5994
    "Modified: / 06-02-2007 / 19:40:29 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5995
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5996
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5997
newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5998
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5999
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6000
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6001
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6002
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6003
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6004
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6005
     self newSystemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6006
     ImageEditor openOnClass:self andSelector:#newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6007
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6008
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6009
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6010
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6011
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6012
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6013
	constantNamed:#'GenericToolbarIconLibrary class newSystemBrowser24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6014
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6015
@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&@@@@@@@@@@@@@FXFX@@FY&Y&Y#@@A&XFY @FQDQDQB@@A @@A @FQDQDQB@@A&XFY @CH"H"H"@@@FXFX@@@@@@@@@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6016
@@@@Y&@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"H
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6017
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6018
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 255 0 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@8@@A<_?#>_?''?_?''?_?''?_?#>_?!!<@ @8@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6019
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6020
    "Modified: / 06-02-2007 / 19:40:26 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6021
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6022
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6023
newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6024
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6025
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6026
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6027
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6028
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6029
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6030
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6031
     self newWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6032
     ImageEditor openOnClass:self andSelector:#newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6033
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6034
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6036
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6038
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6039
	constantNamed:#'GenericToolbarIconLibrary class newWindowSpec24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6040
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6041
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6042
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6043
AUUUT T"H%X@A @FARH"T T"H%I A A ARH"T T"H%HFA X@AUUUT UUUUH@Y&@@@"H"H H"H"Y&Y&Y&@@@@@@@@@@@@Y&@@@@@@@@@@@@@FA X@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6044
@@A A A @@@@@@@@@@X@A @F') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6045
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6046
    "Modified: / 06-02-2007 / 19:40:22 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6047
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6048
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6049
new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6050
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6051
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6052
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6053
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6054
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6055
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6056
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6057
     self new_24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6058
     ImageEditor openOnClass:self andSelector:#new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6059
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6060
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6061
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6062
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6063
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6064
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6065
	constantNamed:#'GenericToolbarIconLibrary class new_24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6066
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6067
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6068
@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6069
@@@@@@@@@@$FZP@I@@@@@@@@@@BVZPBP@@@@@@@@@@@IBP$@@@@@@@@@@@@F&Y@@@@@@@@@@@@&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6070
@@BPBPBP@@@@@@@@@@$@BP@I') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@BR@@AT@@@8@@G?@@@8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6071
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6072
    "Modified: / 06-02-2007 / 19:40:20 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6073
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6074
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6075
packageIn24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6076
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6077
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6078
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6079
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6080
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6081
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6082
    "
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6083
     self packageIn24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6084
     ImageEditor openOnClass:self andSelector:#packageIn24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6085
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6086
    "
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6087
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6088
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6089
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6090
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6091
        constantNamed:'GenericToolbarIconLibrary class packageIn24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6092
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6093
%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT,KB0,KAE]IRT%IRT%IRT%IRT%IRT%IRT,KB0,KAE]IRT
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6094
%IRT%IRT%IRT%IRT%IRT,KB0,KAEA)RT%IRT%IRT%IRT%IRT%IRT,K@),KAE]IRT%IRT%IRT%IRT%IRTDV(S LT:1\VG!!2Y.%IRT%IRT%IRT%IRT%E(WZC^3
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6095
IBPTL"JT%IRT%IRT%IRT%IRT%IR:AP!!;J>Q8;YRT%IRT%IRT%IRT%IRT%IRT8Q&Y-(= %IRT%IRT%IRT%IRT%IP]UJ\#H6P-#W+''9=+Z^Z@!!%IRT%IRTKD$3
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6096
5:0*9>]MN^_''#$_'')M[(,YRT%IQ7 X"#Y*F;T)(*J._''93?I_>[B2)RT%IPA+\ =FFDJE)\1%]9V:7D''''HS"]YRT%IP ]) \C^UKO+2/"($DM%6EP@CN.YRT
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6097
%IP<*AJ))-%NW11O9[V]$6J.853\)YRT%IR705]01IZ+X$Z*Z72QK2 ZK-MD%IRT%IRTMLE2''+5''6D@K_VVLU>%^ 63*%IRT%IRTP66_[^CK$L3ME]H00DFB
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6098
TQ=Y%IRT%IRT,.0I;N3_;M<N60M,Z]CF7V>R%IRT%IRTRCU3R$*>SMSG@ <;T; [A:JT%IRT%IRT%I.4TE,8"4IX_!!9UCL>F%IRT%IRT%IRT%IRT@PDA@RWU
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6099
/6LP4YRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT') ; colorMapFromArray:#[220 170 60 238 212 149 215 159 53 206 154 55 248 206 99 145 207 140 177 181 168 126 115 98 128 218 120 222 166 61 249 212 116 225 175 64 158 109 29 251 206 88 219 165 60 215 159 52 128 116 97 174 193 173 241 194 77 129 218 121 98 209 89 157 116 45 249 211 118 142 222 137 252 212 110 125 216 119 216 165 58 153 106 27 250 204 86 240 229 207 213 155 51 167 115 31 228 184 77 235 193 90 157 180 156 187 145 62 89 208 81 193 187 180 121 207 115 247 203 93 219 169 60 86 207 77 167 126 53 122 217 115 236 227 207 132 193 128 169 124 40 227 178 66 156 111 33 245 211 123 107 212 99 216 166 74 177 131 52 215 160 56 246 203 92 115 214 108 213 157 53 163 184 162 91 208 83 165 113 30 227 180 69 253 212 106 253 209 92 252 210 102 224 174 63 177 125 36 215 158 52 207 155 59 167 122 45 72 176 65 233 184 71 92 57 7 196 143 49 215 173 93 218 161 56 253 209 91 217 159 54 177 194 176 247 201 83 250 205 87 203 148 50 167 116 32 232 212 151 163 112 30 212 174 102 161 110 29 254 213 105 222 172 62 214 157 52 151 108 38 177 196 177 208 153 51 215 164 57 238 191 79 167 122 39 248 202 84 159 181 158 251 212 112 231 182 69 184 133 47 175 194 174 144 103 39 244 210 125 220 169 60 136 220 131 176 124 36 142 206 138 233 187 78 178 128 37 225 170 65 154 177 153 161 112 30 223 173 63 249 207 98 179 134 49 217 161 56 169 178 167 208 159 56 246 200 83 241 226 190 126 209 120 112 73 12 159 181 157 125 217 118 157 117 51 219 174 76 214 156 51 245 201 92 122 216 115 243 205 111 173 122 34 176 126 37 234 186 75 233 185 72 127 115 97 92 207 83 247 211 119 219 181 98 254 211 98 214 158 53 175 137 64 129 200 123 53 32 3 117 215 110 207 156 58 195 156 74 128 98 47 240 194 81 0 0 0 243 210 129 227 177 66 246 211 122 249 203 85 119 214 112 240 201 102 165 145 115 239 193 82 238 198 99 199 151 53 225 171 65 170 128 44 243 210 128 195 195 195 246 211 121 245 202 95 221 199 159 244 198 80 208 160 72 239 191 75 242 195 78 234 186 71 229 180 68 197 151 65 251 208 99 227 177 65 254 211 95 85 206 76 236 217 172 206 151 55 99 210 90 169 134 80 196 158 81 116 214 109 214 181 116 159 110 29 201 150 51 177 197 177 242 213 143 254 211 94 214 164 58 217 160 55 167 129 71 170 121 36 177 132 49 231 183 73 203 155 55 226 176 65 92 208 83 166 115 31 216 159 53 254 212 104 250 208 100 210 167 74 217 164 62 175 129 46 166 120 42 212 161 56 130 93 31 168 118 32 194 194 194 155 111 39 162 116 35 216 159 54 168 156 140 250 208 99 206 158 69 221 171 61 245 199 81 69 43 5 208 156 56 196 148 52 164 113 30 241 212 143 221 166 60 224 170 65 177 197 175 223 174 64 219 168 59 119 215 112 252 207 89 241 196 87 131 91 25 239 196 90 196 148 50 160 116 42 253 211 103 221 166 61 158 181 156]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@G<@@G<@@G<@@G<@@??@@_>@@O<@@G8@A??8G??<O??<O??<O??<O??<O??8G??8G??8G??8G??0C??@@?<@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6100
!
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6101
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6102
packageOpen24x24Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6103
    <resource:#programImage>
4072
4a9f93742645 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4071
diff changeset
  6104
    ^ self packageOpen24x24Icon2
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6105
!
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6106
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6107
packageOpen24x24Icon1
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6108
    "This resource specification was automatically generated
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6109
     by the ImageEditor of ST/X."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6110
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6111
    "Do not manually edit this!! If it is corrupted,
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6112
     the ImageEditor may not be able to read the specification."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6113
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6114
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6115
     self packageOpen24x24Icon1 inspect
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6116
     ImageEditor openOnClass:self andSelector:#packageOpen24x24Icon1
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6117
     Icon flushCachedIcons
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6118
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6119
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6120
    <resource: #image>
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6121
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6122
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6123
	constantNamed:'GenericToolbarIconLibrary class packageOpen24x24Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6124
	ifAbsentPut:[(Depth8Image new) width: 24; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6125
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@OB (JB (JB (J
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6126
B (JB @@@@@@@@@@@@<JA XFA XFA XFA LHC@@@@@@@@@@@C1,FA XFA XFA XFA XIE0(@@@@@@@@[B XFA XFA XFA XFA@T^GA J@@@@@AHJA XFA XF
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6127
A XFA XBA1(_GQ0J@@@@EQ4F@PXFA XFA XFA XEF2$#G (@@@@UC2@ HB@_G!!<_GQ<_G14/L"0 B @@@@@OK2<,KB,+J2$)JR$)GP(%MB<JB @@@@<0MST3
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6128
L3L0LB</K20$EQ(JJ0(PB @@@@<OCP4MCP0LC@0JB (JFQ LB 8TB @@@@@@B!!(ZF!!(ZF!!(ZF!!(ZFQ PC!!@TB @@@@@@C14^G!!8]GQ4]GA,[F1$VEQTTB @@
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6129
@@@@DA8_G!!8\GA0\GA0\F1$VEQTTB @@@@@@D!!8!!HQ<_G1<]GA0\F1$VEQTTB @@@@@@D"D%IRT"H!!4]GQ4]GQ$VEQTJ@@@@@@@@D"\*JBX&I!!8^G!!8^GQ$V
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6130
EQ@@@@@@@@@@D280J"(''I2@ HA8^GQ$VD@@@@@@@@@@@D3P4LS@-KR4%IBD!!H@,J@@@@@@@@@@@@DP,KB0,KB0,KB0,KB0,@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 24 40 4 56 100 4 60 110 24 86 40 36 60 80 44 44 40 48 70 50 88 46 10 108 56 10 108 58 10 112 58 0 116 60 10 124 66 10 124 72 20 132 74 20 132 76 20 140 78 20 140 82 30 144 82 20 144 86 30 148 92 40 152 96 40 152 98 40 160 104 50 164 106 50 172 116 60 180 124 70 180 128 70 188 132 70 192 140 80 196 140 80 196 142 80 196 150 90 200 154 90 204 148 90 204 150 90 204 158 90 204 162 100 208 158 100 208 166 100 212 156 90 212 170 110 216 162 100 216 164 110 216 174 110 216 178 120 220 170 120 220 182 120 220 186 130 224 184 140 228 190 150 228 200 160 244 224 200]; mask:((Depth1Image new) width: 24; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@O?<@_?<@??>A???C???G??>O??<O??<_??<_??<G??<G??<G??<G??<G??8G??0G?? G??@G?>@') ; yourself); yourself]
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6131
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  6132
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6133
packageOpen24x24Icon2
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6134
    "This resource specification was automatically generated
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6135
     by the ImageEditor of ST/X."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6136
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6137
    "Do not manually edit this!! If it is corrupted,
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6138
     the ImageEditor may not be able to read the specification."
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6139
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6140
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6141
     self packageOpen24x24Icon2 inspect
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6142
     ImageEditor openOnClass:self andSelector:#packageOpen24x24Icon2
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6143
     Icon flushCachedIcons
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6144
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6145
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6146
    <resource: #image>
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6147
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6148
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6149
	constantNamed:'GenericToolbarIconLibrary class packageOpen24x24Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6150
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6151
TUEQTUEQTUEQTTR3TUEQTUEQTUEQTUEQTUEQTUEQTUEQ3;=MTUEQ63]QTUEQTUEQTUEQTUEQTUF3V#V@W%EQFXECTUEQTUEQTUEQTUEQ,08B\7>$%H9^V7M(
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6152
)%EQTUEQTUEQTPZ3W0<4\6"$/+6[Y6"L+MYQTUEQTUEQ/21K*@=[''\4;.:-5''V"XDJCITUEQTUEQG#GQ*A)&4+,0R-<<%QL\!!UW^"UEQTUEQT\,G)47F8K1V
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6153
$!!^/$70:*T#R5UMQTV(8Z%6CP@/T.<]#-;@#B$$T.YX.]4EQTUD8NV,3^!!^0E"H/[:LVX2JF4JGD&UEQTUEQ "Z.2+ZWOT*GJ&OSR)>RXLU0_V%6TUEQTXJ"
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6154
P+5WX)KB"6I;3):*7FE-VBBOTUEQTUER)W I[,!!.6,LECLA\Q%SLO%EQTUEQTUF=/P@X,U#CDZEEEV"P"A=NTUEQTUEQTUE5%*T@I[!!17R$RID_]\%PCTUEQ
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6155
TUEQTUDA!!XV5-[U>^]7]7P$I[P"4TUEQTUEQTUDADA@PDABJ-T^EXVE!!*R64TUEQTUEQTUFMGDIB]GR:DACA0YFQAI24TUEQTUEQTUEQSFWYZF U HAOS2"D
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6156
[M!!QTUEQTUEQTUEQTZ5YY6][)JRLJEA$&%EQTUEQTUEQTUEQTUDMJ0HO\94!!SI+WTUEQTUEQTUEQTUEQTUEQL#X]C40[&))QTUEQTUEQTUEQTUEQTUEQT[H?
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6157
I9*ZTUEQTUEQTUEQTUEQTUEQTUEQTUFZ&%EQTUEQTUEQTUEQ') ; colorMapFromArray:#[240 158 10 244 178 40 255 254 150 188 168 150 255 222 60 156 108 10 252 204 100 255 252 180 212 126 30 255 208 50 204 168 0 184 134 0 232 174 60 212 134 60 255 232 110 255 255 160 255 228 70 148 90 0 252 240 150 248 216 70 228 144 10 255 254 130 212 182 0 192 148 0 248 184 30 252 204 60 255 244 130 180 104 60 255 234 80 248 214 150 252 186 50 208 112 10 196 94 20 255 244 110 220 196 0 200 162 0 248 230 110 236 148 10 255 212 70 180 106 60 255 240 90 240 204 120 255 255 0 252 234 130 255 216 110 212 128 30 255 192 20 228 210 0 208 176 0 255 240 170 204 138 90 255 230 100 255 255 150 255 246 100 216 120 40 248 200 110 252 184 40 255 222 120 244 196 50 255 198 30 188 142 0 216 190 0 200 198 200 204 104 30 255 180 10 180 168 160 255 236 80 232 188 110 255 246 230 236 180 80 240 194 50 228 168 50 255 204 40 196 156 0 224 204 0 255 252 190 220 138 40 255 186 20 180 158 140 255 242 90 248 204 80 0 0 0 252 174 20 200 118 40 212 124 20 255 210 50 212 184 0 184 136 0 232 146 10 236 178 60 255 204 50 255 255 140 255 248 100 248 182 40 252 204 70 255 252 170 220 138 20 255 216 60 220 198 0 216 192 0 208 116 30 244 192 60 255 216 70 255 255 130 255 254 110 208 112 40 252 182 30 255 254 170 204 116 30 255 206 40 180 134 10 248 248 0 224 140 20 228 130 0 255 188 20 255 255 120 255 238 80 248 178 30 204 110 50 200 116 30 252 212 50 255 212 50 180 130 0 224 208 0 232 148 10 212 120 30 255 228 90 255 255 110 255 244 90 248 190 50 244 186 60 255 218 100 252 230 80 255 218 60 220 200 0 232 222 0 216 120 10 220 124 10 255 234 100 252 242 10 255 250 100 232 158 40 236 184 80 184 120 80 244 216 80 255 224 70 228 214 0 184 140 0 248 182 20 236 158 20 255 200 40 204 164 0 255 246 90 208 196 180 204 158 130 255 244 140 212 132 30 255 254 120 204 180 10 224 210 0 248 194 40 220 126 10 255 212 60 212 178 0 255 252 100 248 182 30 228 160 60 255 216 90 255 255 170 255 214 50 164 116 20 168 114 0 248 200 50 212 136 50 255 252 130 196 152 0 200 158 0 240 156 10 204 148 110 255 194 50 188 166 150 255 220 60 180 134 0 232 226 0 224 130 0 252 206 50 255 242 110 204 166 0 208 172 0 248 176 20 252 174 10 255 190 40 252 250 100 255 226 70 236 232 0 152 96 0 208 108 10 220 128 10 255 190 20 212 180 0 216 192 10 224 140 30 252 180 20 255 196 50 188 104 40 255 238 90 228 220 0 252 216 140 224 148 30 255 255 190 255 196 30 220 194 0 192 146 0 232 144 10 228 150 40 176 124 100 180 96 50 255 244 100 156 98 0 252 196 90 240 182 40 212 114 10 255 202 40 188 140 0 200 160 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@C@@@GF@@O''@@?? C??0G??8G??<C??>_??>O??<G???C???A??<A??8A??8A??8A??8A??8@??0@_? @O?@@G>@@C8@@A @') ; yourself); yourself]
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6158
!
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
  6159
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6160
packageOut24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6161
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6162
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6163
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6164
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6165
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6166
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6167
    "
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6168
     self packageOut24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6169
     ImageEditor openOnClass:self andSelector:#packageOut24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6170
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6171
    "
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6172
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6173
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6174
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6175
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6176
        constantNamed:'GenericToolbarIconLibrary class packageOut24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6177
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6178
!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(YN%XZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!)*NX9ZF!!(ZF
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6179
!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF$E%TO4*V!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZPO@!!:^%>#%(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!&>''[#</N3,// RF!!(ZF!!(ZF!!(ZF!!(ZF&!!,HVUAP
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6180
TEAPTAH.!!(ZF!!(ZF!!(ZF!!(ZF!!(ZFEC,;[F1Q!!XZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZFDCT@XVF%NHZF!!(ZF!!(ZF!!(ZF!!(YO@* ]EHIVB0.\JBH"/8-G!!(ZF!!(ZFN*0\
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6181
%H= ]:Z5HKB+.JI%R8^:Y(ZF!!(Y0G2T%_G1[\''UDCRMZ@Y.G([)WSXZF!!(XZ!!;Y1\WD%IRT*_CBX.U1''J3DG@8ZF!!(Y>_V^Q+0)@PEN6-(%FY1VCA2EBE8ZF
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6182
!!(ZSER.WA"ZR$)F/B)&HJ4E3E&''A#XZF!!(X6!!L@GWWNSPU]RSA"7\2FJ#I<4!!(ZF!!(ZFD1L>KV$!!K@\''.1$^0LE6BSN*!!(ZF!!(ZF,&I-X&I),*9U/P89Z &@
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6183
Z6,E!!(ZF!!(ZF]@18C@0LC@0L,)83)HE+,;QE!!(ZF!!(ZF+QEH,[DQ_7=?_7>3*Z@OIF"F!!(ZF!!(ZF!!$''B^[1XW%9^OS^ (G,$!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!#IC
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6184
JVP$''XZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF') ; colorMapFromArray:#[84 202 80 240 202 100 212 174 100 208 160 60 156 180 160 152 108 40 244 198 80 224 174 60 128 218 120 176 126 40 252 208 90 72 180 60 220 166 60 100 144 90 156 112 40 152 106 30 68 174 60 216 160 60 120 208 120 176 132 50 68 164 60 240 192 80 220 168 60 200 150 50 156 118 50 144 104 40 240 212 150 144 206 140 216 166 70 188 146 60 176 138 60 244 206 110 64 168 60 220 170 60 68 44 10 72 130 70 128 116 100 248 212 120 244 200 80 224 176 60 56 34 0 168 130 70 244 212 120 240 194 80 220 172 60 200 152 50 156 178 150 100 210 90 240 212 140 236 186 80 192 188 180 180 128 40 168 122 50 84 204 80 216 182 120 212 156 50 176 182 170 156 112 30 236 228 210 88 208 80 144 208 140 216 156 50 180 134 50 116 214 110 252 210 90 232 182 70 212 162 60 168 156 140 156 172 120 128 98 50 248 206 100 236 194 90 216 162 60 164 146 120 116 216 110 244 202 100 232 188 80 212 168 70 176 194 180 240 230 210 92 208 80 72 176 70 236 186 70 255 212 90 120 214 110 168 120 40 76 186 70 232 184 70 212 158 50 124 216 120 164 174 80 244 214 140 248 208 100 228 176 70 216 158 50 120 216 110 168 126 50 84 200 70 224 170 70 128 200 120 184 134 50 132 92 30 236 218 170 248 204 90 196 196 200 216 164 60 172 122 40 168 116 30 84 206 80 224 172 70 136 220 130 176 196 180 240 226 190 252 212 110 232 212 150 228 178 70 208 152 60 180 188 130 168 122 40 60 154 60 224 166 60 204 148 50 124 218 120 132 94 30 244 210 130 248 200 80 228 184 80 216 160 50 172 122 30 168 118 30 76 188 70 232 186 70 204 156 60 168 178 170 0 0 0 252 208 100 240 198 100 220 182 100 216 166 60 172 128 40 168 124 40 220 200 160 132 194 130 196 152 70 176 198 180 252 204 90 248 202 80 228 180 70 208 158 70 164 184 160 160 182 160 244 196 80 255 214 110 196 158 80 176 194 170 252 210 100 64 164 60 196 194 190 208 154 60 164 116 40 160 110 30 244 202 90 92 58 10 128 210 120 176 124 40 76 180 70 72 178 60 144 222 140 208 160 70 164 112 30 160 116 40 60 152 50 216 174 90 196 144 50 176 130 50 252 206 90 64 166 60 220 162 60 208 156 60 164 114 30 160 112 30 68 172 60 255 212 100 196 156 70 52 32 0 252 212 100 240 196 90 220 174 80 208 154 50 156 116 50 108 212 100 112 74 10 224 172 60 196 148 50 168 134 80]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@A @@C0@@G8@@O<@@_>@@??@@G<@@G<@A??8G??<O??<O??<O??<O??<O??8G??8G??8G??8G??0C??@@C<@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6185
!
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  6186
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6187
photoAreaIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6188
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6189
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6190
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6191
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6192
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6193
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6194
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6195
     self photoAreaIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6196
     ImageEditor openOnClass:self andSelector:#photoAreaIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6197
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6198
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6199
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6200
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6201
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6202
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6203
        constantNamed:'GenericToolbarIconLibrary class photoAreaIcon'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6204
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6205
QTUEQTT@@@@@@@@@@@@@@@@@@@@@@@@@QTUEQTT@@@@@@@@@@@@@@@@@@@@@@@@@QTT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QTT@@@@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6206
@@@@@@@@QTT@@C !!NC 8NC 8@@@@@@@@@@@@@@@@@@@@NQ]CP4L*@@@@@@@@@@@@@@@AI @@@@ACI!!P.JR$#JR$)JR$)JR$)JR$%I @@@@ACI#<.J2$#H2L#
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6207
H2L#H2L#H2$TI @@@@ACEATTA"L#H2LJB (JB"XJA",+I @@@@ACI!!TTDDH#IS8FJR$)JRX&IPX+I @@@@ACEATKH2L&B"$)IRD JR$)I (+I @@@@ACI#<T
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6208
D@X&J3(5CAX1MST)N"X+I @@@@ACI#<&DB$&HRPVLS01LSTUN"X+I @@@@ACB!!4JD@4&CQ(VOA8^KCDUN"X+I @@@@ACIR8JJ2$&JQ(NKC(1KCDUN"X+I @@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6209
@@ACIP(\J3,&A#<<LP81LT@:A!!PFI @@@@ACMRT%A X:MR$0C 8NF#(!!MQPFI @@@@ACBST=A XFA#<)LC@0HS(?I XFI @@@@@[BR<)HRD!!HRD:N#(:N#(!!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6210
N#(:I @@@@@[F1(ZF!!(ZF!!)CL#H2P4PZF!!)D@DUE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DUE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DUE@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6211
@@@@@@@@@DUEQTUE@@@@@@@@@@@@@@@@@@@@@@@@@DUEQTUE') ; colorMapFromArray:#[143 143 143 162 162 162 23 41 73 195 195 195 212 212 212 222 222 222 236 236 236 242 242 243 255 255 255 138 138 138 161 161 161 179 179 179 37 53 82 208 208 209 72 84 105 235 235 235 243 243 243 254 254 254 123 131 145 158 158 158 178 178 178 193 194 194 39 61 99 92 92 92 221 225 233 240 241 244 122 122 122 135 135 135 155 155 155 168 173 182 169 179 200 77 77 77 219 219 219 229 229 229 239 241 243 248 248 248 133 133 133 153 153 153 174 174 174 190 190 190 205 205 205 216 217 217 100 100 100 240 240 240 85 107 141 152 152 152 171 171 172 187 187 187 202 202 202 44 68 111 98 98 98 237 237 237 247 248 248 150 150 150 161 164 172 186 186 186 201 201 201 215 215 215 215 217 228 238 236 234 74 97 140 145 145 146 167 167 167 184 184 184 192 196 204 85 85 85 225 225 225 108 108 108 116 116 116 25 25 25]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'>@@@>@@@0@@@0@@@3?@@G??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??;@@@C@@@C@@@_@@@_') ; yourself); yourself]
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6212
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6213
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6214
photoIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6215
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6216
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6217
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6218
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6219
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6220
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6221
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6222
     self photoIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6223
     ImageEditor openOnClass:self andSelector:#photoIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6224
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6225
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6226
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6227
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6228
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6229
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6230
        constantNamed:'GenericToolbarIconLibrary class photoIcon'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6231
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6232
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6233
@@@@@@@@@@@@@C !!NC 8NC 8@@@@@@@@@@@@@@@@@@@@NQ]CP4L*@@@@@@@@@@@@@@@AI @@@@ACI!!P.JR$#JR$)JR$)JR$)JR$%I @@@@ACI#<.J2$#H2L#
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6234
H2L#H2L#H2$TI @@@@ACEATTA"L#H2LJB (JB"XJA",+I @@@@ACI!!TTDDH#IS8FJR$)JRX&IPX+I @@@@ACEATKH2L&B"$)IRD JR$)I (+I @@@@ACI#<T
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6235
D@X&J3(5CAX1MST)N"X+I @@@@ACI#<&DB$&HRPVLS01LSTUN"X+I @@@@ACB!!4JD@4&CQ(VOA8^KCDUN"X+I @@@@ACIR8JJ2$&JQ(NKC(1KCDUN"X+I @@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6236
@@ACIP(\J3,&A#<<LP81LT@:A!!PFI @@@@ACMRT%A X:MR$0C 8NF#(!!MQPFI @@@@ACBST=A XFA#<)LC@0HS(?I XFI @@@@@[BR<)HRD!!HRD:N#(:N#(!!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6237
N#(:I @@@@@[F1(ZF!!(ZF!!)CL#H2P4PZF!!)D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6238
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[143 143 143 162 162 162 23 41 73 195 195 195 212 212 212 222 222 222 236 236 236 242 242 243 255 255 255 138 138 138 161 161 161 179 179 179 37 53 82 208 208 209 72 84 105 235 235 235 243 243 243 254 254 254 123 131 145 158 158 158 178 178 178 193 194 194 39 61 99 92 92 92 221 225 233 240 241 244 122 122 122 135 135 135 155 155 155 168 173 182 169 179 200 77 77 77 219 219 219 229 229 229 239 241 243 248 248 248 133 133 133 153 153 153 174 174 174 190 190 190 205 205 205 216 217 217 100 100 100 240 240 240 85 107 141 152 152 152 171 171 172 187 187 187 202 202 202 44 68 111 98 98 98 237 237 237 247 248 248 150 150 150 161 164 172 186 186 186 201 201 201 215 215 215 215 217 228 238 236 234 74 97 140 145 145 146 167 167 167 184 184 184 192 196 204 85 85 85 225 225 225 108 108 108 116 116 116]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@C?@@G??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??8@@@@@@@@@@@@@@@@') ; yourself); yourself]
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6239
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6240
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6241
redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6242
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6243
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6244
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6245
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6246
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6247
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6248
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6249
     self redoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6250
     ImageEditor openOnClass:self andSelector:#redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6251
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6252
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6253
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6254
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6255
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6256
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6257
	constantNamed:#'GenericToolbarIconLibrary class redoXP24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6258
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6259
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A,WEEKUE5-@@@@@@@@@@@@@@@@@@@@@E0>D!!</HQ%@VF4@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6260
@E!!BQ&L@@@@@W@HXHBT(KS@2F$U''@@@@@C-RT40@@@A(O1 [FA@OEB\.LR8FV0@@@C)MS4(@@@APDQ,X@%]"VTPPKB</CE,@@C%GRT(@@@@?F1,GV0@@@@AV
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6261
@2H.LP9[@@,8PT(@@F EF1-C@@@@@@@@X#8]J2<MV0(6M4(@@FDKF1-K@@@@@@@@@FT>GB -CP 4MT(@@FPGF1-H@@@@@@@@@@A&O!!,%J"\1L4(@@@@AF1,E
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6262
Z @@@@A)X&I!!VP@WIBX,K4(@@@ANE!!,OU@@@@FT?B0,KB0,UGBD%JT(@@@A[A1,[@V(@@EXQF1,[F1,[F1,^H4(@@@@@P1X[D4,@@E<DD1LSD1LSD1LSD4(@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6263
@@@@W T[F0%U@@@@@@@@@@@@@@@@@@@@@@@@@D(QF1,BV @@@@@@@@@@@@@@@@@@@@@@@F,=E!!,X@%(@@@@@@@@@@@@@@@@@@@@@@@A @!! [F@IZ@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6264
@@@@@@@@@@@@@@@@V HXF05P@@@@@@@@@@@@@@@@@@@@@@@@@E(BDT!!+@@@@@@@@@@@@@@@@@@@@@@@@@@AZOF,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6265
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A?@@C?0^G?8^O?<^O?>^O!!?^_@?>_@_>_@O>O!!?>O#?>O3?>G3?>G8@@C<@@C>@@A?@@@?@@@_@@@N@@@@@@@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6266
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6267
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6268
reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6269
    "This resource specification was automatically generated
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6270
     by the ImageEditor of ST/X."
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6271
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6272
    "Do not manually edit this!! If it is corrupted,
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6273
     the ImageEditor may not be able to read the specification."
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6274
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6275
    "
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6276
     self reload24x24Icon inspect
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6277
     ImageEditor openOnClass:self andSelector:#reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6278
     Icon flushCachedIcons
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6279
    "
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6280
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6281
    <resource: #image>
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6282
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6283
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6284
	constantNamed:'XPToolbarIconLibrary class reload24x24Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6285
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6286
\GA0\GA0\GA0\GA0\GA0\GA0[6=/[6=/\GA0\GA0\GA+N <@B0@OJU1+[6=/W@I+\GA0\GA0Z3(MJ4)YV%9RMAXIWF-\B Y+\GA0\GA+C2EXR346K3!!DT%9P
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6287
DQ\JTP-+\GA0\G@_H%\<IBT&KR</NC9YW")QX -+\GA0\FXMTTH4MSX6K"<0NC 9SFI^Z@-+\GA0\@<4U5D4MC-RW$0>NC >O$1EZ@-+\GA0Z05CD DD@0@A
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6288
DCQ^VS8>O#=EZ@-+\GA0N!!$FEA UBD]+Z!!0MR&EEO$UEZ@-+[6=/C0D#L#H\W6-+Z6,MTVELSD5SZ@-+[6=/@SMUU$%%Z6-+[ 1PXVI(ZF!!(Z@-+[6=/Z6-+
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6289
Z6-+Z6-+B @@@@@@@@@@@@E+[0H@@@@@@@@@@@@JZ6-+Z6-+Z6-+Z6-+[0-(ZF!!(ZFI"T@))Z6-+Z5-''Y4@AZ6-+[0-(T5MMT6IQCVM+Z6-,LTEHL0DNZ6-/
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6290
[0-(QTUESFIPCQ9-Z6@SGR@[BQ$(Z6-/[0-(QTUEO4QYW#PP@ @EA0DRP05$Z6-/[0-(QUMEO#8>QEM^VC04MEEWM@1+Z6-/[0-(X&!!SO#8>NC\6OS45MTIQ
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6291
CUQ+Z6=/[0-(U2)!!V#88NC\.K"0,OED"F&-+Z6=/[0-QB!!LQTVISQC8=OS5QVBDLZ6-+[6=/[0XJQ&-OBQ$;VU9^WT(+CR]+Z6-/[6=/[0ENZ6-+Z4<\C@@K
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6292
@@0''Z6-+Z6-/[6=/[6-+Z6-/Z6-+Z6-+Z6-+Z6-+Z6=/[6=/') ; colorMapFromArray:#[0 79 191 15 80 191 15 80 192 15 95 191 16 95 176 16 95 191 16 95 192 31 95 176 31 95 191 31 95 192 31 96 192 31 111 207 32 96 192 32 111 207 47 96 192 47 111 192 47 112 207 47 112 208 47 127 208 48 111 192 48 112 176 48 112 191 48 127 208 63 112 192 63 127 176 63 128 208 64 112 192 64 127 191 79 127 192 79 128 191 79 128 192 79 128 207 79 143 191 79 144 223 79 159 223 80 143 191 80 175 239 80 176 239 80 176 240 95 128 192 95 143 192 95 143 207 95 160 224 95 175 224 95 176 239 95 176 240 95 191 240 95 191 255 95 192 255 96 143 208 96 144 191 96 144 192 96 176 239 96 191 239 96 191 240 96 192 240 96 192 255 96 207 255 111 144 208 111 176 239 111 191 239 111 192 240 111 207 255 111 208 255 112 159 207 112 160 207 112 192 239 112 192 240 112 207 255 112 208 255 127 159 192 127 159 207 127 160 192 127 160 207 127 207 240 127 208 240 127 208 255 127 223 255 128 159 207 128 160 207 128 207 240 128 208 240 128 208 255 128 223 255 143 160 207 143 175 192 143 176 207 143 208 240 143 208 255 143 223 255 143 224 255 144 176 208 144 176 223 144 223 255 144 224 255 159 175 207 159 176 223 159 224 255 159 239 255 160 176 207 160 191 207 160 191 208 160 191 224 160 192 208 160 239 255 175 191 207 175 191 208 176 192 208 176 207 224 191 192 223 192 208 224 240 240 239 240 240 240]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G>F@_?.@??>A??>C??>C??>C??>G>?>G<O>G8?>@@?>_?@@_?C8_>O8_?_8_??8_??0_??0_?? _??@]?>@X_8@@@@@') ; yourself); yourself]
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6293
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  6294
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6295
rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6296
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6297
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6298
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6299
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6300
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6302
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6303
     self rightArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6304
     ImageEditor openOnClass:self andSelector:#rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6305
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6306
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6307
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6308
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6309
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6310
	constantNamed:#'GenericToolbarIconLibrary class rightArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6311
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6312
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6313
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6314
@@XB@@@@@@@@@@@@@@@AA0(@@@@@B ,LB @D@ @@@@@@@@@@@@@MB \NB ,ODADRD0(@A H@@@@@@@@@@@@M@@TTEQLQE!!\WD 0K@@PB@@@@@@@@@@@MB <W
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6315
E1\WD!!\WD!!LYDQ(B@@@@@@@@@@@AB <[D10[GQ8QG!!$QF H@@@@@@@@@@@@AA!!(ZF!!(ZE1H^FQDZ@ @@@@@@@@@@@@@A@ HB@ HB@1DYDQ(B@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6316
@@@@@@@@@@@@@QXQF H@@@@@@@@@@@@@@@@@@@@@@@@@@0PZ@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q(B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6317
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6318
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 0 0 0 64 96 32 128 160 128 160 192 32 96 128 128 192 192 0 64 64 160 192 192 192 224 224 160 192 224 96 192 224 32 64 96 160 224 224 128 192 224 96 160 192 0 160 192 0 128 192 64 192 192 64 160 192 96 192 192 32 160 192 0 128 160 192 192 192 64 224 224 0 96 128 32 192 192 64 192 224 0 192 224 0 192 192]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@D@@@F@@@G@@@G @@G0@O?8@O?<@O?>@O??@O??@O?>@O?<@O?8@@G0@@G @@G@@@F@@@D@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6319
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6320
    "Modified: / 06-02-2007 / 19:40:15 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6321
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6322
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6323
rightArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6324
    "This resource specification was automatically generated
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6325
     by the ImageEditor of ST/X."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6326
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6327
    "Do not manually edit this!! If it is corrupted,
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6328
     the ImageEditor may not be able to read the specification."
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6329
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6330
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6331
     self rightArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6332
     ImageEditor openOnClass:self andSelector:#rightArrow24x24disabledIcon
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6333
     Icon flushCachedIcons
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6334
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6335
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6336
    <resource: #image>
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6337
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6338
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6339
	constantNamed:'GenericToolbarIconLibrary class rightArrow24x24disabledIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6340
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6341
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6342
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6343
@@XB@@@@@@@@@@@@@@@AA0(@@@@@B ,LB @D@ @@@@@@@@@@@@@MB \NB ,ODADRAP(@A H@@@@@@@@@@@@M@@TSE@TQEQXVD 0K@@PB@@@@@@@@@@@MB <V
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6344
E!!XVD!!XVD TODQ\B@@@@@@@@@@@AB <PAQ PFQLQD0<QE0H@@@@@@@@@@@@AA!!\WE1\WE!!HSC1DW@ @@@@@@@@@@@@@A@ HB@ HB@1DODQ\B@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6345
@@@@@@@@@@@@@QTQE0H@@@@@@@@@@@@@@@@@@@@@@@@@@0PW@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q\B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6346
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6347
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 25 25 25 0 0 0 48 48 48 102 102 102 153 153 153 80 80 80 172 172 172 44 44 44 182 182 182 214 214 214 185 185 185 166 166 166 57 57 57 204 204 204 176 176 176 144 144 144 115 115 115 96 96 96 134 134 134 163 163 163 124 124 124 92 92 92 70 70 70 156 156 156 137 137 137]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@D@@@F@@@G@@@G @@G0@O?8@O?<@O?>@O??@O??@O?>@O?<@O?8@@G0@@G @@G@@@F@@@D@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6348
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
  6349
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6350
sUnit24x24BaseIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6351
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6352
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6353
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6354
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6355
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6356
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6357
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6358
     self sUnit24x24BaseIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6359
     ImageEditor openOnClass:self andSelector:#sUnit24x24BaseIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6360
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6361
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6362
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6363
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6364
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6365
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6366
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24BaseIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6367
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6368
@@@@@@@@@@@@@@@BH"H"H"H"H"H"H@H"H"H"H"H"H"H0@"H"H"H"H"H"H3@BH"H"H"H"H"H3L@H"H"H"H"H"H3L0@"H"H"H"H"H3L3@BH"H"H"H"H3L3L@H"
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6369
H"H"H"H3L3L0@"H"H"H"H3L3L3@BH"H"H"H3L3L3L@H"H"H"H3L3L3L0@"H"H"H3L3L3L3@BH"H"H3L3L3L3L@H"H"H3L3L3L3L0@"H"H3L3L3L3L3@BH"H3
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6370
L3L3L3L3L@H"H3L3L3L3L3L0@"H3L3L3L3L3L3@BH3L3L3L3L3L3L@H3L3L3L3L3L3L0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6371
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6372
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6373
sUnit24x24DebugIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6374
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6375
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6376
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6377
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6378
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6379
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6380
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6381
     self sUnit24x24DebugIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6382
     ImageEditor openOnClass:self andSelector:#sUnit24x24DebugIcon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6383
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6384
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6385
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6386
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6387
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6388
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6389
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24DebugIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6390
	ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6391
@@@@@@@@@@@@@@@@@@@@@@@@A0XB@@@LC@0LC@0LC@0LC@(LC@0LA0@@A0\@C@0LC@0LC@0JB 0BC@0LA0@@A0\@@@0LC@0LC@0LC@0BB 0EAPTEA@\@A @L
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6392
C@0LC@TKC@0L@ (LAP(JAPL@A X@C@0LC@0EAP0LC@,@A@(KB0(EAPD@@@0LC@0LC@@EC@0E@0@EB0,KB TA@@@LC@0LC@0L@@@EAPTE@@TKB0(E@P@@C@0L
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6393
C@0LC@TEB (J@0H@AP(E@PD@@@0KC@0LC@TEB ,KAPTJAPLC@PDA@@@LC@0L@0TEB ,KAPTKB0(E@@DF@@@@B0@@@0TEB ,KAPTKB0,JAPHB@@D@@@@KB0LC
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6394
B ,KAPTKB0,KB LG@PDA@@@KB0,EAP,KAPXKB0,KB T@@@XA@P@@B0,KAPTKAPTKB0,KB0(E@@@@@@D@@@,LB0,HAPTKB0,KB0(E@@\A@PHA@@@LC@0LA PJ
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6395
B0,KB0(E@@\A@PDA@P@@C@0LC@DAB@TEAPTE@@@G@PDA@PD@@@0LC@DA@PDFA XFA X@@PDA@PDA@@@LC@DA@PDA@PDA@PDF@@DA@PDA@P@@C@DA@PDA@PDA
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6396
@PDF@@DA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 255 0 44 44 44 52 0 0 100 72 72 108 0 0 110 110 110 148 148 148 152 49 49 208 208 208 209 0 0 248 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???8???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6397
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6398
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6399
sUnit24x24Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6400
    "This resource specification was automatically generated
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6401
     by the ImageEditor of ST/X."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6402
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6403
    "Do not manually edit this!! If it is corrupted,
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6404
     the ImageEditor may not be able to read the specification."
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6405
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6406
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6407
     self sUnit24x24Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6408
     ImageEditor openOnClass:self andSelector:#sUnit24x24Icon
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6409
     Icon flushCachedIcons
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6410
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6411
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6412
    <resource: #image>
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6413
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6414
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6415
	constantNamed:#'GenericToolbarIconLibrary class sUnit24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6416
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6417
@@@@@@@@@@@@@@@BH"H"H"H"H"H"H@H"H"H"H"H"H"H0@"H"H"H"H"H"H3@BH"H"H"H"H"H3L@H"H"H"H"H!!DCL0@"H"H @@@!!D@L3@BH"H ???1D@L3L@H"
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6418
HQ???1D@L3L0@"H D_?1D@@3L3@BH"@AG1D@<CL3L@H"H@@QD@?0L3L0@"H <@D@??@3L3@BH"C?@@??<CL3L@H"H ?0??<CL3L0@"H"HO??<CL3L3@BH"H3
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6419
@@@CL3L3L@H"H3L3L3L3L3L0@"H3L3L3L3L3L3@BH3L3L3L3L3L3L@H3L3L3L3L3L3L0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6420
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  6421
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6422
saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6423
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6424
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6425
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6426
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6427
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6428
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6429
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6430
     self saveImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6431
     ImageEditor openOnClass:self andSelector:#saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6432
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6433
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6434
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6435
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6436
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6437
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6438
	constantNamed:#'GenericToolbarIconLibrary class saveImage24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6439
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6440
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DP@@@@@@@@@@@@@@DPL"H"H"H"H"H3D@DPL$QDQDQDQDH1D@DPL$EAQAQAEDH1D@DPL$EAQAPTQDH3D@DPL$EADQ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6441
PTQDH3D@DPL$EAQAPTDTH3D@DPL$EAQAPTPTH3D@DPL$EAQAPTPTH3D@DPL$EAQAQADTH3D@DPL$QDQDQDQDH3D@DPL"H"H"H"H"H3D@DPL3L3L3L3L3L3D@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6442
DPL3DQDQDQDQL3D@DPL3D3L3L3D#L3D@DPL3DQ@3L3D"L3D@DPL3D"@3L3D"L3D@DPL3D@@3L3D"L3D@DSDQD"H"H"DQLQD@DP@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6443
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 200 200 200]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??8@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6444
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6445
    "Modified: / 06-02-2007 / 19:40:12 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6446
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6447
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6448
shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6449
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6450
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6451
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6452
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6453
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6454
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6455
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6456
     self shell24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6457
     ImageEditor openOnClass:self andSelector:#shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6458
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6459
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6460
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6462
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6463
	constantNamed:#'GenericToolbarIconLibrary class shell24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6464
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6465
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH$H"H"H"H1@@@@LRIDP"H"H"H1@@@@LRP$IBH"H"H1@@@@LRP4H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6466
H"H"H1@@@@LRIDP"H"H"H1@@@@LRH4IBH"H"H1@@@@LRP$IBH"H"H1@@@@LRIDP"H"H"H1@@@@LRH$H"QDIDP1@@@@LSL3L3L3L3L1@@@@@QDQDQDQDQDQ@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6467
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6468
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@H@(@H@(A/L(BIR(AI^(@)P(CIL(@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6469
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6470
    "Modified: / 06-02-2007 / 19:40:09 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6471
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6472
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6473
snapshot24x24Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6474
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6475
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6476
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6477
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6478
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6479
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6480
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6481
     self snapshot24x24Icon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6482
     ImageEditor openOnClass:self andSelector:#snapshot24x24Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6483
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6484
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6485
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6486
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6487
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6488
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6489
        constantNamed:'GenericToolbarIconLibrary class snapshot24x24Icon'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6490
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4378
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
  6491
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@")J>/)BH@@@@@@@@@@@@@[&9?_7<@@D@\CP4MCQ1@
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
  6492
@@@@@@@@@CEJR$)JR$)%YZ.O"S 8"X>O#8>O#8<A@E9JR$)JR$)JN389B+.;B#$^BEI;L8=?@D&TG6MJR$)JM3\EFA XF@T7,X,!!Z(>/@@,B-QXFR$)PM3@@
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
  6493
[6=/[0ALULB))8>B@KYN&)</R$*X[66Y!!!!PT!!*M-''I"HZ79X@KYN]QX/R$)YI"Q&P%EQP&X$I%%8^YIX@KYN&)<#R$*>Q44.ZR\''ZTTRE;8C#H4#@KYN]QX#
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
  6494
R$(FC(:U]JJ"]IVNC Z7[KJ=@KYN]QX#R$)3Y1-H"(*J"$ [Y5>(,B"]@KYN&)<#R$(=O0$  XFA R@IO1Y=!!3QO@KYN]QX#R'' *GTL,+YBP+R2:PWX6IX#A
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
  6495
@KYN&)<#R&J4+A6E 4YF 723] \G^+''A@@,B&!!X5R%5 DZ@]GQ4]GQ56**)1\+<D@IFS%2%JR!!@PZJV.+*:.+*F****8OG\Z@LEKEY98)!!A$ZE]W+*:.+%]W
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
  6496
V*)$ZEXO@@2[T6M#T5M0\GB[J6E!!XVDSWGA0\I,L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
  6497
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[199 201 201 152 154 156 116 118 120 201 203 205 135 137 140 238 237 236 141 143 145 190 197 206 217 219 220 84 161 232 134 201 255 110 112 114 152 154 155 255 254 253 201 197 193 135 137 139 180 182 186 168 170 173 101 148 198 132 137 143 49 118 196 219 221 221 137 139 141 179 177 176 255 250 246 255 255 255 135 137 138 91 167 239 195 195 196 190 187 186 217 219 219 115 117 119 145 178 243 137 205 255 179 181 183 143 145 147 170 177 186 189 191 194 153 153 154 133 193 249 217 218 220 132 135 137 142 144 147 134 139 141 140 174 245 233 233 233 108 172 233 143 144 146 216 216 217 153 155 157 249 249 249 190 191 191 213 214 216 142 144 146 188 193 198 214 215 216 179 227 255 224 222 219 255 255 254 216 218 219 180 182 185 137 138 139 217 218 219 213 208 205 169 171 172 188 189 190 125 184 241 144 184 222 251 251 251 108 171 233 184 184 252 180 178 176 125 177 240 105 107 109 213 214 215 196 198 200 215 216 217 94 144 198 117 119 121 139 141 143 212 213 214 149 206 255 191 192 192 132 134 136 213 214 214 223 223 223 184 186 189 183 185 188 144 146 148 193 195 196 181 185 192 234 234 234 133 135 138 186 188 190 155 157 161 138 139 142 184 186 188 129 145 150 198 200 202 131 133 135 181 183 186 234 234 233 67 128 198 213 209 204 182 184 187 134 194 250 211 209 208 206 207 209 198 200 201 158 158 158 177 178 180 176 177 179 133 135 137 182 185 187 182 184 186 138 139 141 122 184 243 121 123 125 140 147 156 185 187 190 204 205 207 203 204 206 187 191 197 182 179 176 89 158 226 192 193 197 238 238 239 148 150 153 252 252 252 142 178 241 146 148 151 175 181 250 241 241 241 89 157 225 58 124 196 192 193 196 207 208 210 179 228 255 128 178 240 212 210 209 200 202 204 230 231 232 94 161 227 205 203 202 158 180 244 107 109 111 234 235 235 113 115 117 109 111 114 123 187 247 254 254 254 118 120 122 210 211 213 174 177 183 178 181 182 134 136 138 176 176 179 140 142 145 221 222 222 154 157 159 142 143 145 145 149 154 121 184 243 174 177 181 147 149 153 166 169 171 188 190 192 230 230 230 194 196 198 248 245 243 181 184 187 223 222 221 145 145 145 159 180 245 147 150 152 147 149 152 193 196 198 215 215 216 226 227 228 221 219 216 163 165 166 177 181 181 111 113 115 199 201 202 179 181 185 201 204 207 143 184 223 135 201 255 242 242 242 141 143 146 163 164 167 190 192 194 231 231 231 138 140 142]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@A>@G3?@_???_???_???_???_???_???_???_???_???_???_???_???_???_???_???_???@@@@@@@@@@@@@@@@') ; yourself); yourself]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6498
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  6499
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6500
systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6501
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6502
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6503
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6504
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6505
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6506
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6507
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6508
     self systemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6509
     ImageEditor openOnClass:self andSelector:#systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6510
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6511
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6512
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6513
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6514
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6515
    ^Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6516
        constantNamed:'GenericToolbarIconLibrary class systemBrowser24x24Icon'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6517
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6518
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDR@@@@@@@@@AL3L3L4@@@@@@@@@AL3L3L4@@@@@@@@@BQDQDQD@@@@@@@@@@@@@@@@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6519
@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@QDQDQD @@@@DDQD@UUUUUU@@@@@@@@@@$QDQDP@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6520
@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@QDQDQD @@@@DDQD@VY&Y&Y@@@@@@@@@@$QDQDQ@@@@@@@@@@@@@@@@@@@@@@@@@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6521
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 172 170 170 255 0 0 128 128 130 0 255 0 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@_? @_? @_? @_? @_? @_? @@ @@@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6522
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6523
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6524
uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6525
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6526
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6527
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6528
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6529
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6530
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6531
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6532
     self uiPainter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6533
     ImageEditor openOnClass:self andSelector:#uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6534
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6535
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6536
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6537
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6538
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6539
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6540
	constantNamed:#'GenericToolbarIconLibrary class uiPainter24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6541
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6542
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BYBPADQDQDQDQDP@BYBP@@@@@@@@@@@@BYBPAUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6543
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@H&PAUUUT T"H%H@@@@@AUUUT T"H%H@@@$@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6544
AUUUT T"H%H@@@$@ARH"T T"H%H@@@$@ARH"T T"H%H@@H"PAUUUT UUUUH@@H&P@"H"H H"H"H@@H&P@@@@@@@@@@@@@H&P@@@@@@@@@@@@@H"P@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6545
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 255 0 0 240 240 0 255 255 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6546
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6547
    "Modified: / 06-02-2007 / 19:40:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6548
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6549
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6550
undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6551
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6552
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6553
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6554
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6555
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6556
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6557
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6558
     self undoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6559
     ImageEditor openOnClass:self andSelector:#undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6560
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6561
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6562
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6563
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6564
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6565
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6566
	constantNamed:#'GenericToolbarIconLibrary class undoXP24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6567
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6568
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[U5TR5E\[@@@@@@@@FMFP% @@@@@@F5XPA$!!K1<R
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6569
O%0@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@D)OSS(@@@A[A"81K"\TC1@XF1 ?Z@@@@D)IQ3$@@E,LK2<,DDQYX%\BFA,QT@@@@D)AN@,@V081K"HC
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6570
U @@@@A[A1,[O0@@@D(7M )[CR<+GS9"@@@@@@@@P1,[AV @@D(5M@ MKR \O&T@@@@@@@@@R1,[B6D@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A6P@@D(/KBX$
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6571
E0AYXVI"ZP@@@@A*AQ,[@P@@@D()IRD\EP,KB0,KO6T@@@ATC1,VS @@@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@D(SD1LSD1LSD1LSAE<@@D,SF1YC@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6572
@@@@@@@@@@@@@@@@@@@@UP$[F0U^@@@@@@@@@@@@@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@E(BFA,VOV,@@@@@@@@@@@@@@@@@@@@@V HXF1 B
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6573
X@@@@@@@@@@@@@@@@@@@@@@@T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@Z4 Q@%(@@@@@@@@@@@@@@@@@@@@@@@@@@F,<V @@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6574
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@? ^C?0^G?8^O?<^_?<^?!!<_?@>_>@>_<@>_?!!<_?1<_?3<_?38@@G8@@O0@@_0@@? @@?@@@>@@@\@@@@@@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6575
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6576
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6577
upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6578
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6579
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6580
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6581
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6582
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6583
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6584
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6585
     self upArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6586
     ImageEditor openOnClass:self andSelector:#upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6587
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6588
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6589
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6590
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6591
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6592
	constantNamed:#'GenericToolbarIconLibrary class upArrow24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6593
	ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6594
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6595
@@@@@@@@@@@@@@@@@@@A@0PE@@@@@@@@@@@@@@@@@@@@@@@@@@DFA0 DAP@@@@@@@@@@@@@@@@@@@@@@@P$@A0(HA@T@@@@@@@@@@@@@@@@@@@@AB0@@C@4N
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6596
C0PE@@@@@@@@@@@@@@@@@@DF@@@LB@ MD@<DAP@@@@@@@@@@@@@@@PLGDQHHD1LHE@8UA@H@@@@@@@@@@@@AE!!\XA@<SD1LHEPPYF DB@@@@@@@@@@D\@Q0A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6597
GA4OD1LJEPD\@Q0A@ @@@@@@@@@@@@@@@!!8^C1T_A@T@@@@@@@@@@@@@@@@@@@@@E @GHATRA@T@@@@@@@@@@@@@@@@@@@@@E @GDQT_A@T@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6598
@@@@@@@@@P@!!H!!TJA@T@@@@@@@@@@@@@@@@@@@@@@P\#IATTA@T@@@@@@@@@@@@@@@@@@@@@@QXXFPPDF H@@@@@@@@@@@@@@@@@@@@@@ TEAPTE@ H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6599
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6600
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 0 0 96 128 160 0 96 128 0 0 32 128 160 192 192 224 224 0 160 192 128 128 160 32 192 192 128 160 160 96 192 224 0 192 224 32 192 224 32 160 192 64 224 224 160 192 224 64 192 192 0 128 192 0 192 192 0 128 160 32 64 96 64 96 128 32 96 128 0 64 128 0 64 96 192 192 192 0 32 96 32 128 192 128 192 224 64 192 224 128 192 192 160 224 224 96 192 192 96 160 192 64 160 192]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@F@@@O@@@_ @@?0@A?8@C?<@G?>@O??@_?? @?0@@?0@@?0@@?0@@?0@@?0@@?0@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6601
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  6602
    "Modified: / 06-02-2007 / 19:40:02 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6603
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6604
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6605
windowInspectIcon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6606
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6607
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6608
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6609
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6610
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6611
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6612
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6613
     self windowInspectIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6614
     ImageEditor openOnClass:self andSelector:#windowInspectIcon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6615
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6616
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6617
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6618
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6619
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6620
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6621
        constantNamed:'GenericToolbarIconLibrary class windowInspectIcon'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6622
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6623
@@@@@@@@E!!0[E1LOC@(HA TDA@PDA@PD@@@@@@@@GDP;L" $HA(UCP$IBP$IBP$N@@@@@@@@HTL9J2X#G1 RB0\GA0\GA0\N@@@@@@@@I7)4Y&U$X5YUUEQT
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6624
UEQTUEPN@@@@@@@@NHZF!!(ZF!!(ZF!!(ZF!!(ZF!!(XN@@@@@@@@M8ZJ"(*J"(ZJ"(*J"(*J!!(XN@@@@@@@@M(ZJ!!(ZF!!#*F!!(*F!!(X:!!(XN@@@@@@@@MXY.O#5A
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6625
S5]5!!(*F!!(X:!!(XN@@@@@@@@MDYQ\''1=^V5RSHNF!!(X:!!(XN@@@@@@@@VHQST5MST5M8T4FCN#(:!!(XN@@@@@@AY G!!8^G!!8^G!!8^F4>!!(ZF!!(XN@@@@@GA,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6626
#G!!ST5MST5MST81-WS(:#8XN@@@@@E=7K7!!S^G!!8^G!!8^G!!-OH:F#8XN@@@@@E%=K''!!S^G!!8^G!!8^G"BPH:F#8XN@@@@@E&BKW!!S^G!!8^G!!8^G"BRH:F#8XN
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6627
@@@@@E%=KG!!S^G!!8^G!!8^G"BRH>F#8XN@@@@@E)3J''!!S^G!!8^G!!8^G"BOXZF#8XB@@@@@F=!!JW!!S^G!!8^G!!8^G!!1QX>O#8XN@@@@@@AJ[W!!8^G!!8^G!!8^G!!G
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6628
 8ZF!!(XN@@@@@@ANR''NB!!''!!8^G!!8"59)!!(ZF!!(XN@@BT#W=MO4)"^HJI!!XE6W&(NC 8NC 8C@INQ$G9K@@AOP$%PXE9+^0@@@@@@@@@@$9JP"F]\@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6629
@@@@@@@@@@@@@@@@$)BHZE,@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 7 66 194 12 59 167 23 89 204 27 95 206 32 101 209 36 106 255 36 107 211 39 109 255 41 113 214 45 115 255 45 119 216 48 118 255 50 87 176 50 125 219 52 90 178 53 127 212 54 123 255 54 131 221 55 95 181 57 127 255 57 149 229 58 137 224 63 132 255 66 113 193 66 135 255 67 149 229 68 157 232 69 117 196 72 122 199 72 141 255 75 144 255 77 163 236 78 131 206 80 149 255 84 153 255 87 145 215 88 157 255 91 168 235 93 161 255 94 154 222 96 157 223 96 165 255 97 159 225 98 160 225 98 162 226 99 163 227 100 165 228 101 166 229 101 170 255 102 167 230 103 169 231 104 170 232 105 172 233 105 174 234 106 175 235 112 180 255 116 116 120 117 186 255 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 132 200 255 139 207 255 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 149 184 255 153 188 255 157 192 255 159 159 192 159 160 192 159 160 207 159 160 208 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 162 196 255 166 200 255 170 204 255 174 208 255 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 181 215 255 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 225 255 192 192 208 192 239 255 192 240 255 207 143 95 207 207 191 207 223 239 207 239 240 207 255 255 208 208 223 208 224 239 208 255 255 212 211 224 217 217 217 223 128 63 223 255 255 237 236 242 239 239 240 239 255 255 240 207 144 245 244 247 247 246 249 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@???@???@???@???@???@???@???@???@???@???A???C???C???C???C???C???C???C???A???A???O???_O<@?@@@>@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6630
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6631
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6632
windowInspectIcon2
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6633
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6634
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6635
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6636
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6637
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6638
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6639
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6640
     self windowInspectIcon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6641
     ImageEditor openOnClass:self andSelector:#windowInspectIcon2
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6642
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6643
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6644
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6645
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6646
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6647
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6648
        constantNamed:'GenericToolbarIconLibrary class windowInspectIcon2'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6649
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6650
@@@@@@@@@AXVE1LOC@(HA TDA@PDA@PD@@@@@@@@@A0\L" $HA(UCP$IBP$IBP$N@@@@@@@@@BD!!J2X#G1 RB0\GA0\GA0\N@@@@@@@@@B\''Y&U$X5YUUEQT
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6651
UEQTUEPN@@@@@@@@@C 8!!(ZF!!(ZF!!(ZF!!(ZF!!(XN@@@@@@@@@C\7"(*J"(ZJ"(*J"(*J!!(XN@@@@@@@@@CX6!!(ZF!!#*F!!(*F!!(X:!!(XN@@@@@@@@@CT5O#5A
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6652
S5]5!!(*F!!(X:!!(XN@@@@@@@@@DYQ\''1=^V5RSHNF!!(X:!!(XN@@@@@@@@VHQST5MST5M8T4FCN#(:!!(XN@@@@@@AYJW!!8^G!!8^G!!8^F4>!!(ZF!!(XN@@@@@GA,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6653
JW!!ST5MST5MST81-WS(:#8XN@@@@@E=7JW!!S^G!!8^G!!8^G!!-OH:F#8XN@@@@@E%=JW!!S^G!!8^G!!8^G"BPH:F#8XN@@@@@E&BJW!!S^G!!8^G!!8^G"BRH:F#8XN
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6654
@@@@@E%=JW!!S^G!!8^G!!8^G"BRH>F#8XN@@@@@E)3JW!!S^G!!8^G!!8^G"BOXZF#8XN@@@@@F=!!JW!!8^G!!8^G!!8^G!!1QP8NC 8N@@@@@@AJ[R%8^G!!8^G!!8^G!!G
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6655
@@@@@@@@@@@@@@ANR''L)JR$)JR$)"59)@@@@@@@@@@BT#W=MO4)"^HJI!!XE6W&(@@@@@@@@@@INQ$G9K@@AOP$%PXE9+^0@@@@@@@@@@$9JP"F]\@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6656
@@@@@@@@@@@@@@@@$)BHZE,@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 7 66 194 12 59 167 23 89 204 27 95 206 32 101 209 36 106 255 36 107 211 39 109 255 41 113 214 45 115 255 45 119 216 48 118 255 50 87 176 50 125 219 52 90 178 53 127 212 54 123 255 54 131 221 55 95 181 57 127 255 57 149 229 58 137 224 63 132 255 66 113 193 66 135 255 67 149 229 68 157 232 69 117 196 72 122 199 72 141 255 75 144 255 77 163 236 78 131 206 80 149 255 84 153 255 87 145 215 88 157 255 91 168 235 93 161 255 94 154 222 96 157 223 96 165 255 97 159 225 98 160 225 98 162 226 99 163 227 100 165 228 101 166 229 101 170 255 102 167 230 103 169 231 104 170 232 105 172 233 105 174 234 106 175 235 112 180 255 116 116 120 117 186 255 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 132 200 255 139 207 255 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 149 184 255 153 188 255 157 192 255 159 159 192 159 160 192 159 160 207 159 160 208 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 162 196 255 166 200 255 170 204 255 174 208 255 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 181 215 255 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 225 255 192 192 208 192 239 255 192 240 255 207 143 95 207 207 191 207 223 239 207 239 240 207 255 255 208 208 223 208 224 239 208 255 255 212 211 224 217 217 217 223 128 63 223 255 255 237 236 242 239 239 240 239 255 255 240 207 144 245 244 247 247 246 249 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O??@O??@O??@O??@O??@O??@O??@O??@_??@???A???C???C???C???C???C???C???C???A??@A??@O?>@_O<@?@@@>@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6657
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  6658
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6659
workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6660
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6661
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6662
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6663
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6664
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6665
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6666
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6667
     self workspace24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6668
     ImageEditor openOnClass:self andSelector:#workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6669
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6670
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6671
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6672
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6673
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6674
    ^Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6675
        constantNamed:'GenericToolbarIconLibrary class workspace24x24Icon'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6676
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6677
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y&Y&Y&Y&Y @@@@@@@@@@@@@@@@@QDQDQDQDQDQDQAP@TPDQDQ@Q@PQDQ@ @TPDQDQ@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6678
P@@QDQ@ @P@D@@Q@Q@PQDQ@ @PPDA@Q@Q@PQDQ@ @P@D@@Q@Q@@QDQ@ @QDQDQDQDQD1DQ@ @QDQDQDQDQD3DQ@ @QDQDQDQDQD3LQ@ @QDQDQDQDQD3DQ@G
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6679
@QDQDQDQDQDQLQ@ @QDQDQDQDQDQLQ@ @QDQDQDQDQDQDQAP@@@@@@@@@@@@@@@@ARH"H"H"H"H"H%AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6680
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 127 127 127 0 127 127 127 0 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@????????????????????????????????????????????????????????????????????????????@@@@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6681
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6682
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6683
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6684
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6685
bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6686
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6687
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6688
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6689
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6690
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6691
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6692
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6693
     self bug28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6694
     ImageEditor openOnClass:self andSelector:#bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6695
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6696
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6697
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6698
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6699
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6700
	constantNamed:#'GenericToolbarIconLibrary class bug28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6701
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6702
UUUUUUUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O?0@@@@@@?*+@@@@C3>**,@@@O*N***
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6703
0@@C:#***,@@@N(@@@@@@@O*O***0@@@>3>**<@@@@@O??0@@@@@@C?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6704
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 192 192 192 255 0 0 128 0 0]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6705
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0L@@@#F0@@F_1@@@/>@@A/?0@@??>@G??? BG??8@A??>@G??? @???8@@[?<@@@/>@@@Y?D@@H1,@@@0L@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6706
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6707
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6708
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6709
bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6710
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6711
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6712
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6713
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6714
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6715
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6716
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6717
     self bugReporter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6718
     ImageEditor openOnClass:self andSelector:#bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6719
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6720
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6721
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6722
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6723
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6724
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6725
	constantNamed:#'GenericToolbarIconLibrary class bugReporter28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6726
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6727
@@@@@@@@@@@@@@@@@@@@@@@@@@@EUUUUUUUU@@@@@@@@@@@@@@@@@@T@@@@@@@@EUUUUUUUUAP@@@@@@@@@@@@@@@@TE@@@@@@@ADQDQDQDQAPT@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6728
@@@@@@DEAP@@@@@ADQDQDQDQ@PTE@@@@@@@@@@@@@@DAAP@@@@@DQDQDQDQD@PDE@@@@@@@@@@@@@@PA@P@@@@@DQDQDQ@ADA@D@@@@@@@PQDTPDQ@@D@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6729
@@@@ADQDQD@DP@@@@@@@@@@DPTEAQ@P@H"H"@@@@@@QDEA@D@BH#L3L @@@@ADEA@"@"H3L3L3H@@@@@@@H#L0H3L3L3L2@@@@@@@"L3@#L3L3L3H@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6730
H3L@@@@@@@@@@@@@@@H#L0H#L3L3L2@@@@@@@BH2@"H3L3L2H@@@@@@@@@@@H"H"H"@@@@@@@@@@@@@@@"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6731
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 170 170 170 128 0 0 255 0 0 255 255 255 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6732
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O???@C???D@???8@O???@C???8@???>@O??? @G??8@_??>@C??? @A/
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6733
?0@@B?8@@A''<P@@#F0@@C@0@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6734
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6735
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6736
bugReporterIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  6737
    <resource:#programImage>
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6738
    ^ self bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6739
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6740
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6741
changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6742
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6743
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6744
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6745
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6746
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6747
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6748
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6749
     self changesBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6750
     ImageEditor openOnClass:self andSelector:#changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6751
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6752
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6753
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6754
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6755
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6756
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6757
	constantNamed:#'GenericToolbarIconLibrary class changesBrowser28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6758
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6759
@@@@@@@@@@@@@B****@@@@@@@@@ @@@B****H@@@@@@@@"@@@C????H @@@@@@@2H@@C????L"@@@@@@@3H@@AUUUUL2@@@@@@@SL@@AUUUUD3@@@_=UUQL@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6760
@@EUUUTS@@@A]7UUD@@@@U7]5Q@@@@E7]5T@@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH@@@@@@@@LB@L@@@@@@@@@@@@@@@@J@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6761
@@@@@@@H@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6762
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O??>@C??>@@??? @O?? @C??8@@??8@@O?>@@@@@@@@@@@@@Z.$7LH+-
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6763
YDBJ+TQ@#.=WHH*+UABJ*5PPZ*$7X@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6764
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6765
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6766
copy28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6767
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6768
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6769
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6770
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6771
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6772
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6773
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6774
     self copy28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6775
     ImageEditor openOnClass:self andSelector:#copy28x28Icon
4091
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6776
     Icon flushCachedIcons
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6777
    "
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6778
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6779
    <resource: #image>
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6780
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6781
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6782
	constantNamed:'GenericToolbarIconLibrary class copy28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6783
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#[2]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4091
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6784
@@@@@@@@@@@@@@@@@@@@@@O????8@@@C****)@@@@:****P@@@N****$@@@C****)@@@@:****P@@@@@@**$C????>J*)@:****R**PN****$**$C****)J*
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6785
)@:****R**PN****$**$C****)J*)@:****R**PN****$**$C****)J*)@:****QUUPN****$@@@C****)@@@@:****P@@@N****$@@@C****)@@@@:****Q
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
  6786
@@@IUUUUT@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6787
@@@@@@@???@@O??0@C??<@@???@@O??0@C??<@@???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_?? @G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6788
8@A??>@@_?? @G??8@A??>@@_?? @@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6789
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6790
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6791
cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6792
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6793
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6794
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6795
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6796
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6797
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6798
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6799
     self cut28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6800
     ImageEditor openOnClass:self andSelector:#cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6801
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6802
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6803
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6804
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6805
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6806
	constantNamed:#'GenericToolbarIconLibrary class cut28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6807
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6808
@@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDS@@@@@@@SL3L3L3L<L3H@@@0@@AL3L3L3L303L @@C@@@D3L3L3L3OLL2@@CL@@@SL3L3L3L303H@@L@@@AL3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6809
L3OLL @L0@@@D3L3L3L3L302@@0@@@@SL3L3L3L3OLH@3@@@@AL3L3L3L3L<0 CL@@@@D3L3L3L3L3OB@L@@@@@SL3L3L3L3L<H@0@@@@AL3L3L3L3L33L3@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6810
@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L3OL0@@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L33@3@@@@@L"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6811
H"H"H"3B@,0@@@@@@@@@@@CL3@@@CL3@@@@@@@@@C@C@@@@@0@0@@@@@@@@L@L@@@@C@C@@@@@@@@@0@0@@@@L@L@@@@@@@@C@C@@@@@0@0@@@@@@@@L@L@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6812
@@C@C@@@@@@@@@CL@@@@@@3@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6813
_??8@G??>@A???!!@_??8PG??>LA???"@_??9 G??>PA???,@_??;@G??> A???(@_??>@G???@A???0@_??<@G???@A???0@_??>@G???0A???'' @@R@$@@D
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6814
 I@@AHBP@@R@$@@D I@@@0A @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6815
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6816
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6817
delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6818
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6819
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6820
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6821
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6822
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6823
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6824
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6825
     self delete28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6826
     ImageEditor openOnClass:self andSelector:#delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6827
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6828
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6829
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6830
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6831
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6832
	constantNamed:#'GenericToolbarIconLibrary class delete28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6833
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6834
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDQL@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3H@@@@@@@D3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6835
L3L3L @@@B@@@SL3L3L3L3L2@@@B@@@AL3L3L3L3L3H@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3@@@@@ @@D3L3L3L3L0@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6836
@@@@@SL3L3L3L3@P@@@@H@@AL3L3L3L3LADSL3H @@D3L3L3L3L0DQL3L"@@@SL3L3L3L3@Q@3L0H@@AL3L3L3L3LADC@3@ @@D3L3L3L3L0DPLCLB@@@2H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6837
H"H"H"@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6838
D0L2H@@@@@@@@@@@@ DSL3HB@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6839
@@@@@C??>@@??? @O??8PC??>D@???!!@O??8XC??>F@???  O??8HC??>B@????0O?? LC????@????0O???<C????@????0O???<C????@????0@@A?<@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6840
_?@@@G?0@@A?<@@@_?@@@G?0@@@_0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6841
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6842
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6843
desktop28x28Icon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6844
    "This resource specification was automatically generated
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6845
     by the ImageEditor of ST/X."
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6846
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6847
    "Do not manually edit this!! If it is corrupted,
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6848
     the ImageEditor may not be able to read the specification."
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6849
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6850
    "
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6851
     self desktop28x28Icon inspect
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6852
     ImageEditor openOnClass:self andSelector:#desktop28x28Icon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6853
     Icon flushCachedIcons
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6854
    "
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6855
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6856
    <resource: #image>
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6857
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6858
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6859
	constantNamed:'GenericToolbarIconLibrary class desktop28x28Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  6860
	ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6861
@@@XFA ]FA XFA4]FA XFA XGQ4]@@@@@@@@@@@@FA XGQ4]FA XFA XFA XGQ4]GQ XFA XF@@@@A XGP,RB!! QFA ]GQ4]GQ4XGQ XFA XFA @@@@XFA D
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6862
A@PDC@LKC!!HQDQ XFA4]GR@]HA X@@@]FA ]C@4DCPPMAA( HB@]GQ XDQ QFB@]F@@@GQ4XF@PDC@PGA@4SHA8^HA8 G"@^HA$ GQ @@A4]FA4MCPPMA@4D
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6863
EA8 HA8 G"@ HA8^HA4X@@@]GQ4XA@PGA@ DB@\^GQ8^GQ8^HA4^GR@XF@@@FA XG!!PMA04HCP MF!!8^G"@^HA8 G"@]GQ @@A XGQ8^CP$MBP4ICQPZGA(\
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6864
F!!8^G!!8 GQ ]@@@XFA4YFPPLBP0DC@$TD1LZD1(YF!!$^GQ4XGP@@GQ4]F!!(MBP0ICP0MCAPWD1(WF!!(WG"@]FA4@@A4XGQLOC@0DC@PLA@0LCAPOEALWE!!8]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6865
GQ ]@@@]FA$LA0PG@00CC@LLA@PLA00LE@<^GQ4XF@@@FA SD@4LA00CC@LL@00LA04GCP0THB@XFA @@A XFA4YA LL@0,CB0LKC@LG@00GEA4 FA4]@@@X
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6866
FA XFA4]FQLK@0LF@ LF@0XCA1L]GQ ]GP@@FA XGQ4]GQ4]GQ4]FQ$K@0,CA0LZGR@XGQ4@@A XFA4XFA4]GQ4]FA XGQ4YFP,KFQ4XGQ4]@@@@FA4]FA X
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6867
FA ]GR@]GQ4]GQ4]GR@]GQ ]GP@@@@@]FA4QFA XFA XGQ XGQ4 GQ4]HA4XFA4@@@@@@A4XGQ4]GQ4]GQ4]FADXFA4]HB@]DQD]@@@@@@@QFA4]FA4]GQ4]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6868
GQ4]FA4XFADXDQDQ@@@@@@@@GQD]GQ4]HA4 GR@ GR@]GQ4XGQ4QDP@@@@@@@A4XDQ4]GQ4]GR@]GQ4]HA QFA ]DP@@@@@@@@@]@A QFA ]GR@]HB@]FADX
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6869
FA QGQ4@@@@@@@@@GQ4XDQ4QFA QFADQDQD]GQ QDQ4@@@@@@@@@@A4@@@@@@@@@@@@@@@@@@@@XDQD]@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 0 0 102 0 0 153 0 0 204 0 0 255 0 51 153 0 51 204 0 51 255 51 0 204 51 51 102 51 51 153 51 51 204 51 51 255 51 102 153 51 102 204 51 102 255 102 102 102 102 102 153 102 102 204 102 102 255 102 153 51 102 153 204 102 153 255 153 153 153 153 153 204 153 153 255 153 204 204 153 204 255 204 204 204 204 204 255 204 255 255 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6870
G?@@@A??<@@_???@G???8A???>@???? O???8C???>@???? O???8C???>A???? _???8G???<A????@_???0G???<@_???@C???0@G??<@G??>@C??? @??
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6871
?0@O??8@A??<@@O?>@@@?>@@@@@@@@@a') ; yourself); yourself]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6872
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  6873
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6874
dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6875
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6876
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6877
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6878
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6879
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6880
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6881
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6882
     self dos28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6883
     ImageEditor openOnClass:self andSelector:#dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6884
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6885
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6886
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6887
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6888
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6889
	constantNamed:#'GenericToolbarIconLibrary class dos28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6890
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6891
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H"H"H @#L3L3L3L3L3L3L3L3@BMDQDQDQDQDQDQDQBL@H4QDQDQDQDQDQDQDH0@#QDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6892
QDQDQDQDP#@BMDEDQDQDQDQDQDQBL@H4QAQDQDQDQDQDQDH0@#QDPTQDQDQDQDQDP#@BMDQDEDQDQDQDQDQBL@H4QDEDQDQDQDQDQDH0@#QDEDQDQDQDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6893
P#@BMDEDQADQHQDTDQEBL@H4QDQDQDQDQDQDQDH0@#QDQDQDQDQDQDQDP#@BL"H"H"H"H"H"H"H"L@@3L3L3L3L3L3L3L3L0@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6894
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6895
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 194 222 222 222 125 125 125 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6896
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@@P@@@@D@@@@GLX@@BT
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6897
(@@@%I@@@IRH@@A3L@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6898
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6899
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6900
extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6901
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6902
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6903
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6904
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6905
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6906
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6907
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6908
     self extract28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6909
     ImageEditor openOnClass:self andSelector:#extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6910
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6911
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6912
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6913
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6914
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6915
	constantNamed:#'GenericToolbarIconLibrary class extract28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6916
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6917
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@MDP4QC@@@@@@UUTE@@@3L3L3L@@B@AAUUPD@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6918
@@H DEUU@P@@L3L3L2H"H"HPUUTA@@@4QCQDH"H"H"@@@@D@@CL3L3L"H"H"DQDQDP@@MDP4QC@@@"@Q@@@A@@@3L3L3L@@B@AD@UPD@@CQDMDP0@@@@DPAU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6919
@P@@L3L3L3@@@@@@@@@@@@@4QCQDL@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6920
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6921
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6922
@@@@@@@@@@A?<@@@_?A?8G?0_>A?<W? _?G?8G???>A???? _???8G?1?>A?<W? _?A?8G?0O>A?<@@@_?@@@G?0@@@@@@@@@@@@@@@@@@@@D@A@MED3PD*:
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6923
UNA9D%Q@P)ITPCQZL6@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6924
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6925
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6926
fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6927
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6928
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6929
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6930
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6931
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6932
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6933
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6934
     self fileBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6935
     ImageEditor openOnClass:self andSelector:#fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6936
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6937
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6938
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6939
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6940
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6941
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6942
	constantNamed:#'GenericToolbarIconLibrary class fileBrowser28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6943
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6944
@@@@@@@@@@@@@@@@@@@@@@CLA&Y&Y&Y&X@@@@@@@@L0F@@@@@@A @@@@@@@@3@XN;.;.8F@@@@@@@@CLA ;.@@@@@@@@@@@@@L0FC.8O[6=/[0@@@@@@3@X@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6945
; [6=/[6@@@@@@CLA DNC6<@@F<@@@@@@L0F@A@F= [0= @@@@@@3@X@@P=/[6=/@@@@@@CLA @@A/[6=/X@@@@@@L0FC0@O[6=/[0@@@@@@3@XF<@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6946
@@@@@@CLA = @@@@@@@@@@@@@L0FA/[6=/A @@@@@@@@3@XO[6=/XF@@@@@@@@CLA @@@@@@X@@@@@@@@L0FY&Y&Y&Y @@@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6947
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6948
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6949
A??<@@_??@@G??0@A??<@@_??8@G??>@A??? @_??8@G??>@A??? @_??8@G??>@A??? @_??@@G??0@A??<@@_??@@G??0@@??<@@G??@@@@@@@G.P=0AAD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6950
HP@PQBD@GDP8 AADHD@PQBA@DN^=0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6951
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6952
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6953
fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6954
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6955
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6956
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6957
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6958
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6959
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6960
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6961
     self fileIn28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6962
     ImageEditor openOnClass:self andSelector:#fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6963
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6964
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6965
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6966
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6967
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6968
	constantNamed:#'GenericToolbarIconLibrary class fileIn28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6969
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6970
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y&@@@FY&A @@@FL3L&Y&X@@PY&XA@@@@X3L2Y&Y @AA&Y D@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6971
@0A"H"I&Y&@@DFY&@P@CLFY"Y&Y&X@@P@@@3L3L3Y&I%UUI @ADQDSL3L3L6X&UUT&@@DP@@L3L3L6Y"H"H"X@@Q@FXA@@L0Y&I&Y&Y @AD@Y D@@0A&X&QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6972
P&@@@@@@@@@@@FY"YDQBX@@@@F@@@@@@Y&H"H"I @@@@@@@@@@A&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6973
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6974
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6975
@@@@@@@@@@@@@_?0_>G?<G?!!??A?8_?0_>W?<G?''??A????0_???<G????A?9??0_>W?<C?!!??@B@_?0@@G?<@@A??@@@@@@@@@@@@U@D@@HP@@@BT0S@@%R
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6976
EH@]W!!R@BU@T @%LEH@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6977
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6978
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6979
garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6980
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6981
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6982
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6983
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6984
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6985
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6986
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6987
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6988
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6989
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6990
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6991
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6992
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6993
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6994
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6995
	constantNamed:#'GenericToolbarIconLibrary class garbageCollect28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  6996
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6997
DQD@@@.;.1D[DQDQD@@QDP@@.;.;,[,@@ADP@ADQ@@.;@@.;.1@@@A@@DQD@B;@@@[.;DCH@D@@QDP@K,@@K.;,Q@2@P@ADQ@K.;@@DQDQDPL @@DQDKB;B0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6998
@QDQ@@@C@@@QD[B0B0,ADP@"H"@@@ADQ@@@@@@DQ@P@@@0@@DQ@@@@C 8@@ADQL3@@@Q@@@@;.;.@@DCL0H@@@@@@@@NC @@@PLC@ @@@@@@C.;.8@@A@0LB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6999
@@@@@@@@8N@@@@DC@0H@@@@@B (@@AD@@PLC@ @@@@****@LG@@A@0LB@@@@@JB CL3L0@DC@0H@@@B***(@0L@Q@SLCL @@@@(J@L3L3AD@L"H @@@@@QDQ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7000
C@0QDQD@@@DP@@@ADQD@@@@QD@@@@@@@@ @B@ @B@@HB@ H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@H@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7001
@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@H@@@H@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7002
@G1@@@C>0@@A1=0@@XO^@@FG30@C0@^@AZ@? @)P?8@@@O>@@B#? @C<?8@@TO>@@_#? @B ?8@E@O>@G9S? @)>?8@?JO>@EO3? @APO @@@@@@]7]7\DUU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7003
UDAEUUQ@U7]5\EUUUTAUUUU@]U]W\@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7004
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7005
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7006
help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7007
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7008
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7009
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7010
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7011
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7012
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7013
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7014
     self help28x28Icon1 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7015
     ImageEditor openOnClass:self andSelector:#help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7016
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7017
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7018
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7019
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7020
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7021
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7022
	constantNamed:#'GenericToolbarIconLibrary class help28x28Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7023
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7024
@@@@@@E@@@@@@J*(D@@@@@***)P@@@@@@J*E@@@@K.,J(T@@@;.>8*E@@@K.:;"(T@@J;..;JE@@K; N;"!!P@C+ B;,(T@@/ @K.JE@@N,@C.2E@@B>@@.3!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7025
P@@@@@.8!!T@@@@@+.1P@@@@@/.1P@@@@@N.0P@@@@@N>2D@@@@@B:8!!@@@@@@;8(P@@@@@K+H@@@@@@@@BA@@@@@@J*HP@@@@@@@JD@@@@@C/"!!@@@@@@.,(
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7026
@@@@@@N>H@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 63 79 96 255 255 0 255 255 255]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7027
@@?8@@@??@@@_?8@@O??@@G??8@C??>@@???0@_??<@O???@C>O?0@?C?<@O0?>@C<O? @?C?8@@C?8@@A?<@@@_>@@@O? @@C?8@@@?>@@@O>@@@C?8@@@_
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7028
>@@@O? @@C?8@@@?<@@@O>@@@C?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7029
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7030
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7031
help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7032
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7033
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7034
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7035
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7036
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7038
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7039
     self help28x28Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7040
     ImageEditor openOnClass:self andSelector:#help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7041
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7042
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7043
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7044
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7045
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7046
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7047
	constantNamed:#'GenericToolbarIconLibrary class help28x28Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7048
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7049
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@3H@@@@@@@@@@@@@@@@CL2@@@@@@@@@@@@@@@@L3L @@@@@@@@@@@@@@@3L3@@@@@@@@@@@@@BLCL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7050
L0@@@@L3@@@@@CL0L3L3@@H3L3L0@@A@L3@3L3LBH#L3L3A@@D@3LCL3L0H"L3L3LD@@PCL0L3L3@"D3L1L0P@A@L3@3L3LBH!!L1L3A@@D@3LCL3L0H"HQL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7051
LD@@PCL0L3L3@"H#D3L0P@A@L3@3L3LBH"D1L3A@A@L3LBL3L0H"D3LSLD@D@3L0H#L3@"D#L3D0P@PCL3LBH#LBHRL3L3A@A@L3L3@"H0H"H3L3LD@D@3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7052
L H"@"H#L3L0P@PCL3L"@"HBH"L3L3A@A@H"H"H H H"H#L2HD@D@@H"H"HB@"H"H"H@P@ADP@H"H HBH"H @DQ@@@@DP@@"H@H"H@Q@@@@@@@@@Q@@B@ @D
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7053
P@@@@@@@@@@@AD@@Q@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 128 92 192 192 192 253 253 253 191 191 0]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7054
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7055
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7056
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7057
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7058
help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7059
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7060
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7061
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7062
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7063
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7065
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7066
     self help28x28Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7067
     ImageEditor openOnClass:self andSelector:#help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7068
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7069
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7070
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7071
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7072
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7073
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7074
	constantNamed:#'GenericToolbarIconLibrary class help28x28Icon3'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7075
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7076
@@@@@@@@@@@@0@@@@@@@@E0@@@@@@@AW@@@@@@@@U\@@@@@@@EU@@@@@@CQUT@@U@@ATUU@5UP@HUEUS=UWHBEQUT?UUR@!!TUUO5UT HUEUS=UUHBEQUT?5U
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7077
R@!!TUUO=UT HUEUS?UUHH5QUT?5URBETMUO=UT !!UTMS?UUHHUU<4?5URBEU_3O=UT  @W?C?U@HH?0O<?0O2B@?<CLC?0 J ??@?<B(@B O??0(@@@@(C<B
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7078
 @@@@@J@(@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 253 253 253 191 191 0 192 192 192]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7079
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7080
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7081
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7082
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7083
history28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7084
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7085
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7086
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7087
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7088
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7089
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7090
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7091
     self history28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7092
     ImageEditor openOnClass:self andSelector:#history28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7093
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7094
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7095
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7096
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7097
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7098
	constantNamed:#'GenericToolbarIconLibrary class history28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7099
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7100
@@@@@@@@@0@@@@@@@@@B**(@@@@@@%YV@@@@@@J**"@@@@@BU%X @@@@@***H @@@@IVU"H@@@@B**("H@@@@%YVH"@@@@J**"H @@@@@@@"H@@@@B**("@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7101
@@@@@@H @@@@@***H@@@@@@@@B@@@@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7102
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 129 194 194 194 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7103
@@@@@C?8@@@?>@@@O?8@@C?>@@@??8@@O?>@@C??8@@??>@@O?? @C??8@@??>@@C?? @@??8@@C?>@@@?? @@C?8@@@?>@@@@@@@H@H@@BDB@@@<M3IHITI
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7104
KRBT"R$ %D$)8IVD2B@@@@G @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7105
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7106
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7107
home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7108
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7109
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7110
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7111
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7112
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7113
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7114
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7115
     self home28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7116
     ImageEditor openOnClass:self andSelector:#home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7117
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7118
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7119
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7120
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7121
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7122
	constantNamed:#'GenericToolbarIconLibrary class home28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7123
	ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7124
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7125
@@@@@@@@@@DA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HCA@H@@@@@@@@@@@@@@@@@@@@@@@@@A@D@@@H@@0LD@ @@@@@@@@@@@@@@@@@@@@@@@@HA@@H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7126
@0TEAPPA@@@@@@@@@@@@@@@@@@@@@@@D@PH@@0XFA XGB@D@@@@@@@@@@@@@@@@@@@@@BP$@@0PDA@PDA@XD@P@@@@@@@@@@@@@@@@@@@@H@@0PDAP(CAPPD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7127
A PA@@@@@@@@@@@@@@@@@@H@@0PDAP(@@@LEA@PDA@D@@@@@@@@@@@@@@@H@APPDAP@@@@@@@@TDA@XD@P@@@@@@@@@@@@HCA0PDAP@@@@@@@@@@APPDA@PA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7128
@@@@@@@@@@HCAPPDAPL@@@@@@@@@@@LEA@PFA@D@@@@@@@@@@ HKA L@@@@LCP8O@@@@APXB@ D@@@@@@@@@@@@@@P\C@@@MDADRD0<@@@LF@ @@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7129
@@@@@@HG@0@@EATVE1\N@@@CA H@@@@@@@@@@@@@@@@AA0L@@A QFQ([C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@XE!!0]F08@@@LG@ @@@@@@@@@@@@@@@@DG
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7130
@0@@FAHWGQ,N@@@CA0H@@@@@@@@@@@@@@@@AA0L@@A ^E14[C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@_GA4 F08@@@LG@ @@@@@@@@@@@@@@@@DG@0@@G2D[
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7131
F2HN@@@CA0H@@@@@@@@@@@@@@@@AA0TC@1<"H"H"C LCARLB@@@@@@@@@@@@@@@@C0DA@PDA@PDA@PDA@PDAC0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7132
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[224 224 224 0 0 0 32 32 32 192 192 192 64 64 64 160 160 160 96 96 96 128 128 128 96 64 96 64 32 64 224 192 224 32 0 0 160 96 64 128 64 32 96 32 0 64 0 0 160 128 128 224 192 192 192 160 160 160 64 32 128 96 96 224 224 192 224 192 160 192 128 64 128 64 64 224 160 128 192 128 32 160 64 0 192 128 96 192 96 0 192 160 128 96 32 32 192 64 0 160 96 32 128 32 0 128 96 128]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7133
@@@@C0@@@@<@@@@O@@X@C0@O@@<A''8@O@[?@C0G?8@<A??@O@_?8C0O??@<G??8OC???C1???8<O??<O@??<C0O??@<C??0O@??<C0O??@<C??0O@??<C0O?
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7134
?@<C??0O@??<C0@@@@<@@@@O@@@@C0@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7135
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7136
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7137
imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7138
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7139
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7140
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7141
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7142
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7143
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7144
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7145
     self imageEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7146
     ImageEditor openOnClass:self andSelector:#imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7147
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7148
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7149
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7150
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7151
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7152
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7153
	constantNamed:#'GenericToolbarIconLibrary class imageEditor28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7154
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7155
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"HDQEUVY @@@@@BH"H3L QDUUY&@@@@@@HA@#L2ADQUU&X@@@@@@"H"H"HH
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7156
"I&W]0@@@@@BL3L3L "H&Y]7@@@@@@H"H"H"BH"Y%7\@@@@@@#L3L3HDQEUVY @@@@@BH"H"H QDUUY&@@@@@@H3L3L2ADQUU&X@@@@@@"H"H"HH"I&W]0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7157
@@@BL#L3L "H&Y]7@@@@@@H2L3L2BH"Y%7\@@@@@@"H"H"HBH"H"H @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7158
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0@0@0L@L@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7159
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7160
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@;[7/@D>%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7161
J@AJ)P @RK5.@D"%J@AH)R @:JW/@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7162
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7163
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7164
menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7165
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7166
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7167
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7168
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7169
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7170
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7171
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7172
     self menuEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7173
     ImageEditor openOnClass:self andSelector:#menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7174
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7175
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7176
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7177
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7178
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7179
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7180
	constantNamed:#'GenericToolbarIconLibrary class menuEditor28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7181
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7182
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@QH"H DQHQD"H @@@@@ATBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7183
IRT%IP@@@@@BUQIU@UIRT%IR@@@@@@IRHBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUQIU@RT%IRT%@@@@@@IRHBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7184
@@@BUQIU@UIRT%IR@@@@@@H"HBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7185
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APT@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7186
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@T@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7187
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@6=D$@O(Y
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7188
I@B*GRP@"9T$@H(WI@BJD2P@"=D<@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7189
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7190
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7191
paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7192
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7193
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7194
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7195
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7196
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7197
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7198
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7199
     self paste28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7200
     ImageEditor openOnClass:self andSelector:#paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7201
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7202
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7203
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7204
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7205
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7206
	constantNamed:#'GenericToolbarIconLibrary class paste28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7207
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7208
@@@@@@@@@@@!!DR@@@@@@@@@@@@@@@BDQH@@@@@@@@@@@@@@@DQDP@@@@@@@@@@@@@AD"H"D@@@@@@@@@ADQBDQDQDRQDP@@@@@@DQDHQDQDQIDQ@@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7209
QDQDQDQDQD@@@@@@ADQDQDQDQDQDP@@@@@@@@@@@@@ADQDQ@@DQDQDQDQDQDLDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7210
QD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7211
L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7212
@@@@@@@2H"H"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 127 127 127 127 170 170 170 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7213
@@C8@@@@>@@@@O @@O??<@C???@@???0@O??<@C???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7214
??A????0_???<G????A???@@_??0@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7215
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7216
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7217
reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7218
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7219
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7220
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7221
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7222
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7223
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7224
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7225
     self reloadFromFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7226
     ImageEditor openOnClass:self andSelector:#reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7227
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7228
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7229
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7230
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7231
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7232
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7233
	constantNamed:#'GenericToolbarIconLibrary class reloadFromFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7234
	ifAbsentPut:[(Depth8Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7235
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7236
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7237
@@@@@@@E@PDAAPDA@PT@@@@@@ @C@0LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@H@@0LC@0@B@@@@@@PD@@TA@PDE@PDAAP@@@@@B@@LC@0L@A@PDA@PDA@PE
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7238
APTEAPTEAPT@@@@@@ @@@@@@@@HDA@PDA@PDA@DA@PTA@PDE@@@@@@HB@ HB@ HDA@PDA@PDA@TEAPTEAPTEAP@@@@@B@ @@@@@@@ @@@@@DA@@E@PDAAPDA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7239
@PT@@@@@@ H@@@LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@HB@@@C@0@B@@@@@@@@@@TA@PDE@PDAAP@@@@@@@@@@@@@@@@@@@@@@@@@EAPTEAPTEAPT@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7240
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7241
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7242
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7243
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7244
reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7245
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7246
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7247
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7248
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7249
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7250
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7251
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7252
     self reloadTextFromFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7253
     ImageEditor openOnClass:self andSelector:#reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7254
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7255
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7256
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7257
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7258
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7259
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7260
	constantNamed:#'GenericToolbarIconLibrary class reloadTextFromFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7261
	ifAbsentPut:[(Depth8Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7262
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7263
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7264
@@@@@@@E@PDAAPDA@PT@@@@@@ @C@0LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@H@@0LC@0@B@@@@@@PD@@TA@PDE@PDAAP@@@@@B@@LC@0L@A@PDA@PDA@PE
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7265
APTEAPTEAPT@@@@@@ @@@@@@@@HDA@PDA@PDA@DA@PTA@PDE@@@@@@HB@ HB@ HDA@PDA@PDA@TEAPTEAPTEAP@@@@@B@ @@@@@@@ @@@@@DA@@E@PDAAPDA
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7266
@PT@@@@@@ H@@@LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@HB@@@C@0@B@@@@@@@@@@TA@PDE@PDAAP@@@@@@@@@@@@@@@@@@@@@@@@@EAPTEAPTEAPT@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7267
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7268
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a') ; yourself); yourself]
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7269
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7270
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7271
sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7272
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7273
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7274
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7275
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7276
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7277
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7278
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7279
     self sUnit28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7280
     ImageEditor openOnClass:self andSelector:#sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7281
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7282
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7283
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7284
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7285
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7286
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7287
	constantNamed:#'GenericToolbarIconLibrary class sUnit28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7288
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7289
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O??C???????C?<O?0@@??<O??????<O?0??@@@@@@@@@@@@@@@@@@@@@BH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7290
H"H"H#L3L0@@H"H"H"H"H"H#L3L3@@@"H"H"H"H"H#L3L3L@@BH"H"H"H"H#L3L3L0@@H"H"H"H@@@L1L3L3@@@"H"H"HO??<A@3L3L@@BH"H"HO???1@3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7291
L0@@H"H"HO???1@@L3L3@@@"H"H <_?1@O@3L3L@@BH"H"C0G1@O<CL3L0@@H"H"HO@A@O?0L3L3@@@"H"H ?0@O??@3L3L@@BH"H#LO<O??@3L3L0@@H"H#
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7292
L3C???@3L3L3@@@"H#L3L0@@@3L3L3L@@BH#L3L3L3L3L3L3L0@@H#L3L3L3L3L3L3L3@@@#L3L3L3L3L3L3L3L@@CL3L3L3L3L3L3L3L0@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7293
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7294
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7295
?>A???? _???8G???>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7296
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7297
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7298
saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7299
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7300
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7302
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7303
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7304
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7305
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7306
     self saveImage28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7307
     ImageEditor openOnClass:self andSelector:#saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7308
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7309
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7310
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7311
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7312
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7313
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7314
	constantNamed:#'GenericToolbarIconLibrary class saveImage28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7315
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7316
UPSL3L0A@ET7L3L0?PAUML3L3OT@US\3L3C5@ET43L3L?PAUM3L3LO4@USSL3L3=@ET7L3L0?PAUML3L3O4@US\3L3C=@ET43L3L?PAUM@@@@O4@US?????=
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7317
@ET?UUUU?PAUO7??6?4@US=T?=+=@ET?ZO?Z?PAUO4C?6/4@U]U**)WU@ET@@@@@@@AUUUUUUUUU%Y%UUUTE%%UUUUTU)UEUUUUEUUUUUUVYUUTEUTUUUUDU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7318
AUUUUUUQUPUUVUUUUUTU%P@a') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7319
C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C??>@@@@@@@@@@@@;*9R<H*(
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7320
W)BJ*E:@S.9R,B)HT)@*REJP:$9R<@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7321
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7322
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7323
saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7324
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7325
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7326
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7327
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7328
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7329
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7330
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7331
     self saveTextToFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7332
     ImageEditor openOnClass:self andSelector:#saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7333
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7334
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7335
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7336
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7337
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7338
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7339
	constantNamed:#'GenericToolbarIconLibrary class saveTextToFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7340
	ifAbsentPut:[(Depth4Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7341
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7342
@@@@@EUUAP@@L3L3L3@@@ @PUUTA@@@4QCQDL@@BHAAUUPD@@CL3L3L"H"H"DEUU@P@@MDP4QCH"H"H @@@A@@@3L3L3H"H"H!!DQDQD@@CQDMDP0@@H DP@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7343
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7344
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7345
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  7346
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7347
saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7348
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7349
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7350
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7351
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7352
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7354
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7355
     self saveToFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7356
     ImageEditor openOnClass:self andSelector:#saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7357
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7358
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7359
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7360
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7361
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7362
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7363
	constantNamed:#'GenericToolbarIconLibrary class saveToFile28x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7364
	ifAbsentPut:[(Depth4Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7365
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7366
@@@@@EUUAP@@L3L3L3@@@ @PUUTA@@@4QCQDL@@BHAAUUPD@@CL3L3L"H"H"DEUU@P@@MDP4QCH"H"H @@@A@@@3L3L3H"H"H!!DQDQD@@CQDMDP0@@H DP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7367
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7368
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7369
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7370
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7371
search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7372
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7373
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7374
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7375
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7376
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7377
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7378
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7379
     self search28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7380
     ImageEditor openOnClass:self andSelector:#search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7381
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7382
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7383
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7384
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7385
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7386
	constantNamed:#'GenericToolbarIconLibrary class search28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7387
	ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7388
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@J @@@@H@@B(@@@@B@@@*@@@@@@@@@@@@@@@@@@@@@@@H@@B@@@@@B@@@ @@@@@ @@H@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7389
@@AT@D@P@@@@U@B@D@@@@EP@ A@@@@AT@H@P@@@@*@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@P@@H@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7390
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[40 40 80 212 208 200 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7391
@@@@@@@@@@@@@@@@@_A<@@G0_@@A<G0@@_A<@@G0_@@O>?8@C?/>@@?;? @O>?8@G???0O???>C???? ????8O???>C???? ??/?8O?;?>C?>?? ?8@?8O>@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7392
O>C? C? ?8@?8O>@O>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7393
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7394
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7395
shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7396
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7397
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7398
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7399
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7400
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7401
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7402
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7403
     self shell28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7404
     ImageEditor openOnClass:self andSelector:#shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7405
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7406
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7407
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7408
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7409
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7410
	constantNamed:#'GenericToolbarIconLibrary class shell28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7411
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7412
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3L3L3L0@1DQDQDQDQDQDQDQDQ@CD"H"H"H"H"H"H"H#D@LRH"H"H"H"H"H"H"LP@1H"P"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7413
H"H"H"H"H1@CD"QDH"H"H"H"H"H#D@LRP$IBH"H"H"H"H"LP@1ICP"H"H"H"H"H"H1@CD"QDH"H"H"H"H"H#D@LRH4IBH"H"H"H"H"LP@1IBP$H"H"H"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7414
H1@CD"QDH"H"H"H"H"H#D@LRH$H"QDP$QDIDQBLP@1H"H"H"H"H"H"H"H1@CD3L3L3L3L3L3L3L3D@@QDQDQDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7415
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7416
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7417
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@A@E@@@PAP@@7&T@@QJ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7418
U@@BR=P@@T(T@@YI%@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7419
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7420
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7421
systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7422
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7423
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7424
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7425
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7426
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7427
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7428
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7429
     self systemBrowserClassHistory28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7430
     ImageEditor openOnClass:self andSelector:#systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7431
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7432
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7433
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7434
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7435
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7436
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7437
	constantNamed:#'GenericToolbarIconLibrary class systemBrowserClassHistory28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7438
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7439
@@@@@@@@@@@@@@@@@@@ADQDQDQG0@@@@@@@@@@D"H"H"H.@@@@@@@@@@@RH"H"H"8@@@@@@@@@@O;.;.;.; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7440
@@@@@@@@@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@SL@@CL>@@@@@@@@@@@O; @@;.8@@@@@8@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7441
@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@VX@@FY.@@@@@@@@@@@O8@@@C.8@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7442
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @@@@8@8@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7443
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@8@8@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7444
??0^@O?<O0C??FF@??1!! O?<XXC??CF@@ @C@@H@A @B@>7 A0O[8@_?6>@G@=/ @ O[8@H@@@@B@<O A0O[8@_??>@G@;7 @@NY8@@@@@@@@@@@%]7/TITI
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7445
JUBUBR%P=H$/TIQIJRBTRR$ %\'')P@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7446
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7447
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7448
uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7449
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7450
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7451
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7452
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7453
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7454
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7455
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7456
     self uiPainter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7457
     ImageEditor openOnClass:self andSelector:#uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7458
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7459
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7460
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7461
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7462
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7463
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7464
	constantNamed:#'GenericToolbarIconLibrary class uiPainter28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7465
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7466
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@3H"H DQHQD"H @@@@@CLBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7467
IRT%IP@@@@@BUSMU@UIRT%IR@@@@@@IRLBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUSMU@RT%IRT%@@@@@@IRLBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7468
@@@BUSMU@UIRT%IR@@@@@@H"LBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7469
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7470
@@@@@@@@@@@@@@@@@@@@@@@@T@@@AP@E@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7471
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''8???90O??>TC???  ???8HO??>A#??? X???8@O??>@C??? @???8@@@@@@@@@@@@>QN@@H$Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7472
@@BADP@@.QD@@H$Q@@BIDP@@>_N@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7473
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7474
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7475
workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7476
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7477
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7478
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7479
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7480
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7481
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7482
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7483
     self workspace28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7484
     ImageEditor openOnClass:self andSelector:#workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7485
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7486
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7487
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7488
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7489
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7490
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7491
	constantNamed:#'GenericToolbarIconLibrary class workspace28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7492
	ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7493
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@@@AUPUUUUAUAQDQDB@@@@EUAUUUTE@@DQDPH@@@@P@E@@UP
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7494
UPTQDQ@ @@@AAPTEAUAUAQDQDB@@@@D@AP@ETET@DQDPH@@@@QDQDQDQDQEADQ@ @@@ADQDQDQDQDTPQDB@@@@DQDQDQDQDQQDDPH@@@@QDQDQDQDQEDDQ@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7495
@@@ADQDQDQDQDQEADB@@@@DQDQDQDQDQDTDPH@@@@QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@@@@@@L"H"H"H"H"H"H0L@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7496
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7497
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7498
????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@@@@@@@@@@@@ //R@HJJ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7499
T BB"%P@$(/X@IJJU@BR"%H@[O)R@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7500
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7501
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7502
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28-XP'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7503
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7504
eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7505
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7506
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7507
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7508
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7509
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7510
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7511
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7512
     self eraseXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7513
     ImageEditor openOnClass:self andSelector:#eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7514
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7515
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7516
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7517
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7518
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7519
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7520
	constantNamed:#'GenericToolbarIconLibrary class eraseXP28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7521
	ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7522
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7523
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GNB!!GL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A="H"F[0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^(VE!!XM/@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7524
@@@@@@@@@@@@@@@@@@@@@@@@@@A8^7-;_F<@@@@@@@@@@@@@ H%3@@@@@@@@@@@@@GQ5]WU6ZP@@@@@@@@A%_8^B@@@@@@@@@@@@@@@@[WA0\GE)@@@@@@A)
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7525
_(E9@@@@@@@@@@@@@@@@@@A$Y&Y&Y5(@@@A.]7]2@@@@@@@@@@@@@@@@@@@@@E%GQ4]HV A([F1-@@@@@@@@@@@@@@@@@@@@@@@@R3(:N#-IVE!!$@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7526
@@@@@@@@@@@@@@@@@@ALLB</K3)J@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C\(JB *SP@@@@@@@@@@@@@@@@@@@@@@@@@@S2,%IRD!!HRX?@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7527
@@@@@@@@O"H\GA04H1,[GS8@@@@@@@@@@@@@@@@@@@@@LQ(WE1\5@@@_E!!XXO @@@@@@@@@@@@@@@@@@IALSD1L-@@@@@B@SD1T=@@@@@@@@@@@@@@@@E@4M
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7528
CP4-@@@@@@@@G!!DQD#0@@@@@@@@@@@@@B0$IBP,2@@@@@@@@@@@,C 8PO@@@@@@@@@@@K PDA@\6@@@@@@@@@@@@@B\JB <8@@@@@@@@@@@B@@H3@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7529
@@@@@@@@K XCA#X@@@@@@@@@NR$9@@@@@@@@@@@@@@@@@@@8APDH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CXLFP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7530
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[209 43 1 210 43 1 211 55 15 212 43 1 212 44 1 212 55 15 214 55 15 214 56 15 214 68 29 215 44 1 216 44 1 217 56 15 217 91 57 218 44 1 218 45 1 218 56 15 219 56 15 220 45 1 221 57 15 222 45 1 222 81 43 223 57 15 224 46 1 225 46 1 225 58 15 225 140 112 226 58 15 227 47 1 228 47 1 228 58 15 228 118 85 229 95 58 229 118 85 230 47 1 230 70 29 230 83 44 230 131 99 231 47 1 231 59 15 231 165 140 232 47 1 232 190 168 233 59 15 233 107 72 233 166 140 233 166 141 233 190 168 234 48 1 234 60 15 234 166 142 234 190 168 234 201 182 235 154 128 235 166 142 235 201 182 236 120 86 236 201 182 236 214 196 237 49 1 237 60 15 237 201 182 237 202 182 237 202 184 238 203 184 238 227 210 238 236 222 238 236 223 238 236 224 238 237 222 238 237 223 238 237 224 239 49 1 239 61 15 239 85 44 239 133 100 239 167 142 239 179 156 239 203 184 239 227 210 239 227 213 239 236 223 239 237 223 239 237 224 239 238 223 239 238 224 239 238 225 239 238 226 239 238 227 240 49 1 240 155 128 240 203 184 240 227 213 240 237 223 240 238 223 240 238 226 240 239 226 240 239 227 240 239 228 240 240 226 240 240 227 241 121 86 241 227 213 242 49 1 242 61 15 242 121 86 242 203 184 242 227 213 242 229 214 243 49 1 243 121 86 243 167 142 243 205 185 244 50 1 244 62 15 244 121 86 244 206 185 245 86 44 246 50 1 246 62 15 247 50 1 247 86 44 247 122 86 247 134 101 248 51 1 248 63 15 248 122 86 249 75 29 249 98 58 249 147 114 250 51 1 250 111 72 251 63 15 251 99 58 252 51 1 252 63 15 253 52 1 254 52 1 255 52 1]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7531
@@@@@@@@@@@@@@@@@@@@@A8@@@@_@@@@G8@@@@?@C @G8C0@@?A8@@G8<@@@?^@@@G?@@@@? @@@G8@@@G?@@@C?8@@A>_@@@?C8@@_ _@@O0C8@G8@_@@<@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7532
C8@N@@^@@@@C @@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7533
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7534
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7535
redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7536
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7537
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7538
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7539
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7540
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7541
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7542
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7543
     self redoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7544
     ImageEditor openOnClass:self andSelector:#redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7545
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7546
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7547
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7548
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7549
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7550
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7551
	constantNamed:#'GenericToolbarIconLibrary class redoXP28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7552
	ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7553
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7554
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[E1QR5Q][P@@@@@@@@@@@@@@@@@@@@@@@@@@WC8RG2<!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7555
FTAX[P@@@@@@VDIFX0@@@@@@@@@@W@HXHBT(KS@2F$U''@@@@@C-RT40@@@@@@@@@ZC<XF1 PC1P''K#D.A%,@@@@:ST=J@@@@@@@@@E@QF1 BU6IYQA@,K2<L
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7556
V0@@NT]IR @@@@@@@@@?F1,GV0@@@@AV@2H.LP9[@@,8PT(@@@@@@@A(AQ,[P0@@@@@@@FH>GR,/CU,JM#]J@@@@@@@@XP,[F4,@@@@@@@@@YS8\JB4MBCP5
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7557
R @@@@@@@FPGF1-H@@@@@@@@@@A&O!!,%J"\1L4(@@@@@@@@@@Q,[AV(@@@@@ZVI"XU$@E2P&KB=J@@@@@@@@@D8VF0=T@@@@YS<KB0,KB1T\HRT)R @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7558
@@A[A1,[@V(@@EXQF1,[F1,[F1,^H4(@@@@@@@@@@DLVF1MK@@A_AALSD1LSD1LSD1MJ@@@@@@@@@@A^AQ,[BUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D(Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7559
F1,BV @@@@@@@@@@@@@@@@@@@@@@@@@@@@A+OQX[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@BFA,X@%(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V HXF05P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7560
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!!EHZ0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E(<Z0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7561
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7562
@@@@@@@@@@@@@@@@@@@@@@@@@@@A?@@@@?<G @_?!!8@O?<^@C??'' @>G=8@_@?>@G0G? A<@?8@O!!?>@C8?? @?O?8@G3?>@A>@@@@O0@@@C>@@@@_0@@@C<
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7563
@@@@_@@@@C @@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7564
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7566
undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7567
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7568
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7569
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7570
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7571
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7572
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7573
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7574
     self undoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7575
     ImageEditor openOnClass:self andSelector:#undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7576
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7577
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7578
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7579
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7580
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7581
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7582
	constantNamed:#'GenericToolbarIconLibrary class undoXP28x28Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7583
	ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7584
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7585
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F5]UD-QWF0@@@@@@@@@@@@@X4YBV@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7586
[U!!@FRD/G1H>W@@@@@@@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@@@@@@AJS44:@@@@V0X.LR8''E@<PFA,XO6 @@@@@@@@@R$%GNP@@V00/K20PQE%"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7587
U0HXF1EP@@@@@@@@@D)AN@,@V081K"HCU @@@@A[A1,[O0@@@@@@@@AJM3XJV04/J14>X @@@@@@@DL[F0U(@@@@@@@@R#T4B@4-JA0>YP@@@@@@@@AKF1,K
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7588
XP@@@@@@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A6P@@@@@@@AJK20&IA\@VVE"X&$@@@@@Z T[F0D@@@@@@@@@R"$%HQ0UB0,KB0,?YP@@@EPOF1YN@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7589
@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@@@@@@AJD1LSD1LSD1LSD0Q_@@AKD1,VP0@@@@@@@@@@@@@@@@@@@@@@@@@@@@AUBQ,[AU8@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7590
@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [E#5+@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [F@I @@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7591
T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F-HDPIZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Z31Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7592
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7593
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? @G ?<@A8_? @^O?<@G''??@A;>G0@_?@>@G? O A?0C8@_?!!<@G?<_@A??O0@_?38@@@A>@@@@?@@@@_0@@@O8@@@C
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7594
<@@@@>@@@@G@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7595
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7596
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7597
!GenericToolbarIconLibrary class methodsFor:'image specs-32x32'!
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7598
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7599
desktop32x32Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  7600
    <resource:#programImage>
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7601
    ^ self desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7602
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7603
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7604
desktop32x32Icon1
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7605
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7606
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7607
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7608
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7609
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7610
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7611
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7612
     self desktop32x32Icon1 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7613
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon1
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7614
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7615
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7616
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7617
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7618
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7619
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7620
	constantNamed:'GenericToolbarIconLibrary class desktop32x32Icon1'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7621
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7622
.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*7 G>W@@B3.+*:.+*:.+*:.+*:.+*:.+*:DHA?%89"##VTAY$"
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7623
#3F3.+*:.+*:.+*:.(@O%6T@#$1LAP.YNZ(B"V\$IBROP'':&.+*:&I\[@JQ#SIPK&P5PBQ$Y$W&T,QXV*S\7M8=U_)>:.#J,B9$9NR@FFSBQ+IR1E+*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7624
.+(V]#P7#5U>'';*:R3$7MCP]$[F:.+*:.+*:.+*:.+*:.+(P\#Q7UW:_.+*LHA4]GU._!!8^G!!8^G!!8^G!!39PMB^G!!8\P\#AVNI>:.(07W5>F+(^G!!8^G-KD
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7625
RE=HHC$ $Y2G!!8^VJ1P8'';*:#BB"F)FG!!8^GW4 7TC::.''@VE 6Q''H^G!!8\+!!BF2@K*$HA)2&8NC 8M_.+*:.+)0E!!X*CYF\ 8NCT3= $ \:@JQ''[8BC 8NC
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7626
 5>:.+*:\AXVJ"*A$Y2[%+!!Y[PN''*0QS#F]I 8NC 8NCW;*:.''@VE"(*I8FQWE2QCT9>G)N((G:PM:2C 8NC 8M_.+)0E!!X*J"^/]#A(O" $LF2ZZ+U8,9A''
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7627
^8NC 8NC 5>:\AXVJ"(''XS@(O(E(LDT5"C,.NKL@^&]; 8NC 8NCW7@VE"(*I7D<ZHF-.K!!=&8NHDW"3.+):_A^C 8NC 8M_E!!X*J"]D(6&8.DEQ 8NC 7J]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7628
R+N:.''*)]BT%IRT%IU<VJ"(''I2A_+)ZA$P %IRT%]@98,;*:^*$WIRT%IRT%W2(*I2\SO%=_Y06QBBT%IRU\C''"3.+)?#4&\''I2\''I1_J"\''D38>TA47Y9DH
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7629
''I2\Y(TN^KN:.)!!7E92\''I2\''E<''I1L>O#8MY3]P$P"\''HH+!!P98,;*:C268''I2\''I2\W2\SO#8>CP6ATEBQBI2\L8VEC''"3.+(OKR.\''I2\''I1_O#8>O 4
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7630
M55FK8(#''FZH"H N^KN:. <-.I2\''I2\''E=_W5>K\2<XYBLL''I2BQV9.[ 98,;*:."5ERXJ\''I2\,A0ASP #T)2\''I1QS8=WV$AXZ7"3.+*:P2-WWEQRT%IR
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7631
CEIRT%ITY#V%U5]@C!!D)&"18_ B:.+*MEU]WJ9URT%IR%T<3.U]ZD!!DTJ[T.^CX8O[L@.+*:.%)5V%)Z(W,5)U]ZPE QZ9(,W'' 6_%N3@@B:.+*:.+*:P7U@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7632
PDA@PAHN!!BZ5KE8_NC5S,0@@@K*:.+*:.+*:.+*LU1IXDXR6(B98M )S,;N_.+*:.+*:.+*:.+*:.+*:.)9DQ21^^C!!>T;L@@K*:.+*:.+*:.+*:.+*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7633
.+*:@KM>[UN3@JZ:.+*:.+*:.+*:.+*:.+*:.+*:.+*:. @a') ; colorMapFromArray:#[80 128 180 208 192 110 96 176 220 144 32 30 144 96 100 144 208 220 96 176 240 176 32 20 255 224 140 128 192 240 192 192 180 160 208 240 255 240 180 176 224 255 16 64 130 192 192 220 208 224 240 32 64 130 0 48 140 208 224 255 48 64 130 16 96 190 240 240 255 80 160 210 240 208 100 80 160 220 48 160 255 96 128 180 176 208 180 80 176 255 160 128 130 160 144 140 128 208 255 160 80 100 176 240 255 255 224 160 144 192 255 255 255 210 64 80 100 208 240 255 176 208 255 64 80 110 224 240 255 16 112 210 112 112 110 32 96 190 112 112 130 192 192 130 64 144 220 128 144 160 80 112 180 80 144 210 96 192 255 112 160 210 160 160 160 112 192 255 176 176 180 160 224 255 192 176 180 32 64 110 80 112 110 192 192 210 192 224 255 80 112 130 0 64 160 48 128 190 80 96 130 16 80 180 112 128 140 32 112 210 144 192 180 96 96 130 80 192 255 96 160 210 160 160 140 80 112 190 96 144 210 240 208 130 144 160 190 144 176 210 144 208 255 192 208 210 255 240 190 208 208 210 224 224 210 80 96 110 48 80 130 0 80 180 16 48 140 80 128 160 0 64 180 32 128 220 48 128 210 112 192 210 128 128 130 64 176 255 144 48 50 112 160 190 96 128 190 80 128 210 255 224 130 112 128 190 176 208 210 128 192 255 128 176 240 128 112 60 80 80 80 48 80 110 64 112 140 208 192 210 0 96 190 16 128 220 240 255 255 144 128 100 48 144 220 144 176 160 64 144 210 16 96 210 48 128 220 48 112 210 144 144 140 112 176 220 112 144 190 128 176 210 96 144 220 160 192 210 192 192 190 144 160 210 192 208 220 160 208 255 240 240 210 255 255 220 48 64 110 0 112 210 32 144 220 255 255 240 0 96 210 64 160 220 224 208 110 128 192 190 48 96 180 16 64 180 80 128 190 64 128 210 64 96 180 96 160 220 208 80 30 160 16 20 144 192 220 192 208 190 160 192 220 128 144 210 176 192 220 192 240 255 80 96 100 240 240 220 255 240 210 16 64 140 208 208 220 240 240 240 112 96 100 0 80 190 48 176 255 16 16 0 64 112 180 64 128 190 255 240 255 208 96 30 144 16 20 80 144 220 128 208 240 192 48 20 128 176 220 112 176 240 176 208 220 144 192 240 224 240 210 192 224 240 208 176 180 224 224 220 224 240 240 96 96 100 80 80 100 224 224 240 32 128 210 32 112 190 255 255 255]; mask:((Depth1Image new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7634
@@@@@@@@A?@@@??8@_??>G????#????8????>O????#????8?????O????;????????????????????>?????O????3????<?????O????3????<?????O??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7635
??3????<_????G????!!????0_???@G??<@A??8@@_>@@@C8@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7636
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7637
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7638
desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7639
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7640
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7641
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7642
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7643
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7644
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7645
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7646
     self desktop32x32Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7647
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7648
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7649
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7650
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7651
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7652
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7653
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7654
	constantNamed:'GenericToolbarIconLibrary class desktop32x32Icon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7655
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7656
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N@@BN#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7657
#(:N#(8@@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N# @@-;^7-;^7VJB (BX*PTD&(GH-Q@@.@DRHI!!LNMVL9@@@2L ];^18[F6^._:-PTI.[ 8LO
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7658
,6,=UI>G[6>"(#T@@CJ$)WZSSI\JB&@FRYA5#X6M]WU4^G DAE:(*J!!0NP@@A4^PA)\JB (J%G18$YF''$S@0^J**_G%$ST46XW@9@@A;FT&TH"H"H!!<H+D)J
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7659
L4(\AYV)$)I=_VUNS#\KV3$@@G.P+9 " HA(TYT\GA0\AR@IBZ6VN&U>Y&X#S4=[C @@^4&TH+J@,%DLHC !!NB@ BP&0,G9>Y&ZY XFAZQXN@@@^A)P" HA(
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7660
+R@8HS  HEIR,KA:_#.Y&XFAIF%)VP8@@A- %2J2ZJ4LNBD!!HB@MT%J0,G9>&Y&Y XE)ZV&LC @@F6@JH&!!QCC !!HRD H@5RT+B0_'':Y&XFA V%)''H0N@@A''
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7661
S@("T[D8HRD!!HR@ T%J0,G)>N9&Y XFAZV&\E08@@J9L%1>RHBD!!HRD!!HBART+B0_'':Z&Y&A V%)ZXQ]C @@_42W )T!!HV(!!HR@ CUIR,KA>_)&YT8FAZV%)
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7662
!!K),@@A?XIPHGC1*X"D!!HBART%J0^''8;&Y&A XE)ZY2D@F0@@J- +:0%R6)"HRD HEIR,KA>_)*Y&XFAZV%)!!HPA[@@@TFA<URUKZ"D!!O"@MT%J0,G9>&Y%S
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7663
 XE)ZV&D!!@E,@@APA''",IT-*HRD HEIRT+B0_'':Y&XFA V%)''HRD@ 8@@I-II1@P-FH!!HR@ T%J0,G9>&)&Y XE)ZV&D!!HPBC @@&96&#4U7!!V5-U%X?O3<?
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7664
JHVE!!XVE!!QDQDQDQDPHN@@@R-TZ^P(*]W5=_W5=HRCP4MCP4LSD]GQ4]GQ4]K08@@HNFQZLXJ5=.EAPTEK"!!(ZF!!(ZF!!(X.K"X&I"X$ZC @@ 0M1U4@)\;Z6
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7665
-+YZV$MCP4MCP20UEV9.[&9.[!!(N@@A+Z6,=UI>G[6>"(''A0V1YY#A]]W[(@@PHB@!!(ZF 8@@KV5NP:9(E1D@@B:KWH&D08NC 8NC 8NC 8NC 8NC @@#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7666
#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N@@BN#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(8@@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7667
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[239 239 240 239 239 255 240 240 255 111 112 128 64 112 191 48 112 208 79 112 191 95 111 176 64 112 208 63 127 223 95 128 207 95 144 223 63 112 223 48 112 224 175 176 191 144 160 207 112 159 208 159 175 191 143 144 207 191 191 207 47 63 95 47 48 80 208 208 224 223 224 240 255 208 64 48 95 176 255 255 255 96 127 176 48 111 208 127 143 160 96 112 176 80 127 208 48 112 223 47 111 223 95 128 208 95 144 224 95 160 240 47 96 208 192 207 208 111 144 208 144 160 176 16 143 191 192 192 208 15 127 191 32 48 80 223 223 224 239 240 240 240 255 255 48 111 191 112 143 160 80 111 176 47 111 207 112 128 160 160 175 176 80 128 207 80 144 223 48 111 223 160 175 191 79 128 223 79 143 240 47 96 223 160 175 208 47 112 223 143 159 176 0 175 224 192 192 207 96 176 31 32 48 64 224 224 224 47 128 191 63 143 191 32 80 175 112 128 144 64 111 191 48 111 207 32 96 208 95 127 191 79 128 207 80 143 223 95 159 224 127 143 191 79 127 223 63 127 224 80 159 240 160 176 208 48 96 207 143 159 191 15 159 208 207 208 208 208 223 224 32 47 64 207 208 224 223 223 223 224 224 240 64 127 191 111 127 144 80 127 191 80 143 207 32 111 223 159 175 176 79 127 207 79 143 223 80 144 224 111 127 191 80 128 223 96 160 240 32 96 223 159 175 208 176 176 191 128 159 191 47 63 80 176 191 223 192 207 224 48 111 144 208 208 223 64 80 111 48 111 176 48 96 176 64 111 176 79 128 176 63 111 191 64 127 207 64 143 224 95 112 176 64 112 207 79 128 208 79 143 224 112 128 191 95 143 223 95 159 240 79 127 208 143 159 207 111 175 255 144 160 191 144 144 175 175 191 223 208 223 223 63 79 95 31 112 175 63 64 95 223 223 240 47 96 176 0 0 0 63 144 208 63 96 176 48 96 191 64 127 208 80 112 191 80 127 207 63 112 208 64 128 223 95 127 207 95 127 208 80 144 240 79 144 240 128 144 207 96 160 255 144 159 176 224 48 0 175 176 208 207 207 208 48 64 95 191 192 223 15 160 240 31 79 160 47 95 175 96 144 176 47 96 191 79 127 191 63 127 208 63 112 207 112 143 191 63 111 207 64 127 223 111 128 191 79 112 207 64 128 224 64 112 223 95 128 223 144 160 208 95 143 224 159 160 176 31 47 64 208 208 208 48 63 95 191 192 207 224 239 240]; mask:((Depth1Image new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7668
@@@@@@@@@@@@@@@@@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7669
??9????>_????''????9????>_???? @@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7670
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7671
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7672
error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7673
    "This resource specification was automatically generated
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7674
     by the ImageEditor of ST/X."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7675
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7676
    "Do not manually edit this!! If it is corrupted,
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7677
     the ImageEditor may not be able to read the specification."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7678
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7679
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7680
     self error32x32Icon inspect
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7681
     ImageEditor openOnClass:self andSelector:#error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7682
     Icon flushCachedIcons
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7683
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7684
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7685
    <resource: #image>
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7686
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7687
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7688
	constantNamed:#'GenericToolbarIconLibrary class error32x32Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7689
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7690
@@@@@@@@@@@@@@@A@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@P@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7691
@@@@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7692
@PDA@PDA@P@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7693
@PDA@PDA@PDA@PDA@PDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@@DA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7694
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HA@PDA@@DA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7695
@PDB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ DA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7696
@PDA@@DA@PDB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ DA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7697
@PDA@PDA@PDA@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@DA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7698
@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7699
@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7700
@@@@@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PD@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7701
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 0 0 255 255 255]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7702
@A?0@@A??@@A??<@@??? @_??<@O??? G???<C???? ????8_????G????3????>?????/????;????>?????/????;????>?????/????9????<_????C??
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7703
?? ????8G???<@???>@G???@@??? @G??0@@_?0@@A?0@@@@@@@b') ; yourself); yourself]
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7704
!
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7705
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7706
warn32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7707
    "This resource specification was automatically generated
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7708
     by the ImageEditor of ST/X."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7709
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7710
    "Do not manually edit this!! If it is corrupted,
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7711
     the ImageEditor may not be able to read the specification."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7712
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7713
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7714
     self warn32x32Icon inspect
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7715
     ImageEditor openOnClass:self andSelector:#warn32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7716
     Icon flushCachedIcons
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7717
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7718
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7719
    <resource: #image>
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7720
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7721
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7722
	constantNamed:#'GenericToolbarIconLibrary class warn32x32Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7723
	ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7724
@@@@@@@@@@@@@@@@@@@@@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@P@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7725
@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PD@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7726
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7727
@PHB@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@ HA@PDA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PHB@ HA@PDA@@@@@@@@@@@@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7728
@@@A@PDA@ LC@ DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PHC@0LC@ DA@PD@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@ LC@0LB@PDA@P@@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7729
@@@@@@@@@PDA@PHB@0LC@0HB@PDA@P@@@@@@@@@@@@@@@@@@@@@A@PDA@ HC@0LC@ HA@PDA@@@@@@@@@@@@@@@@@@@@@PDA@PHB@ LC@0LB@ HA@PDA@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7730
@@@@@@@@@@@@@@@A@PDA@ HB@0LC@0HB@ DA@PD@@@@@@@@@@@@@@@@@@PDA@PHB@ HC@0LC@ HB@ DA@PD@@@@@@@@@@@@@@@@A@PDA@ HB@ LC@0LB@ HB
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7731
@PDA@P@@@@@@@@@@@@@@@PDA@PHB@ HB@0LC@0HB@ HB@PDA@P@@@@@@@@@@@@@A@PDA@ HB@ HB@0LB@ HB@ HA@PDA@@@@@@@@@@@@@PDA@PHB@ HB@ HB
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7732
@ HB@ HB@ HA@PDA@@@@@@@@@@@A@PDA@ HB@ HB@ LC@ HB@ HB@ DA@PD@@@@@@@@@@PDA@PHB@ HB@ HC@0LC@ HB@ HB@ DA@PD@@@@@@@@A@PDA@ HB
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7733
@ HB@ LC@0LB@ HB@ HB@PDA@P@@@@@@@PDA@PHB@ HB@ HB@ LC@ HB@ HB@ HB@PDA@P@@@@@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HA@PDA@@@@@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7734
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7735
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@a') ; colorMapFromArray:#[0 0 0 255 0 0 255 255 255 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7736
@@F@@@@A @@@@<@@@@O@@@@G8@@@A>@@@@?0@@@O<@@@G? @@A?8@@@??@@@O?0@@G?>@@A?? @@??<@@O??@@G??8@A??>@@???0@O??<@G??? A???8@??
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7737
??@O???0G???>A???? ????<O????G????9????>??????????<b') ; yourself); yourself]
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7738
! !
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
  7739
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7740
!GenericToolbarIconLibrary class methodsFor:'image specs-misc'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7741
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7742
DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7743
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7744
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7745
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7746
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7747
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7748
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7749
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7750
     self DirectoryUp22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7751
     ImageEditor openOnClass:self andSelector:#DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7752
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7753
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7754
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7755
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7756
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7757
	constantNamed:#'GenericToolbarIconLibrary class DirectoryUp22x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7758
	ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7759
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7760
@@@@@@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7761
@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7762
@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@ HB@ HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7763
@ @@@@@@@@@B@ HB@@LC@0L@@@HB@ HB@ HB@ H@@@@@@@@@@ HB@ @C@0LC@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7764
@@@B@ HB@@LC@0LC@0LC@0LC@0L@@@H@@@@@@@@@@ HB@ @C@0LC@0LC@0LC@0LC@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@@@@B@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7765
@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@ HB@ @@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7766
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7767
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 255 255 0 255 0 0]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7768
@@@@@@@0@@@@^@@@@O0@@@G>@@@C?0@@A?>@@@??0@@_?>@@G?8@@C???>@???? O???8C???>@???? O???8C???>@???? O???8C???>@???? O???8C??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7769
?>@???? @@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7770
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7771
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7772
desktop30x30Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7773
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7774
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7775
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7776
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7777
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7778
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7779
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7780
     self desktop30x30Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7781
     ImageEditor openOnClass:self andSelector:#desktop30x30Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7782
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7783
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7784
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7785
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7786
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7787
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7788
	constantNamed:'GenericToolbarIconLibrary class desktop30x30Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7789
	ifAbsentPut:[(Depth8Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7790
.+*:.+*:.+*:.+*:.+*:.+*3T788,5MST5N^.+*:.+*:.+*:.+*:.+*_,;MSB#Z3T788,5MST5MS@K*:.+*:.+*: @>3T34@,;MSB#Z3T788^E8,Q4QS@JZ:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7791
&I\[@KMS_#X@T348,;MSB#Y8K*B6!!AEXD%^L@@B:+C48M AS_#Y8T348G58,-RZDC!!I@PDA@PGUC@@B:^C48M''!!S_#Y8W"2ZZ1EXPE)W)SU;%YVU%WUZ@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7792
^C4=NG .-R$TDQIZU;$3S9URT%IRT%IRT!!VM@@B:^G ,&!!DNPE]W)SU&UEIRT%HLT%IRT%IRT"-C@I>:U5]WPH>OS5F\T%IRT%HH""@ $YF\!!8^G!!2.DH[H@
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7793
U5^O 8NC 8MRT%HH"%APO#8VCYF\ 8NCT3= $ \:U5]/ 8NC 8M_RC]PO+)0E!!X*CYF\&9Z8VV4C):,DU5^O 8NC 8M_.+*:\AXVJ"('' YE\WIDMS''8^$:"
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7794
U5^O 8NC 8M_.+)0E!!X*J"^/]#A(O" $LF2ZZ+T@U5^O 8NC 8M_.''@VE"(*I6D0JC:AZCAEMX ;@@@@U5^O 8NC 8M_\AXVJ"(''\S1( Z68.G6[ 8 Q@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7795
U5^O 8NC 8M_E!!X*J"]D(6&8.DEQ 8NC 7J]@@B:U5^OIRT%IRU_E"(*I2\ W::V YDHIRT%IWPN@@B:U5^OIRT%IRU_J"(''I1L>W5=''CYDHIRVCIU0N@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7796
U5^O''I2\''I1_J"\''D38>TA47Y9DH''I2C 8TN@@B:U5^O''I2\''I1_I1L>O#8MCXEPTIDH''I2B 8TN@@B:U5^8''I2\''I1_O#8>O 5_M5=FK8(#''I2C 8TN@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7797
KR4+''I2\''I1_O#9_"7L/FFP#CI2\ %EQ[&8N@@B:KR68T%J\''I1_W5=MBBMRT%IRCEEO#5]ZPE!!+@@B:P4L+T%IRT%IRCEIRT%ITY#V%U5]@C!!D)&"18@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7798
#X4UT%IRT%IRT)UOL;%WV!!HQEB&5K'' 6NC58@@B:V%)5%YVU^3V%U5)@VAE+&"1^^CY>T;L6NC4@@K*:P4M5PDA@PAHN!!BZ5KE8_NC5S,3Y>T;L@@K*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7799
#H1WD!!FD-*@.^CXJT;N3''35S,0@@@K*:.+*:.+*:'')9DQ598NG9S,3XJT;N3'';*:.+*:.+*:.+*:.+*:''+N3_%N3NG9S,0@@.+*:.+*:.+*:.+*:.+*:.+*:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7800
') ; colorMapFromArray:#[80 128 180 208 192 110 96 176 220 144 32 30 144 96 100 144 208 220 96 176 240 176 32 20 255 224 140 128 192 240 192 192 180 160 208 240 255 240 180 176 224 255 16 64 130 192 192 220 208 224 240 32 64 130 0 48 140 208 224 255 48 64 130 16 96 190 240 240 255 80 160 210 240 208 100 80 160 220 48 160 255 96 128 180 176 208 180 80 176 255 160 128 130 160 144 140 128 208 255 160 80 100 176 240 255 255 224 160 144 192 255 255 255 210 64 80 100 208 240 255 176 208 255 64 80 110 224 240 255 16 112 210 112 112 110 32 96 190 112 112 130 192 192 130 64 144 220 128 144 160 80 112 180 80 144 210 96 192 255 112 160 210 160 160 160 112 192 255 176 176 180 160 224 255 192 176 180 32 64 110 80 112 110 192 192 210 192 224 255 80 112 130 0 64 160 48 128 190 80 96 130 16 80 180 112 128 140 32 112 210 144 192 180 96 96 130 80 192 255 96 160 210 160 160 140 80 112 190 96 144 210 240 208 130 144 160 190 144 176 210 144 208 255 192 208 210 255 240 190 208 208 210 224 224 210 80 96 110 48 80 130 0 80 180 16 48 140 80 128 160 0 64 180 32 128 220 48 128 210 112 192 210 128 128 130 64 176 255 144 48 50 112 160 190 96 128 190 80 128 210 255 224 130 112 128 190 176 208 210 128 192 255 128 176 240 128 112 60 80 80 80 48 80 110 64 112 140 208 192 210 0 96 190 16 128 220 240 255 255 144 128 100 48 144 220 144 176 160 64 144 210 16 96 210 48 128 220 48 112 210 144 144 140 112 176 220 112 144 190 128 176 210 96 144 220 160 192 210 192 192 190 144 160 210 192 208 220 160 208 255 240 240 210 255 255 220 48 64 110 0 112 210 32 144 220 255 255 240 0 96 210 64 160 220 224 208 110 128 192 190 48 96 180 16 64 180 80 128 190 64 128 210 64 96 180 96 160 220 208 80 30 160 16 20 144 192 220 192 208 190 160 192 220 128 144 210 176 192 220 192 240 255 80 96 100 240 240 220 255 240 210 16 64 140 208 208 220 240 240 240 112 96 100 0 80 190 48 176 255 16 16 0 64 112 180 64 128 190 255 240 255 208 96 30 144 16 20 80 144 220 128 208 240 192 48 20 128 176 220 112 176 240 176 208 220 144 192 240 224 240 210 192 224 240 208 176 180 224 224 220 224 240 240 96 96 100 80 80 100 224 224 240 32 128 210 32 112 190 255 255 255]; mask:((Depth1Image new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7801
@@@@@@@@A>@@@G? @@??8@A??>@G??? O???8G???>A????8_????G????1????<_???>G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7802
?>A???? _???0G??? A??>@@_?<@@G?@@@@<@@@@') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7803
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  7804
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7805
documents26x26Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7806
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7807
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7808
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7809
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7810
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7811
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7812
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7813
     self documents26x26Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7814
     ImageEditor openOnClass:self andSelector:#documents26x26Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7815
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7816
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7817
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7818
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7819
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7820
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7821
        constantNamed:'GenericToolbarIconLibrary class documents26x26Icon'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7822
        ifAbsentPut:[(Depth8Image new) width: 26; height: 26; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7823
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E)ZQ!!0IBP).
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7824
G)^WWX]PTA4@@@@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>TP@@@@@@@@@@@@ADQAA"MST''YTA(ZG0WO#9Q@@@@@@@@@@@@@E!!XJ7.Q$S>HA)RT%SFA YP0L3L@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7825
@@@@@@@@[F1''E%IRP#^DHB@<OC0<OC2S$0@@@@@@@@B@ B):@ H-\9AUUXJB (JBOF-+@@@@@@@@@HB@J''(B@"53$EUU (JB (H<Z6,@@@@@@@@@B@"M@#4=
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7826
K@=Y%YT#G2D!!&VPZF @@@@@@@@@/K2$(@PDDM)AUUT]> 8LXYEYV@@@@@@@@@A,[^X0;N1U^VYVUR 1\WF5$Z&(@@@@@@@@@F1-8]0@@S''JPUUVB (JB #1A
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7827
PP@@@@@@@@@[F7!!7@@AN\)AUUXJB (JBODEA@@@@@@@@@E]W"0BJ"$4NVYVUW5=_W5<<_W4@@@@@@@@@_7<S''VE!!DXVPUUVB (JB #0EAP@@@@@@@@@GA2VI
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7828
NC!!4&E&U%U=_W5=_OEQT@@@@@@@@@@\GIX$8NGRXVYVUW5=_W5<<UEP@@@@@@@@@K"95II.[R06PUUVB (JB #2O#0@@@@@@@@@.K&AL&)("RCHKB1HRNS$9
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7829
I!!$Y@@@@@@@@@IJRQYY0\D$4X4=O@89ST6$Y[6<@@@@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@@@B\''E-CY&Y6!!''D:N @@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7830
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166]; mask:((Depth1Image new) width: 26; height: 26; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7831
@@@@@@@@@@@@@@@@C??0@@??<@@O??@@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7832
? @O? @@@@@@@@@@@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7833
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  7834
3196
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  7835
fileOpenIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  7836
    <resource: #programImage>
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  7837
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  7838
    ^ self loadFromFileIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  7839
!
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  7840
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7841
greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7842
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7843
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7844
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7845
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7846
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7847
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7848
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7849
     self greenThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7850
     ImageEditor openOnClass:self andSelector:#greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7851
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7852
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7853
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7854
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7855
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7856
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7857
        constantNamed:'GenericToolbarIconLibrary class greenThumbUpIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7858
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7859
@@@@@@@@@@@@A)<@@@@@@@@G( @@@@@@@@^/@@@@@@@@A9@@@@@@@@C)$@@@@@@@A)+<>]BM]0BZ(->&E''3&@I**J&DN];@@VZ*''G^DV] C%&Y8AY7,@@MQU
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7860
P]8QY6@@@MSPE''XP@@@@@CL0!!''X@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 64 0 77 242 77 0 128 0 0 160 32 8 215 50 50 173 50 45 210 45 0 32 0 40 247 40 77 242 118 0 64 32 22 105 22 18 141 18 13 178 13 45 210 86]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G@@>@C8@O @<@G?<??;??/?>??;??O?<?? ?>@?0') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7861
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7862
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7863
greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7864
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7865
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7866
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7867
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7868
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7869
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7870
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7871
     self greenThumbUpSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7872
     ImageEditor openOnClass:self andSelector:#greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7873
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7874
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7875
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7876
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7877
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7878
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7879
        constantNamed:'GenericToolbarIconLibrary class greenThumbUpSmallIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7880
        ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@P@@@@D@@@@A@@L@@P@B@@U*@@@UZ@@@UV @@EV @@@@@@B@@@@B@b') ; colorMapFromArray:#[0 0 0 0 255 0 0 127 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C@@N@@8@C @_8A?0O?@?8C?@O8@@@@@a') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7881
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7882
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7883
greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7884
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7885
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7886
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7887
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7888
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7889
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7890
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7891
     self greyThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7892
     ImageEditor openOnClass:self andSelector:#greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7893
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7894
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7895
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7896
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7897
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7898
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7899
        constantNamed:'GenericToolbarIconLibrary class greyThumbUpIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7900
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7901
@@@@@@@@@@ @@4\@@@@@@@@GE@@@@@@@@@\W@@@@@@@@A4@@@@@@@@@4P@@@@@@H@4E2]FAV]0AAEF\SH7X3@DDQPSHC]2@@]ADWI#H#\0@7]7LBM7H@@FY7
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  7902
YVL"M3@@@FY T7L @@@@@BH T7L@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 224 224 224 64 64 64 128 128 128 192 192 192 32 32 32 96 96 96 160 160 160]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G@@>@C8@O @<@G?<??;??/?>??;??O?<?? ?>@?0') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7903
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  7904
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7905
hideToolBarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7906
    <resource: #programImage>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7907
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7908
    ^ self hideToolbar8x24Icon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7909
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7910
    "Created: / 18-02-2007 / 14:52:15 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7911
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7912
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7913
hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7914
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7915
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7916
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7917
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7918
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7919
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7920
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7921
     self hideToolbar24x8Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7922
     ImageEditor openOnClass:self andSelector:#hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7923
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7924
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7925
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7926
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7927
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7928
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7929
	constantNamed:#'GenericToolbarIconLibrary class hideToolbar24x8Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7930
	ifAbsentPut:[(Depth2Image new) width: 24; height: 8; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@J@B(@* @HPB%@"D@AP@U@ET@@@@@ @J@@B$@*PH)@BT@IPA%@@T@AP@E') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 24; height: 8; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@XFA TEAPLC@0@@@@A XFAPTE@0LC') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7931
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7932
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7933
hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7934
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7935
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7936
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7937
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7938
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7939
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7940
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7941
     self hideToolbar8x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7942
     ImageEditor openOnClass:self andSelector:#hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7943
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7944
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7945
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7946
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7947
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7948
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7949
	constantNamed:#'GenericToolbarIconLibrary class hideToolbar8x24Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7950
	ifAbsentPut:[(Depth2Image new) width: 8; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@(@BD@AP@@@@@)@BT(AR$@JP@%J@T)@BT(JR$!!IPTEJB )HRT%AR$@IR EJP@%') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 8; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@FAPL@@FAPL@XE@0@@XE@0A TC@@A TC') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7951
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7952
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7953
hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7954
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7955
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7956
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7957
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7958
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7959
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7960
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7961
     self hideToolbarIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7962
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7963
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7964
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7965
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7966
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7967
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7968
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7969
	ifAbsentPut:[(Depth2Image new) width: 10; height: 26; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 26; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7970
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7971
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7972
hideToolbarIcon10x26
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7973
    "This resource specification was automatically generated
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7974
     by the ImageEditor of ST/X."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7975
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7976
    "Do not manually edit this!! If it is corrupted,
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7977
     the ImageEditor may not be able to read the specification."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7978
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7979
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7980
     self hideToolbarIcon inspect
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7981
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7982
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7983
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7984
    <resource: #image>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7985
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7986
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7987
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon10x26'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  7988
	ifAbsentPut:[(Depth2Image new) width: 10; height: 26; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 26; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7989
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7990
    "Created: / 18-02-2007 / 14:52:07 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7991
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  7992
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7993
hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7994
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7995
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7996
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7997
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7998
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7999
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8000
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8001
     self hideToolbarIconH14 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8002
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8003
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8004
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8005
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8006
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8007
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8008
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH14'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8009
	ifAbsentPut:[(Depth2Image new) width: 10; height: 14; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@@@@@') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 14; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8010
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8011
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8012
hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8013
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8014
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8015
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8016
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8017
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8018
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8019
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8020
     self hideToolbarIconH20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8021
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8022
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8023
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8024
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8025
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8026
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8027
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH20'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8028
	ifAbsentPut:[(Depth2Image new) width: 10; height: 20; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@@@@@') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8029
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8030
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8031
hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8032
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8033
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8034
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8035
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8036
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8038
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8039
     self hideToolbarIconH26 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8040
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8041
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8042
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8043
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8044
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8045
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8046
	constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH26'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8047
	ifAbsentPut:[(Depth2Image new) width: 10; height: 26; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 26; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8048
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8049
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8050
languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8051
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8052
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8053
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8054
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8055
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8056
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8057
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8058
     self languages20x12Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8059
     ImageEditor openOnClass:self andSelector:#languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8060
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8061
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8062
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8063
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8064
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8065
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8066
	constantNamed:'GenericToolbarIconLibrary class languages20x12Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8067
	ifAbsentPut:[(Depth8Image new) width: 20; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8068
L0X3IRT%IRT3A X3IRT%IRT3L0XLL0XFL2T%ISLFA#L%IRT%L20FA2T%L3LFL2T%L0XFL2T%L3LFA0\GIRT%CCLFA 03A X3CCLFA \GA0\3L3L3L3L3L3LF
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8069
A#L3L3LFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA XFA X3L3L3L3L3L3LFA XFA XFA XFA"T%ISLFA @JB (JB (JB (JB (J
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8070
ISLFA#LJB (JB (JB (JB (JB (3A"0JB (JB (JB (JB (JB (JB XJB (JB (JB (JB (JB (JB (J') ; colorMapFromArray:#[168 208 173 255 223 137 255 226 146 255 228 151 255 230 164 168 107 144 255 0 0 0 0 0 226 232 173 255 224 143 255 204 0 255 229 162 167 167 205 137 185 173 70 78 154 255 225 143 255 227 151 255 232 163 137 78 144 70 107 158 70 78 148 255 224 142 255 226 149 255 229 159 255 232 173 255 255 238 198 232 173 255 224 141 255 227 150 255 228 157 255 232 171 70 133 163 70 78 146 255 224 140 255 226 147 255 228 155 255 231 168 0 0 99 70 78 145 255 223 138 255 227 148 255 227 153 255 232 168 226 159 148 255 63 63 70 78 144 255 224 139 255 225 145 255 228 152 255 231 166 198 133 144 255 255 255]; yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8071
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8072
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8073
loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8074
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8075
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8076
    ^ self load22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8077
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8078
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8079
loadImageFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8080
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8081
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8082
    ^ self loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8083
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8084
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8085
redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8086
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8087
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8088
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8089
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8090
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8091
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8092
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8093
     self redThumbDownIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8094
     ImageEditor openOnClass:self andSelector:#redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8095
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8096
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8097
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8098
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8099
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8100
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  8101
        constantNamed:'GenericToolbarIconLibrary class redThumbDownIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  8102
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8103
@@@@@@@@@@@@@L3@!!;\@@@C6<J^7(@@H=-5*<Z);\@@]UUDJ^;(@@MH3N:<Z);\@H3MC^ F;(@@#MO$7);8WB@\#'')K0#;,@@AH @@@@@@@@B2@@@@@@@@@K
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  8104
NP@@@@@L@@,4@@@@@@T@A2$@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 191 20 1 255 44 33 255 131 65 255 84 65 255 88 33 160 40 0 184 67 40 32 27 0 223 99 33 64 22 0 223 52 33 128 13 0 224 56 0 112 16 31 152 35 8]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@?>O?8??3??O?>??;??/?>_?0<@C8@O @>@A0@') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8105
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8106
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8107
redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8108
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8109
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8110
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8111
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8112
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8113
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8114
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8115
     self redThumbDownSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8116
     ImageEditor openOnClass:self andSelector:#redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8117
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8118
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8119
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8120
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8121
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8122
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  8123
        constantNamed:'GenericToolbarIconLibrary class redThumbDownSmallIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
  8124
        ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@B@@@@@@EV @@AUZ@@@EV C@@U*@@@A@@@@@P@@@@D@@@@A@@@@@@@@ b') ; colorMapFromArray:#[0 0 0 255 0 0 127 0 0 255 255 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@? C?@O>@?<A?0G>@N@@8@C @L@@@a') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8125
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
  8126
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8127
redoIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8128
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8129
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8130
    View styleSheet name = #winXP ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8131
	^ self redoXP28x28Icon
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8132
    ].
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8133
    ^ self redo20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8134
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8135
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8136
saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8137
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8138
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8139
    ^ self save22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8140
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8141
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8142
saveToFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8143
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8144
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8145
    ^ self save22x22Icon
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8146
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8147
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8148
smallBugIcon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8149
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8150
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8151
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8152
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8153
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8154
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8155
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8156
     self smallBugIcon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8157
     ImageEditor openOnClass:self andSelector:#smallBugIcon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8158
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8159
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8160
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8161
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8162
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8163
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8164
	constantNamed:#'GenericToolbarIconLibrary class smallBugIcon'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8165
	ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8166
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@3@@@@@@@@@@@3LS@@@@@@@@@@LSL2@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8167
@@@@@@@3LSL @@@@@@@@D3L2@@@@@@@@@CLSH @@@@@@@@@BH @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8168
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 128 0 0 248 0 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8169
@@@@@@@@@@@@@@@@@@#@@B_ @A? @O?@@C?@@G?@@G> @G>@@C=@@A4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8170
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8171
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8172
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8173
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8174
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8175
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8176
smiley_veryAngry
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8177
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8178
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8179
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8180
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8181
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8182
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8183
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8184
     self smiley_veryAngry inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8185
     ImageEditor openOnClass:self andSelector:#smiley_veryAngry
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8186
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8187
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8188
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8189
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8190
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8191
    ^Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8192
	constantNamed:#'GenericToolbarIconLibrary class smiley_veryAngry'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8193
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8194
3L3L3L3L3L3K/L2;.;3L.<,[.9X36;,[27(&H$QM6''/K(+IDQDR=*<V3HDQDPD6526I@ADP@SZ/KL  @P@ M><,4BHQD"@7;22Q@ADP@S_/K5DQDQDS-*<2=
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  8195
Q@@@AM6<3K7PQDS 6+3L2=7]7]6+3L3L.???*;3L3L3L.;.<3L0b') ; colorMapFromArray:#[0 0 0 254 42 0 255 253 19 255 254 147 255 234 0 150 150 150 255 255 199 254 109 3 255 0 0 255 255 235 254 157 0 69 69 69 248 244 251 255 201 0 255 229 0 255 180 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A#87??_?=??7??_?=??7??_?=??3?>O?8_?@?8@>@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8196
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8197
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  8198
!GenericToolbarIconLibrary class methodsFor:'image specs-tools'!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  8199
3075
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  8200
addBufferIcon
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  8201
    <resource: #programImage>
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  8202
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  8203
    ^ self addBuffer16x16Icon2
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  8204
!
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  8205
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8206
browseItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8207
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8208
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8209
    ^ self browseIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8210
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8211
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8212
bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8213
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8214
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8215
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8216
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8217
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8218
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8219
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8220
     self bug2_25x25Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8221
     ImageEditor openOnClass:self andSelector:#bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8222
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8223
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8224
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8225
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8226
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8227
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8228
	constantNamed:#'GenericToolbarIconLibrary class bug2_25x25Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  8229
	ifAbsentPut:[(Depth4Image new) width: 25; height: 25; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8230
@@@@@@@@@@@@@@@@O0@@@@@@@@@@@AV( @@@@@@CL3 P@3D@DU @@@@@@@DX(@@P@QAX@@@@@@@Z"!!ATQIDET@ @@@@@B@(XQ7Q%UP@@@@@@B@VHBWH''QE@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8231
@@@@@@APAFABH''R@@C@@@H E@DQDABI4 @@A@@D@)$Q7]*AGPH@@@@@EDVQGH$Q4Y!!D@@0,@ AYD\"QBI4@XB@@H@ETTQ2IDH"]A(AT@BCMP!!GH$P"H''XX"@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8232
@@@ATAP"QRH"]@DQB@@@@@@TIDH"H''P@TX@@@@@@"4P"H"]@F@@@@@D@@@"WH"I4@P@@@@@@@@@@"4QDP@D@@@@@C0@@@@!!UEUTH@@@@@@@@@@@@@@@UB@@@
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  8233
@@@C@@@@@@@QTH@@@@@@A0@@@@@A @@@@@@@@@L@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@P@a') ; colorMapFromArray:#[0 0 0 148 148 148 248 0 0 255 255 255 108 0 0 110 110 110 52 0 0 209 0 0 208 208 208 100 72 72 44 44 44 152 49 49]; mask:((ImageMask new) width: 25; height: 25; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O @@FG<@@G#?@@C;? @@7?0@@\?8@@C?>@@M?? @G??8@A??<@@???P@O??<@B??>@A/?? @C??8@@??0@@G?0@@@?<@@@G?@@@@C0@@@C(@@@A
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8234
@@@@@@@@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8235
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8236
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8237
bugIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8238
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8239
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8240
    ^ self bug28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8241
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8242
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8243
closeIndicatorInTree
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8244
    <resource: #programImage>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8245
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8246
    ^ self closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8247
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8248
    "Created: / 19-12-2010 / 09:03:52 / cg"
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8249
!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8250
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8251
copyIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8252
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8253
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8254
    ^ self copy20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8255
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8256
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8257
cutIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8258
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8259
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8260
    ^ self cut20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8261
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8262
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8263
debugItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8264
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8265
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8266
    ^ self debugIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8267
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8268
    "Created: / 20-02-2007 / 15:46:24 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8269
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8270
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  8271
deleteIcon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  8272
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  8273
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  8274
    ^ self delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  8275
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  8276
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8277
doItIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8278
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8279
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8280
    ^ self doIt20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8281
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  8282
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8283
downIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  8284
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8285
    ^ self down22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8286
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8287
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8288
downRightIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  8289
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8290
    ^ self downRight22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8291
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8292
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8293
inspectItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8294
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8295
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8296
    ^ self inspectIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8297
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8298
    "Created: / 20-02-2007 / 15:44:34 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8299
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  8300
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8301
leftDownIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  8302
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8303
    ^ self leftDown22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8304
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8305
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8306
openIndicatorInTree
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8307
    <resource: #programImage>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8308
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8309
    ^ self openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8310
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8311
    "Created: / 19-12-2010 / 09:04:06 / cg"
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8312
!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
  8313
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8314
printItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8315
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8316
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8317
    ^ self printIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8318
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  8319
3558
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  8320
removeTabEnteredIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  8321
    <resource: #programImage>
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  8322
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  8323
    ^ self removeTabIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  8324
!
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
  8325
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8326
removeTabIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8327
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8328
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8329
    ^ self removeTab22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8330
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8331
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8332
undoIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8333
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8334
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8335
    ^ self undo16x16Icon2
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8336
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8337
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8338
upIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  8339
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8340
    ^ self up22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8341
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8342
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8343
upRightIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  8344
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
  8345
    ^ self upRight22x22Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8346
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  8347
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8348
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-ChangeSetDiffTool & TextDiffTool'!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8349
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8350
mergeDiff3AToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8351
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeDiff3AToMergedArrow30x30.xpm"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8352
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8353
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8354
     self mergeDiff3AToMergedArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8355
     ImageEditor openOnClass:self andSelector:#mergeDiff3AToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8356
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8357
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8358
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8359
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8360
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8361
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8362
        constantNamed:'GenericToolbarIconLibrary mergeDiff3AToMergedArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8363
        ifAbsentPut:[(Depth8Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8364
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8365
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8366
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8367
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8368
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8369
@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8370
@PDA@PD@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8371
@PDA@PDA@PDA@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@DA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8372
@PDA@PDA@PDA@PD@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8373
@PDA@PDA@PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8374
') ; colorMapFromArray:#[0 0 0 0 0 0]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8375
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O0@@@C?@@@@?<@@@O? @@C?>@@@A? @@@G<@@@@? @@@G<@@@@?
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8376
@@@@G0@@@A>@@@@O @@@C8@@@@>@@@@G0@@@A<@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8377
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8378
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8379
mergeDiff3BToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8380
    "This resource specification was automatically generated
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8381
     by the ImageEditor of ST/X."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8382
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8383
    "Do not manually edit this!! If it is corrupted,
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8384
     the ImageEditor may not be able to read the specification."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8385
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8386
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8387
     self mergeDiff3BToMergedArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8388
     ImageEditor openOnClass:self andSelector:#mergeDiff3BToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8389
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8390
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8391
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8392
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8393
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8394
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8395
        constantNamed:'GenericToolbarIconLibrary mergeDiff3BToMergedArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8396
        ifAbsentPut:[(Depth1Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8397
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8398
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8399
@@_@@@@G0@@@A<@@@@_@@@@G0@@@A<@@@@_@@@@G0@@@A<@@@@_@@@@G0@@@A<@@@@_@@O0G0@C?!!<@@?>_@@O??0@C??<@@@??@@@C?0@@@_<@@@C?@@@@_
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8400
0@@@G<@@@@?@@@@O0@@@C<@@@@?@@@@O0@@@@@@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8401
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8402
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8403
mergeDiff3BaseToAArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8404
    "This resource specification was automatically generated
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8405
     by the ImageEditor of ST/X."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8406
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8407
    "Do not manually edit this!! If it is corrupted,
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8408
     the ImageEditor may not be able to read the specification."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8409
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8410
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8411
     self mergeDiff3BaseToAArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8412
     ImageEditor openOnClass:self andSelector:#mergeDiff3BaseToAArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8413
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8414
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8415
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8416
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8417
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8418
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8419
        constantNamed:'GenericToolbarIconLibrary mergeDiff3BaseToAArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8420
        ifAbsentPut:[(Depth1Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8421
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8422
@@@@@@@@@@@@@@@@@@L@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8423
@@@@@@@G @@@C<@@@@?@@@@O0@@@C<@@@@?@@@@O8@@@C?@@@@?8@@@O?@@@C?<@@@??<@@O??0@C=?<@@?G?@@O0_0@C<@\@@?@@@@O0@@@C<@@@@?@@@@O
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8424
0@@@C<@@@@?@@@@O0@@@C<@@@@?@@@@O0@@@C<@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8425
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8426
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8427
mergeDiff3BaseToBArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8428
    "This resource specification was automatically generated
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8429
     by the ImageEditor of ST/X."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8430
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8431
    "Do not manually edit this!! If it is corrupted,
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8432
     the ImageEditor may not be able to read the specification."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8433
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8434
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8435
     self mergeDiff3BaseToBArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8436
     ImageEditor openOnClass:self andSelector:#mergeDiff3BaseToBArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8437
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8438
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8439
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8440
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8441
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8442
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8443
        constantNamed:'GenericToolbarIconLibrary mergeDiff3BaseToBArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8444
        ifAbsentPut:[(Depth1Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8445
@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8446
@@D@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8447
@@?@@@@O0@@@C<@@@@?@@@@G0@@@A<@@@@_ @@@C<@@@@?@@@@G8@@@@? @@@O<@@@A?<@@@O?0@@@?<@@@G?@@@@O0@@@@\@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8448
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8449
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8450
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8451
mergeMerge24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8452
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMerge24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8453
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8454
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8455
     self mergeMerge24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8456
     ImageEditor openOnClass:self andSelector:#mergeMerge24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8457
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8458
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8459
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8460
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8461
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8462
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8463
        constantNamed:'GenericToolbarIconLibrary mergeMerge24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8464
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8465
RD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HE0-HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HJ$T&RD!!HRD!!HRD!!HRD!!H
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8466
RD!!HRD!!HRD!!HK$YFPA=HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HK$]FQ4\<E$!!HRD!!HRD!!HRD!!HRD!!HRD!!HNT]GQ4]GQ2 HRD!!HRD!!HRD!!HRD!!HRD!!HN$]GQ4]GQ4]D
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8467
I$!!HRD!!HRD!!HRD!!HRD!!HN4]GQ4]GQ4]GO %HRD!!HRD!!H@D!!HRD!!HK$]GQ4]GQ4L]RD!!HRD!!HR@T1ED!!HRD!!HK$]GQ4]GI0MHRD!!HRD AH$EBFD!!HRD!!HK$]G
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8468
Q34JRD!!HRD!!HRAD4P$IBF4!!HRD!!HJ4]@ET!!HRD!!HRD PL4IBP$IBHD!!HRD!!HJQ9HRD!!HRD!!HCCEBP$IBP$IBF4!!HRD!!H@$!!HRD!!HRD [M$IBP$IBP$IBF4!!H
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8469
RD!!HRD!!HRD!!HRD DH4EBP$IBP$IBHD!!HRD!!HRD!!HRD!!HRD!!HR@<2P$IBP$IBF4!!HRD!!HRD!!HRD!!HRD!!HRD!!HD#UBP$IBF4!!HRD!!HRD!!HRD!!HRD!!HRD!!HR@T!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8470
PTIBF4!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HA2QBFD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD MC$!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!H
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8471
RD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!H') ; colorMapFromArray:#[46 37 13 60 47 16 38 49 22 47 60 27 75 59 19 72 57 20 72 58 20 79 63 22 56 72 33 57 73 33 62 79 35 63 81 36 84 66 23 84 68 23 85 68 23 91 73 24 98 78 27 107 86 30 110 89 30 115 92 31 115 93 31 66 85 38 69 86 39 72 93 42 115 93 32 117 94 32 117 95 32 118 94 32 118 95 32 79 101 46 84 107 49 84 109 48 117 96 32 140 112 38 147 118 41 148 119 40 154 124 43 100 128 57 101 129 58 103 132 60 116 149 67 117 150 67 123 158 71 124 158 71 125 160 72 124 160 73 127 162 72 126 162 73 170 137 47 171 138 47 189 152 52 200 161 54 217 174 58 220 177 60 226 181 62 231 186 63 232 187 63 128 163 74 128 164 73 130 165 74 133 170 77 138 176 79 147 189 85 149 191 86 150 190 86 233 187 64 234 188 64 157 201 91 161 206 93 162 207 93 164 210 95 165 211 95 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@F@@@G@@@G0@@G<@@G?@@G? @G?0DG?@\G>A<G8C<G O<F@?<DA?<@A?<@@_<@@G<@@C<@@@<@@@L@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8472
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8473
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8474
mergeMerge32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8475
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMerge32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8476
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8477
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8478
     self mergeMerge32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8479
     ImageEditor openOnClass:self andSelector:#mergeMerge32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8480
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8481
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8482
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8483
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8484
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8485
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8486
        constantNamed:'GenericToolbarIconLibrary mergeMerge32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8487
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8488
X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&HAX&I"X&I"X&I"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8489
X&I"X&I"X&I"X#P*@&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"OFEWE&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&H>XVE!!PQQ"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8490
X&I"X&I"X&I"X&I"X&I"X#9!!XVE!!WSHNX&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"P&E!!XVE!!XU01CFI"X&I"X&I"X&I"X&I"X&I"X&I"X&IBXVE!!XVE!!XVEY
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8491
GVI"X&I"X&I"X&I"X&I"X&I"X&I"X$U!!XVE!!XVE!!XVE!!PQQ"X&I"X&I"X&I"X&I"X&I"X&I"Q6E!!XVE!!XVE!!XVE!!WSDLX&I"X&I"X&I"X&I"X&I"X&IGXVE!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8492
XVE!!XVE!!XVE[G&I"X&I"X&I"X&H@X&I"X&I"X$U!!XVE!!XVE!!XVE_LP1"X&I"X&I"X&HYRRM"X&I"X&I"P&E!!XVE!!XVE!!P ="X&I"X&I"X&HIN5YZH6I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8493
X&IBXVE!!XVE!!VAY"X&I"X&I"X&HDKEIZV%(+X&I"X&I"X$E!!XVE!!W28CX&I"X&I"X&I"F45ZV%)ZV"1"X&I"X&I"OVE!!XSLLX&I"X&I"X&I"FT!!ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8494
JVI"X&I"X&H=XTHTX&I"X&I"X&I"AC%TV%)ZV%)ZV%(5X&I"X&I"X#L\X&I"X&I"X&I"X"IPV%)ZV%)ZV%)ZV#]"X&I"X&I"@VI"X&I"X&I"X UJV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8495
V%)ZV%)ZM6I"X&I"X&I"X&I"X&I"X&I"X!!)MU%)ZV%)ZV%)ZV%(7X&I"X&I"X&I"X&I"X&I"X&I"X&H TE)ZV%)ZV%)ZV#]"X&I"X&I"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8496
X&HGN%QZV%)ZV%)ZKFI"X&I"X&I"X&I"X&I"X&I"X&I"X&I"FT-ZV%)ZV%()X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X!!=NV%)ZV"Y"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8497
X&I"X&I"X&I"X&I"X X!!TU)VIVI"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&HIM5P#X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"DAE"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8498
X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8499
X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X @a') ; colorMapFromArray:#[29 23 8 22 28 13 26 34 14 29 35 17 43 35 11 41 33 12 49 40 13 55 43 15 56 45 15 56 46 15 32 41 18 33 40 19 32 42 18 33 42 19 36 45 21 37 47 21 57 46 16 59 47 16 38 48 21 38 49 22 39 49 23 45 58 25 46 58 27 63 51 18 64 53 18 65 53 18 72 57 20 75 60 20 52 67 30 57 72 33 62 81 35 88 71 24 91 73 25 99 80 27 105 85 29 110 88 29 111 88 30 112 90 30 113 92 31 116 92 31 116 93 31 117 93 31 68 87 40 113 91 32 115 93 32 117 95 32 75 96 43 76 97 44 77 97 44 77 98 45 78 100 44 88 112 51 93 121 55 120 96 32 121 96 32 121 98 33 122 99 33 126 101 35 128 102 34 144 115 39 109 139 62 109 140 63 110 141 64 111 142 64 111 143 64 113 144 64 112 144 65 114 145 65 114 146 66 116 148 66 116 148 67 116 150 68 170 136 46 171 137 46 175 140 47 184 148 50 191 153 52 194 156 53 208 167 57 216 173 59 217 174 59 219 176 60 223 179 61 228 184 62 229 184 63 231 186 63 232 187 63 133 170 76 138 177 80 139 178 80 234 188 64 153 195 88 155 198 89 157 201 91 158 202 91 160 205 92 163 209 94 165 211 95 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8500
@@@@@@@@@@@H@@@@C @@@@<@@@@O0@@@C?@@@@?<@@@O? @@C?>@@@??8@@O?<@HC?>@N@?>@O O>@O8C?@G>@?@G? O@G?8C@C?>@ C?? @@_?8@@A?>@@@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8501
O? @@@?8@@@C>@@@@_ @@@A8@@@@F@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8502
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8503
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8504
mergeMergeExternal24x24
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8505
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMergeExternal24x24.xpm"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8506
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8507
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8508
     self mergeMergeExternal24x24 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8509
     ImageEditor openOnClass:self andSelector:#mergeMergeExternal24x24
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8510
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8511
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8512
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8513
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8514
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8515
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8516
        constantNamed:'GenericToolbarIconLibrary mergeMergeExternal24x24'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8517
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8518
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUT@@@@A@@@@@@@A@@@@@@@A@@@@@EUUUPLIBP$IBP$IBP$IBP$IBP$IBP$IBPEUUPLIBP$IBP$IBP$JB $IBP(I
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8519
BP$IBPEUUPLFA XFA XFA XFA XFA XFA XFA QUUP]TUD%LUEQTUEQTUEQTUEQTUEQTU@!!UUP]TUC0YJ45TUEQTUEQTUEQTUEQTU@!!UUP]TUC0*J!!\/UEQT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8520
UEQTUEQTUEQTU@!!UUP]TUC0*J"(&GDUTUEQTUEQTUEQTU@!!UUP]TUCD*J"(*J!! ]R%QTUEQTUEQTU@!!UUP]TUCD*J"(*J"(*B4ATUEQTST1TU@!!UUP]TUCD*
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8521
J"(*J" ^PUQTUED.ECYTU@!!UUP]TUCD*J"(*H3%QUEQTO!!TOISQTU@!!UUP]TUCD*J!!(,SEQTUD [CBT%ISQTU@!!UUP]TUC0&G4]TUEQNH"PQDRT%ISQTU@!!U
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8522
UP]TUD@=UEQTUDPRDRT%DRT%ISMTU@!!UUP]TUEQTUEQTUEP4D!!D%IRT%ISQTU@!!UUP]TUEQTUEQTUEQTS24VIRT%ISQTU@!!UUP]TUEQTUEQTUEQTUEQFH@4%
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8523
ISQTU@!!UUP]TUEQTUEQTUEQTUEQTUDH!!C3QTU@!!UUP]TUEQTUEQTUEQTUEQTUEQQL3=TU@!!UUP]QUEQQTUEQUEEQTUEQUEEQTUQTTP!!UUUTEAPTEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8524
APTEAPTEAPTEAUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU') ; colorMapFromArray:#[31 31 31 37 37 37 44 44 44 46 46 46 48 48 48 70 70 70 77 77 77 93 93 93 98 98 98 101 101 101 102 102 102 117 141 80 208 168 62 214 174 62 226 181 62 226 182 63 229 184 63 231 186 63 157 134 70 153 132 74 166 140 70 163 140 78 187 154 65 134 161 93 145 183 87 144 178 92 149 187 91 158 142 101 131 148 103 133 147 110 134 154 104 140 157 115 161 144 98 166 148 96 160 149 120 143 173 98 192 159 68 234 188 64 153 194 90 155 197 90 160 204 93 164 210 95 165 211 95 151 164 132 153 167 130 172 161 129 175 166 144 162 170 151 168 175 158 168 175 159 177 170 151 180 172 150 177 171 152 178 171 153 177 171 154 178 172 154 178 172 155 172 181 159 169 175 160 170 175 160 170 175 161 171 177 161 181 176 161 189 186 175 190 193 187 191 194 186 197 194 183 192 196 186 200 198 192 201 204 196 210 208 200 214 216 210 221 219 216 219 220 216 221 223 220 226 225 222 229 230 227 240 241 240 242 242 241 244 244 243 250 250 250 251 251 251 252 252 252 254 254 254 255 255 255 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@O??<_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>O??<@@@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8525
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8526
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8527
mergeMergeExternal32x32
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8528
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMergeExternal32x32.xpm"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8529
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8530
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8531
     self mergeMergeExternal32x32 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8532
     ImageEditor openOnClass:self andSelector:#mergeMergeExternal32x32
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8533
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8534
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8535
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8536
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8537
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8538
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8539
        constantNamed:'GenericToolbarIconLibrary mergeMergeExternal32x32'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8540
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8541
\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8542
@ HB@GI2\''HEC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0<E\''I2\ TOC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0U2\''I2@ \GA0\GA0\GA0\GA0\GA0\G
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8543
A0\GA0\GA0\G@''I2\''HHVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU$O\''I2\!!I1\WEUY7E1\WE1\WE1\WE1\WE1\WE1\WE1\UA2\''I2TF51\RX]TV-1\WE1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8544
\WE1\WE1\WE1\WE1\WE1TGI2\''HR\WE1I4=LGE]1\WE1\WE1\WE1\WE1\WE1\WEP\''I2\!!I1\WD%S4=OP2A!!\WE1\WE1\WE1\WE1\WE1\UA2\''I2D''E1\RUO
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8545
S4=OS18+Y7E1\WE1\WE1\WE1\WE1TGI2\''HR\WE1H$=OS4=OS44[TV51\WE1\WE1\WE1\WEP\''I2\!!I1\WD!!S4=OS4=OS4=DCE51\WE1\WE1\WE1\UA2\''I2
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8546
D''E1\REOS4=OS4=OS4=@DV51\WE1\V@Q\WE1TGI2\''HR\WE1HT=OS4=OS4=AG6I1\WE1\VPWKS=1\WEP\''I2\!!I1\WD!!S4=OS4=KB511\WE1\V%GKD%IO7E1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8547
\UA2\''I2D''E1\RUOS4=OFR))\WE1\WEXESEIR$$?\WE1TGI2\''HR\WE1HT=OF!!A%\WE1\WE^E#AJR$)JR#-1\WEP\''I2\!!I1\WD%PP)_\WE1\WE&FB9IRT)J
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8548
R$)JO7E1\UA2\''I2D''E1\P%T[''E1\WE-T1P2RT)JR$)JR$$7\WE1TGI2\''HR\WE1\WE1\WE1\WEXO3MIRT%JR$)JRS]1\WEP\''I2\!!I1\WE1\WE1\WE1\WE+
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8549
RCYIRT)JR$)IN7E1\UA2\''I2D''E1\WE1\WE1\WE1\WE1X4T/R$)JR#P;\WE1TGI2\''HR\WE1\WE1\WE1\WE1\WE1\U,ULT%IR#=1\WEP\''I2\!!I1\WE1\WE1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8550
\WE1\WE1\WE1\V5VD3H4O7E1\UA2\''I2D''E1\WE1\WE1\WE1\WE1\WE1\WE''Q20=\WE1TGI2\''HR\WE1\WE1\WE1\WE1\WE1\WE1\WE1XA!!1\WEP\''I2\!!I1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8551
\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UA2\''I2AP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MA''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8552
\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\ @a') ; colorMapFromArray:#[24 24 24 26 26 26 41 41 41 42 42 42 53 53 53 55 55 55 60 60 60 75 75 75 90 90 90 100 107 89 105 116 87 105 120 81 109 126 85 97 97 97 101 101 101 102 102 102 115 124 101 126 121 106 127 127 127 139 118 64 142 122 66 141 123 77 139 124 84 128 118 90 134 123 97 113 138 75 123 153 77 116 139 81 120 139 91 124 149 86 125 154 80 118 129 101 119 130 100 122 139 97 123 139 97 123 139 98 123 140 99 124 140 99 123 139 100 124 141 100 125 141 100 121 128 110 126 133 115 127 137 112 156 130 59 175 144 57 178 147 62 194 158 62 208 168 61 219 176 61 227 182 62 228 183 62 232 187 63 159 133 64 159 133 65 147 129 82 147 129 83 147 130 84 147 131 85 148 131 84 148 131 85 148 131 86 151 132 84 148 132 86 130 160 84 139 175 84 139 176 82 142 178 87 149 191 87 143 131 100 141 133 113 145 136 114 151 144 124 233 187 64 234 188 64 151 194 88 158 202 92 162 208 94 164 209 94 165 211 95 138 138 138 139 145 128 139 145 130 158 153 138 154 159 146 156 159 151 162 157 141 162 165 156 175 171 162 175 175 175 176 171 162 177 172 163 175 178 170 179 182 174 198 196 191 199 200 196 207 206 201 211 212 210 216 217 215 221 220 218 223 222 221 226 227 226 232 231 230 238 238 238 239 239 238 242 242 242 246 246 246 247 247 247 249 249 249 250 250 250 252 252 252 253 253 253 254 254 254 255 255 255 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8553
@@@@@@@@@@@????<O????C????0????<O????C????0????<O????C????0????<O????C????0????<O????C????0????<O????C????0????<O????C??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8554
??0????<O????C????0????<O????C????0????<@@@@@@@@@@@b') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8555
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8556
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8557
mergeNext24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8558
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNext24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8559
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8560
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8561
     self mergeNext24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8562
     ImageEditor openOnClass:self andSelector:#mergeNext24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8563
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8564
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8565
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8566
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8567
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8568
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8569
        constantNamed:'GenericToolbarIconLibrary mergeNext24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8570
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8571
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8572
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQA \GA0\GA0\GA0\FDQDQDQDQDQDQDQDQBQ@PDA@P
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8573
DA@PDA@IDQDQDQDQDQDQDQDQDP8PDA@PDA@PD@8QDQDQDQDQDQDQDQDQDPTPDA@PDA@PD@TQDQDQDQDQDQDQDQDQDQDKDA@PDA@PB1DQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8574
DQDBDA@PDA@P@!!DQDQDQDQDQDQDQDQDQDQDQB!!@PDA@JDQDQDQDQDQDQDQDQDQDQDQDQ@P<PD@<ADQDQDQDQDQDQDQDQDQDQDQDQDP PD@ QDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8575
DQDQDQDQDQDQDQDLCADQDQDQDQDQDQDQDQDQDQDQDQDQDQDC@1DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8576
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8577
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ') ; colorMapFromArray:#[0 41 72 0 43 72 0 52 88 0 60 101 0 63 108 0 63 109 0 67 115 0 71 120 0 75 129 0 76 129 0 98 167 0 112 190 0 121 207 0 124 214 0 125 214 0 132 226 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@??@@??@@_>@@_>@@O<@@O<@@G8@@G8@@C0@@A @@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8578
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8579
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8580
mergeNext32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8581
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNext32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8582
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8583
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8584
     self mergeNext32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8585
     ImageEditor openOnClass:self andSelector:#mergeNext32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8586
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8587
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8588
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8589
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8590
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8591
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8592
        constantNamed:'GenericToolbarIconLibrary mergeNext32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8593
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8594
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8595
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8596
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8@@0LC@0LC
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8597
@0LC@0LC@0LC@0@^G!!8^G!!8^G!!8^G!!8^G!!8RGQ4]GQ4]GQ4]GQ4]GQ4RG!!8^G!!8^G!!8^G!!8^G!!8^G T\GQ4]GQ4]GQ4]GQ4]G@T^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8598
G!!@]GQ4]GQ4]GQ4]GQ4OG!!8^G!!8^G!!8^G!!8^G!!8^G!!8^@Q(]GQ4]GQ4]GQ4]F H^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^B14]GQ4]GQ4]GQ4LG!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8599
G!!8^G!!8^G!!8^E14]GQ4]GQ4]E18^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8HGQ4]GQ4]GQ4HG!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8TGQ4]GQ4]D!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8600
G!!8^G!!8^G!!8^G!!8^G!!8^G T\GQ4]GQ0EG!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G <\GQ4]C18^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^@Q(]GQ AG!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8601
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^B!!4]B!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^E!!X^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8G
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8602
A18^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8603
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8604
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8605
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G @a') ; colorMapFromArray:#[0 20 32 0 27 47 0 27 48 0 30 52 0 33 56 0 33 57 0 34 57 0 38 65 0 41 69 0 51 87 0 52 87 0 54 91 0 53 92 0 68 115 0 68 116 0 70 119 0 71 121 0 89 152 0 90 153 0 94 160 0 94 161 0 102 174 0 103 174 0 111 189 0 119 205 0 121 208 0 123 210 0 132 225 0 132 226 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8606
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A??>@@O??@@C??0@@_?8@@G?>@@@??@@@G? @@A?8@@@O<@@@C?@@@@_ @@@G8@@@@<@@@@F@@@@A
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8607
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8608
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8609
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8610
mergeNextConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8611
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflict24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8612
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8613
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8614
     self mergeNextConflict24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8615
     ImageEditor openOnClass:self andSelector:#mergeNextConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8616
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8617
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8618
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8619
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8620
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8621
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8622
        constantNamed:'GenericToolbarIconLibrary mergeNextConflict24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8623
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8624
KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,DADQDQDQDQDQDQ@P
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8625
KB0,KB0,KB0,KB0,I",+J2,+J2,+J2,UKB0,KB0,KB0,KB0,@B(+J2,+J2,+J2$,KB0,KB0,KB0,KB0,KAP+J2,+J2,+J1H,KB0,KB0,KB0,KB0,KB0(J2,+
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8626
J2,+I20,KB0,KB0,KB0,KB0,KB0PJ2,+J2,+C"0,KB0,KB0,KB0,KB0,B!!\KCQLSD1LLBQ\VKB0,KB0,KB0,KB0,FBT%IRT%IRT%IRTYKB0,KB0,KB0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8627
KBD%IRT%IRT%IRH,KB0,KB0,KB0,KB0,K@X%IRT%IRT%IP(,KB0,KB0,KB0,KB0,KB0^IRT%IRT%G"0,KB0,KB0,KB0,KB0,KB0CIRT%IRT%AB0,KB0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8628
KB0,KB0,KB0,F2T%IRT\KB0,KB0,KB0,KB0,KB0,KB0,@RL%IRPBKB0,KB0,KB0,KB0,KB0,KB0,KA$%IQ(,KB0,KB0,KB0,KB0,KB0,KB0,KB0!!HR0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8629
KB0,KB0,KB0,KB0,KB0,KB0EA"0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8630
KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,') ; colorMapFromArray:#[0 37 62 87 14 0 92 14 0 104 16 0 108 17 0 118 18 0 120 18 0 123 19 0 125 19 0 121 20 3 125 20 0 120 20 4 94 42 48 93 44 50 0 51 87 0 52 89 0 54 91 0 56 96 0 62 107 91 56 72 0 65 111 0 74 127 128 20 0 132 20 0 143 22 0 146 23 0 149 24 0 184 29 0 189 29 0 208 33 0 210 33 0 228 36 0 230 36 0 231 36 0 236 37 0 247 39 0 250 39 0 255 40 0 0 79 136 0 111 189 0 114 195 0 123 210 0 125 215 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@??@@??@@?>@@_>@@O<@@O<@@??@@??@@_>@@_>@@O<@@O<@@G8@@G8@@C0@@A @@A @@@@@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8631
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8632
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8633
mergeNextConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8634
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflict32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8635
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8636
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8637
     self mergeNextConflict32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8638
     ImageEditor openOnClass:self andSelector:#mergeNextConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8639
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8640
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8641
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8642
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8643
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8644
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8645
        constantNamed:'GenericToolbarIconLibrary mergeNextConflict32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8646
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8647
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8648
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQ4]GQ4]GQ4]GQ4]GQ4]GQ5APTEAPTEAPTEAPTEAPTEANTA@PDA@PDA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8649
PDA@NDEAPTEAPTEAPTEAPTEAPTDQO4A@PDA@PDA@PDA@PC8OPTEAPTEAPTEAPTEAPTEAPTD7PDA@PDA@PDA@PDA@H4EAPTEAPTEAPTEAPTEAPTEAPP<=PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8650
PDA@PDA@PC0NPTEAPTEAPTEAPTEAPTEAPTEAPRI@PDA@PDA@PDA@HTEAPTEAPTEAPTEAPTEAPTEAPTEACS-@PDA@PDA@PC-APTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8651
PTEAG4A@PDA@PDA@G$EAPTEAPTEAPTEAPTEAPTEAPTDHB@ GD2@ HB@ HAHGB@ H@DEAPTEAPTEAPTEAPTEAPR\6M#X6M#X6M#X6M#X6M"%APTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8652
PTEAPTEACCP6M#X6M#X6M#X6M#X5CDEAPTEAPTEAPTEAPTEAPTEAICX6M#X6M#X6M#X6M"YAPTEAPTEAPTEAPTEAPTEAPTDDLCX6M#X6M#X6M#X2ADEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8653
PTEAPTEAPTEAPTEAPTDZM#X6M#X6M#X6M!!-APTEAPTEAPTEAPTEAPTEAPTEAPTD-M#X6M#X6M#X.@TEAPTEAPTEAPTEAPTEAPTEAPTEAPQX6M#X6M#X6M!!]A
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8654
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPR 6M#X6M#X*PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEABCP6M#X6M@1APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAGCX6
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8655
M#X$PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDAK3X6L@QAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDXM#XYPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8656
PTEAPTD+KDEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQPUPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8657
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8658
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPP@a') ; colorMapFromArray:#[35 6 0 45 6 0 47 7 0 50 8 0 52 8 0 53 8 0 50 10 5 50 11 6 58 9 0 58 10 0 61 9 0 62 9 0 62 10 0 0 26 47 0 29 50 0 32 53 0 33 55 0 35 60 41 36 50 40 37 53 65 11 0 69 10 0 73 11 0 78 12 0 88 13 0 94 14 0 98 15 0 104 16 0 124 19 0 0 37 64 0 45 77 0 48 82 40 49 72 0 58 99 0 61 104 0 73 124 128 20 0 130 20 0 135 21 0 164 26 0 171 28 0 174 28 0 180 28 0 189 29 0 198 31 0 202 32 0 209 33 0 224 35 0 229 36 0 230 36 0 235 37 0 245 38 0 247 39 0 248 39 0 255 40 0 0 78 133 0 92 156 0 96 165 0 112 191 0 116 198 0 125 214 0 128 218 0 132 226 0 134 228 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8659
@@@@@@@@@@@@@@@@@@@@@@C??0@@??<@@O??@@A?? @@_?8@@C?<@@@?>@@@G? @@O?? @C??0@@??<@@G?>@@A?? @@O?0@@A?<@@@_>@@@C?@@@@?0@@@G
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8660
8@@@A>@@@@O@@@@A @@@@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8661
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8662
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8663
mergeNextConflictAutoAdvance24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8664
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflictAutoAdvance24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8665
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8666
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8667
     self mergeNextConflictAutoAdvance24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8668
     ImageEditor openOnClass:self andSelector:#mergeNextConflictAutoAdvance24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8669
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8670
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8671
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8672
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8673
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8674
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8675
        constantNamed:'GenericToolbarIconLibrary mergeNextConflictAutoAdvance24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8676
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8677
PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@LS(:N#(:N#(:N#(1PDA@PDA@PDA@PDA@D3<?O3<?O3<?O38QPDA@PDA@PDA@PDA@PCD?O3<?O3<?O2=@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8678
PDA@PDA@PDA@PDA@P@8;O3<?O3<?N09@PDA@PDA@PDA@PDA@PD@WN#(:N#(:E$A@PDA@PDA@PDA@PDA@KCP4MSX6M#X5MCP*PDA@PDA@PDA@PDA@ES<?O#<?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8679
O3<?O#<TPDA@PDA@PDA@PDA@PC\?O3<?O3<?O3Q@PDA@PDA@PDA@PDA@PAD>O3<?O3<?N1A@PDA@PDA@PDA@PDA@PD@-O#<?O38?KDA@PDA@PDA@PDA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8680
PD@ANS(:N#(9@DA@PDA@PDA@PDA@PDA@F"H"HR@ HB@!!H"H[PDA@PDA@PDA@PDA@BR$)JR$)JR$)JR$KPDA@PDA@PDA@PDA@PA8)JR$)JR$)JQ=@PDA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8681
PDA@PDA@P@\(JR$)JR$)J@]@PDA@PDA@PDA@PDA@PD@XJR$)JR$)FTA@PDA@PDA@PDA@PDA@PD@BIR$)JR$%ADA@PDA@PDA@PDA@PDA@PDA@CB$)JR$MPDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8682
PDA@PDA@PDA@PDA@PDA@PBL)JRQ@PDA@PDA@PDA@PDA@PDA@PDA@P@$)JP)@PDA@PDA@PDA@PDA@PDA@PDA@PD@\GTA@PDA@PDA@PDA@PDA@PDA@PDA@PD@C
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8683
ATA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@') ; colorMapFromArray:#[0 31 55 0 33 57 69 11 0 71 12 0 73 11 0 78 12 0 82 12 0 82 13 0 95 14 0 95 15 0 96 15 0 105 16 0 119 19 0 126 20 0 0 44 74 0 44 75 0 45 78 0 47 81 0 47 82 0 49 85 0 56 95 0 61 103 0 65 110 0 66 112 147 24 0 153 24 0 158 25 0 163 26 0 169 27 0 174 27 0 178 27 0 182 28 0 190 37 12 192 33 5 201 32 0 207 33 0 213 33 0 240 38 0 243 38 0 250 39 0 251 39 0 255 40 0 0 78 133 0 81 138 0 81 139 0 85 144 0 90 155 0 92 155 0 91 156 0 91 157 0 97 165 0 97 166 0 98 167 0 99 169 0 100 170 0 101 172 0 111 189 0 113 192 0 118 201 0 132 226 0 133 227 0 134 229 0 135 231 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@??@@??@@_>@@_>@@O<@@??@@??@@_>@@_>@@O<@@O<@@??@@??@@_>@@_>@@O<@@O<@@G8@@C0@@C0@@A @@A @@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8684
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8685
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8686
mergeNextConflictAutoAdvance32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8687
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflictAutoAdvance32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8688
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8689
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8690
     self mergeNextConflictAutoAdvance32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8691
     ImageEditor openOnClass:self andSelector:#mergeNextConflictAutoAdvance32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8692
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8693
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8694
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8695
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8696
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8697
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8698
        constantNamed:'GenericToolbarIconLibrary mergeNextConflictAutoAdvance32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8699
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8700
V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)Z@RT)JR$)JR$)JR$)JR$)JRTAV%)ZV%)ZV%)ZV%)ZV%)ZI5!!YVU%YVU%YVU%YVU%YJE)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8701
V%)ZV%)ZV%)ZV%)ZV%(OUE%YVU%YVU%YVU%YVUHOV%)ZV%)ZV%)ZV%)ZV%)ZV%(#VU%YVU%YVU%YVU%YH5)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)NVU%YVU%YVU%Y
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8702
VT5ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV!!MXVU%YVU%YVU%XD5)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV"5TUEQTUEQTUB1ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(LQT!!HQ$-K
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8703
R4-KR4-KQ$!!HK@1ZV%)ZV%)ZV%)ZV%)ZV%(%VU%YVU%YVU%YVU%YVU$$V%)ZV%)ZV%)ZV%)ZV%)ZV%)PVU%YVU%YVU%YVU%YS5)ZV%)ZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8704
V"EYVU%YVU%YVU%YVU$SV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV$-YVU%YVU%YVU%YRE)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZDUYYVU%YVU%YVUTQV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8705
V%)ZV%)ZV%)ZJ5%YVU%YVU%YJ%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(NSUAPTEAPTD0LV%)ZV%)ZV%)ZV%)ZV%)ZV%)Z@"86M#X5MCP4MCP4MSX6M#@CV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8706
V%)ZV%)ZV%)ZV%)ZF$MCP4MCP4MDQDQDP4MCGE)ZV%)ZV%)ZV%)ZV%)ZV%)ZNTMCP4MCP4QDQDQCP3)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(XP4MCP4MCQDQDQDMC
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8707
FE)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(2P4MCP4MDQDQDQCMZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV $?P4MCP4QDQDQ@BU)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV!!=CP4MC
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8708
QDQDQBAZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZAC-CP4MDQDP<A%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZFTMCP4MCP11ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8709
V%)ZM4MCP4L9V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(UP$MCP1!!ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(0P4L1V%)ZV%)ZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8710
V%)ZV%)ZV%)ZV X=O %ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV!!4^V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV QZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8711
V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV @a') ; colorMapFromArray:#[0 17 27 0 17 29 41 7 0 42 6 0 51 8 0 51 9 0 53 8 0 54 10 0 57 9 0 59 9 0 59 10 0 0 20 33 0 20 34 0 20 35 0 21 36 0 23 41 0 32 53 0 32 55 0 36 61 0 36 62 0 37 63 67 11 0 68 10 0 70 10 0 71 11 0 86 13 0 89 15 0 93 14 0 94 14 0 106 16 0 111 18 0 114 18 0 123 19 0 0 40 68 0 45 78 0 46 78 0 52 87 0 54 93 0 55 94 0 59 99 0 58 100 0 62 106 0 65 111 0 70 120 0 72 122 0 72 123 134 21 0 139 22 0 140 22 0 148 23 0 151 24 0 158 25 0 159 31 10 160 27 3 166 26 0 182 29 0 189 30 0 191 30 0 193 30 0 226 35 0 230 36 0 235 37 0 239 37 0 241 38 0 244 38 0 250 39 0 252 40 0 254 40 0 255 40 0 0 75 128 0 83 141 0 85 145 0 87 147 0 90 154 0 91 154 0 91 155 0 98 167 0 101 172 0 102 175 0 104 177 0 109 185 0 109 186 0 116 198 0 116 199 0 118 201 0 130 222 0 132 226 0 135 230 0 135 231 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8712
@@@@@@G??8@@??<@@O??@@A?? @@O?0@@C?<@@@_>@@A??>@@O??@@A?? @@_?8@@C?<@@@??@@@G? @@A?8@@G??8@@??<@@G?>@@A?? @@O?0@@C?<@@@_
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8713
>@@@G? @@@?0@@@G8@@@A>@@@@O@@@@C0@@@@X@@@@B@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8714
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8715
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8716
mergePrev24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8717
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrev24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8718
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8719
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8720
     self mergePrev24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8721
     ImageEditor openOnClass:self andSelector:#mergePrev24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8722
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8723
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8724
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8725
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8726
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8727
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8728
        constantNamed:'GenericToolbarIconLibrary mergePrev24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8729
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8730
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8731
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTH
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8732
BATUEQTUEQTUEQTUEQTUEQTUEQTUEQTPDATUEQTUEQTUEQTUEQTUEQTUEQTUEP4TE@4UEQTUEQTUEQTUEQTUEQTUEQTU@!!LTEALCEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8733
EQTUC!!PTEAPNEQTUEQTUEQTUEQTUEQTUEQTFEAPTEAPTAQTUEQTUEQTUEQTUEQTUEQTOEAPTEAPTC1TUEQTUEQTUEQTUEQTUEP(TEAPTEAPTE@(UEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8734
EQTUEQTU@QHTEAPTEAPTEADAEQTUEQTUEQTUEQTUB1PTEAPTEAPTEAPKEQTUEQTUEQTUEQTUAP\GA0\GA0\GA0\EEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8735
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8736
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU') ; colorMapFromArray:#[0 38 64 0 38 65 0 46 78 0 46 80 0 54 91 0 55 91 0 54 92 0 56 96 0 61 104 0 65 110 0 66 111 0 78 134 0 79 134 0 80 136 0 98 167 0 117 201 0 126 216 0 128 218 0 129 220 0 134 229 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A @@A @@C0@@G8@@G8@@O<@@O<@@_>@@??@@??@@??@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8737
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8738
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8739
mergePrev32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8740
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrev32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8741
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8742
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8743
     self mergePrev32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8744
     ImageEditor openOnClass:self andSelector:#mergePrev32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8745
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8746
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8747
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8748
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8749
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8750
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8751
        constantNamed:'GenericToolbarIconLibrary mergePrev32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8752
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8753
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8754
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8755
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8756
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!B (!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRDYFRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8757
HRD!!HRD!!C"@ CRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HPP\HB@[@2D!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!D"@ HB@RHRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8758
HRD!!HRD!!HRD!!HP ^HB@ HA8FHRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!E"@ HB@ HAT!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HP, HB@ HB@ H@,!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8759
HRD!!HRD!!HRD!!HRD!!HRD@F"@ HB@ HB@ F @!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HP< HB@ HB@ HB@ C2D!!HRD!!HRD!!HRD!!HRD!!HRD!!HRDCGR@ HB@ HB@ HB@\
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8760
@2D!!HRD!!HRD!!HRD!!HRD!!HRD!!HQP HB@ HB@ HB@ HB@THRD!!HRD!!HRD!!HRD!!HRD!!HRDHG"@ HB@ HB@ HB@ HA8HHRD!!HRD!!HRD!!HRD!!HRD!!HQ  HB@ HB@ 
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8761
HB@ HB@ HA\!!HRD!!HRD!!HRD!!HRD!!HRD!!BP$IBP$IBP$HBP$IBP$IBRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8762
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8763
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8764
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HP@a') ; colorMapFromArray:#[0 26 45 0 30 52 0 30 53 0 30 54 0 32 54 0 34 58 0 35 58 0 34 59 0 35 60 0 37 64 0 39 69 0 43 72 0 43 73 0 53 90 0 54 92 0 57 96 0 57 97 0 73 124 0 73 125 0 75 129 0 76 130 0 94 160 0 94 161 0 95 162 0 99 168 0 109 187 0 117 200 0 125 213 0 126 216 0 127 217 0 134 228 0 134 229 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8765
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@@@@A @@@@<@@@@_ @@@G8@@@C?@@@@?0@@@_>@@@O?0@@C?<@@A?? @@_?8@@O??@@C?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8766
?0@@??<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8767
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8768
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8769
mergePrevConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8770
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrevConflict24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8771
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8772
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8773
     self mergePrevConflict24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8774
     ImageEditor openOnClass:self andSelector:#mergePrevConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8775
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8776
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8777
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8778
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8779
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8780
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8781
        constantNamed:'GenericToolbarIconLibrary mergePrevConflict24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8782
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8783
LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8784
LC@0LC@0LC@0LC@0LC@0LC@MB#@0LC@0LC@0LC@0LC@0LC@0LC@0LC@$H3@0LC@0LC@0LC@0LC@0LC@0LC@0LA8(JA00LC@0LC@0LC@0LC@0LC@0LC@0@2 (
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8785
JBXBLC@0LC@0LC@0LC@0LC@0LC@0HB (JB _LC@0LC@0LC@0LC@0LC@0LC@GJB (JB (AC@0LC@0LC@0LC@0LC@0LC@"JB (JB (HS@0LC@0LC@0LC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8786
LA((JB (JB (J@40LC@0LC@0LC@0LC@0@BT(JB (JB (JBPALC@0LC@0LC@0LC@0GB (JB (JB (JB [LC@0LC@0LC@0LC@0B 4EC!!\WE1\OAP0JLC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8787
LC@0LC@0LC@SK2</K2</ES@0LC@0LC@0LC@0LC@0LC@,K2</K2</KC@0LC@0LC@0LC@0LC@0LA /K2</K2</K1$0LC@0LC@0LC@0LC@0DB4/K2</K2</K28Q
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8788
LC@0LC@0LC@0LC@0JR</K2</K2</K2<*LC@0LC@0LC@0LC@0D1PVE!!XVE!!XVE!!XSLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8789
LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0') ; colorMapFromArray:#[74 11 0 75 12 0 96 15 0 100 15 0 108 17 0 109 21 4 110 20 4 112 18 0 117 18 0 118 18 0 119 18 0 124 19 0 123 20 0 126 20 0 82 44 55 81 46 57 0 38 66 0 41 70 0 52 89 0 53 91 0 54 91 0 55 96 0 56 96 79 61 83 0 65 111 0 66 112 128 20 0 147 23 0 152 24 0 153 24 0 157 24 0 184 29 0 190 30 0 219 35 0 222 35 0 234 37 0 238 37 0 242 38 0 251 39 0 253 40 0 255 40 0 0 79 133 0 83 141 0 117 199 0 118 202 0 127 217 0 129 220 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@A @@A @@C0@@G8@@G8@@O<@@O<@@_>@@??@@??@@??@@O<@@O<@@_>@@??@@??@@??@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8790
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8791
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8792
mergePrevConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8793
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrevConflict32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8794
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8795
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8796
     self mergePrevConflict32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8797
     ImageEditor openOnClass:self andSelector:#mergePrevConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8798
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8799
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8800
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8801
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8802
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8803
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8804
        constantNamed:'GenericToolbarIconLibrary mergePrevConflict32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8805
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8806
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8807
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQ\VPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8808
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAKB-APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQ,5MQ)APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDH
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8809
LCT5K0MAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPRT5MST5H4EAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDUMST5MST2BTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8810
PTEAPR$5MST5MST''PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDYMST5MST5MSTXPTEAPTEAPTEAPTEAPTEAPTEAPTEA@R85MST5MST5MR4BPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8811
PTEAPTEAPTD]MST5MST5MST5MQ1APTEAPTEAPTEAPTEAPTEAPTEABCD5MST5MST5MST5L@!!APTEAPTEAPTEAPTEAPTEAPTD&MST5MST5MST5MST5IDEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8812
PTEAPTEAPTEAPTEAESH5MST5MST5MST5MST2BTEAPTEAPTEAPTEAPTEAPTD*MST5MST5MST5MST5MST(PTEAPTEAPTEAPTEAPTEA@@ HB@TQHB@ HB@ D TH
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8813
B@!!APTEAPTEAPTEAPTEAPTEAPTEAG$A@PDA@PDA@G4EAPTEAPTEAPTEAPTEAPTEAPTEAPP(:PDA@PDA@PD@;CDEAPTEAPTEAPTEAPTEAPTEAPTEAHTA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8814
PDA@PD@"PTEAPTEAPTEAPTEAPTEAPTEAPP0<PDA@PDA@PDA@PC4NPTEAPTEAPTEAPTEAPTEAPTEAM$A@PDA@PDA@PDA@PC]APTEAPTEAPTEAPTEAPTEAPQ@?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8815
PDA@PDA@PDA@PDA@O1AAPTEAPTEAPTEAPTEAPTEANDA@PDA@PDA@PDA@PDA@NTEAPTEAPTEAPTEAPTEAPTDKB0,KB0,KB0,KB0,KB00LPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8816
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8817
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPP@a') ; colorMapFromArray:#[36 6 0 52 7 0 50 8 0 54 8 0 50 10 5 50 11 6 56 9 0 58 9 0 59 9 0 62 9 0 0 30 50 0 31 54 0 32 53 0 32 55 0 34 57 0 36 61 0 36 62 41 36 50 40 36 53 64 11 0 66 10 0 67 11 0 69 10 0 74 11 0 76 12 0 83 13 0 92 14 0 100 15 0 102 16 0 112 18 0 0 46 81 0 49 85 40 49 72 0 60 102 0 65 110 131 20 0 135 21 0 140 22 0 145 23 0 170 27 0 174 27 0 182 28 0 187 29 0 202 31 0 211 33 0 214 33 0 221 35 0 232 36 0 238 37 0 242 38 0 249 39 0 250 39 0 252 40 0 255 40 0 0 78 133 0 82 141 0 100 171 0 104 178 0 118 201 0 120 207 0 129 220 0 131 224 0 135 230 0 135 231 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8818
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@X@@@@F@@@@C0@@@A>@@@@_ @@@O<@@@C?@@@A?8@@@??@@@O?0@@G?>@@A?? @@??<@@O??@@G??0@@G? @@C?<@@@?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8819
?@@@_?8@@G?>@@C??0@@??<@@O??@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8820
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8821
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8822
mergeUsingA24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8823
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingA24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8824
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8825
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8826
     self mergeUsingA24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8827
     ImageEditor openOnClass:self andSelector:#mergeUsingA24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8828
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8829
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8830
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8831
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8832
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8833
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8834
        constantNamed:'GenericToolbarIconLibrary mergeUsingA24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8835
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8836
APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8837
APTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAP@@@@TEAPTEAPTEAPTEAPPDA@PDAPTEAP@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8838
@@TEAPTEAPTEAPTEAPPDA@PDAPTEAP@@@@@EAPTEAPTEAPTEAPPDA@PDAPTE@@@E@@@EAPTEAPTEAPTEAPPDA@PDAPTE@@@EAP@EAPTEAPTEAPTEAPPDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8839
APTE@@TEAP@@APTEAPTEAPTEAPPDA@PDAPT@@@TEAP@@APTEAPTEAPTEAPPDA@PDAPT@@@TEAPT@@@TEAPTEAPTEAPPDA@PDAP@@@@@@@@@@@@TEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8840
APPDA@PDAP@@APTEAPT@@@TEAPTEAPTEAPPDA@PD@ @@APTEAPTE@@@EAPTEAPTEAPPDA@PD@P@EAPTEAPTE@@@EAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8841
APTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8842
APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTE') ; colorMapFromArray:#[0 0 0 18 23 10 70 90 40 165 211 94 165 211 95 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_@@@_@@@_@@@_@@@_@@@_C @_C @_C0@_F0@_FP@_DX@_LX@_LL@__<@_XL@_8F@_0F@_@@@_@@@_@@@_@@@_@@@@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8843
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8844
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8845
mergeUsingA32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8846
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingA32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8847
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8848
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8849
     self mergeUsingA32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8850
     ImageEditor openOnClass:self andSelector:#mergeUsingA32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8851
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8852
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8853
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8854
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8855
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8856
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8857
        constantNamed:'GenericToolbarIconLibrary mergeUsingA32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8858
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8859
A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@LC@0LC@0PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PDA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8860
A@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8861
A@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8862
A@@@@@PDA@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PD@@@@A@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA@PC@ HB@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8863
A@PDA@PD@@@D@@@DA@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@@@@@P@@@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PD@@@DA@P@@@PDA@PDA@PDA@PDA@PC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8864
@ HB@ HBA@PDA@P@@@PDA@@@A@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PD@@@@A@PD@@@@A@PDA@PDA@PDA@PD@0HB@ HB@ PDA@P@@@PDA@PD@@@DA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8865
A@PDA@PC@ HB@ HBA@PD@@@@A@PDA@P@@@PDA@PDA@PDA@PDA@LB@ HB@ HDA@P@@@@@@@@@@@@@@@PDA@PDA@PDA@PD@0HB@ HB@ PDA@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8866
A@PDA@PDA@PDA@PC@ HB@ HBA@P@@@@DA@PDA@PD@@@@A@PDA@PDA@PDA@LB@ HB@ HDA@@@A@PDA@PDA@PD@@@DA@PDA@PDA@PD@0HB@ HB@ PD@@@DA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8867
A@PDA@P@@@PDA@PDA@PDA@PC@ HB@ HB@P@@@@PDA@PDA@PDA@@@@@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8868
A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8869
@ HB@ PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@0LC@0LDA@PDA@PDA@PDA@PDA@PDA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8870
A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@a') ; colorMapFromArray:#[0 0 0 96 122 55 165 211 95 165 211 96 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8871
@@@@@C<@@@A?@@@@_0@@@G<@@@A?@@@@_0@@@G<@@@A?@\@@_0G@@G<C8@A?@6@@_0] @G<FL@A?A#@@_088@G<LF@A?GA @_1?<@G<_?@A?N@8@_3@F@G<0
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8872
A A?<@\@_0@@@G<@@@A?@@@@_0@@@G<@@@A?@@@@O0@@@@@@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8873
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8874
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8875
mergeUsingAAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8876
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingAAll24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8877
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8878
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8879
     self mergeUsingAAll24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8880
     ImageEditor openOnClass:self andSelector:#mergeUsingAAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8881
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8882
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8883
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8884
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8885
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8886
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8887
        constantNamed:'GenericToolbarIconLibrary mergeUsingAAll24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8888
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8889
*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*1L8MC,;N34=OS5@PDAHPD!!HRD!!IRQZ+*2>O#9NS%Y"X(I"!!(ZF!!)*V&)*&**T*+*3RN#8>S$9VX&I"!!&JF!!(ZV%
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8890
)*Z&*T&+*3RI#8>O$9NU%Y"X(ZB!!(ZF&)*Z&*T"+*2:I"X&O#9VU&9"U&9. (JF!!(ZZ&)$^+*2:G"X>O#8>U%SPAEF*[&:B!!(ZF&)$&+*3RF!!8&I"X>O#00F
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8891
@U"[(JB!!(ZF&(T&+*2:F!!H&I#8&OVPD8@RBX&JB (JB!!(TB+*2:F!!(ZG!!8>NF !!\D05%&IV (JB!!(TB+*2>F_XZF"X%.AQ1$R0ET&I2X&:B!!(TB+*2U=_G2F
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8892
!!H%N@T>O^@T[^Y"X%ZB!!(DB+*295_G6D!!HPOB%6I#1 HVYVX&I" &36+*29<_G5=!!FDAGFE+Z44APIRU%Y"U&36+*2Y7]71=_Q<A@PDA@PDADV^U%YV[&36+
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8893
*2Y5]7]=]P$NSD=PT5LY@UZU%YVU%S6+*2Y5]WU7UPD/[XZD!!H%]@Q:G$9NU%S.+*2U1]WE7E0UW_W6D!!HRIC0- #8>S%S.+*2E1\WU7X%-(_W2F!!(RDZVA&
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8894
"X>O$3.+*2Y1\WE1]W]<_G5=!!''6D!!H&O#8:O#3.+*2U/[7E1]WU7_G1<_G2F!!HZI#8&O#3&+*2E,[611\WE5]7U<_XY<_XZF!!8&O#3.+*1@!!IRH&H2X&I"X.
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8895
K"8/K"8.MB8/MAF+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+') ; colorMapFromArray:#[0 0 0 1 1 0 1 2 1 4 5 2 5 6 3 6 6 3 7 8 4 7 9 4 9 11 5 13 16 7 15 18 8 18 21 10 20 23 11 24 28 13 29 35 16 31 37 17 31 41 18 37 43 20 36 44 20 37 44 20 38 45 21 39 45 21 43 47 22 44 54 24 46 55 26 48 57 27 54 65 30 59 69 32 64 76 35 64 77 35 69 81 37 69 84 40 77 89 42 74 95 43 76 96 43 76 96 44 77 96 44 77 97 44 78 97 45 80 99 44 80 98 45 81 98 45 81 99 45 80 99 46 80 100 46 81 100 46 82 100 46 83 102 47 84 100 46 84 100 47 84 102 46 86 102 47 87 102 47 86 101 48 85 102 48 87 102 48 86 103 48 88 102 48 88 103 48 89 103 48 89 104 48 90 105 49 91 105 49 90 106 49 92 105 49 92 106 49 93 106 49 93 106 50 94 106 50 94 107 51 95 107 51 95 108 51 96 108 51 97 109 52 98 109 52 98 115 54 99 119 55 102 119 56 102 122 56 107 128 59 108 129 59 109 130 59 109 131 59 110 131 60 112 131 61 118 145 66 125 147 69 129 158 72 134 156 73 139 165 78 143 168 78 139 172 78 145 171 80 145 172 80 146 174 81 147 175 81 148 175 82 151 181 83 149 183 83 152 182 84 158 186 87 157 184 88 159 190 88 164 194 90 160 196 89 167 200 92 173 201 95 173 206 96 167 213 96 173 209 97 175 208 97 168 212 96 169 213 96 171 214 97 172 214 97 173 215 98 174 215 98 175 215 98 175 216 98 175 216 99 178 210 98 180 210 98 176 216 99 176 217 99 177 217 99 178 217 100 178 218 100 179 218 100 180 218 100 180 219 101 181 219 101 182 219 101 182 220 101 183 220 101 183 220 102 185 219 102 185 220 102 185 221 102 185 221 103 186 221 103 186 222 103 187 222 103 188 222 103 188 223 104 189 223 104 190 223 104 190 224 104 191 224 104 191 224 105 192 225 105 193 225 105 193 225 107 194 225 107 194 226 107 195 226 107 196 226 107 196 227 107 197 227 107 198 227 107 198 228 107 199 228 108 200 229 108 201 229 108 201 229 109 202 230 109 203 230 109 204 231 110 205 231 110 206 232 111 207 232 111 209 233 111 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8896
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8897
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8898
mergeUsingAAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8899
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingAAll32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8900
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8901
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8902
     self mergeUsingAAll32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8903
     ImageEditor openOnClass:self andSelector:#mergeUsingAAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8904
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8905
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8906
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8907
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8908
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8909
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8910
        constantNamed:'GenericToolbarIconLibrary mergeUsingAAll32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8911
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8912
+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+J0@"H"K#X:N%9^N%9^W%9:"%:J")JR$)J"(
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8913
*J"+*0B,+@BF"H.M#X:N#)^W%)^W'')Z"''JJ")JR$*J"(*J"+@J2,@HVE!!X"H#X6M#)^V%)ZV''):Y''*R$(*R((*"(*J @+J0@^(VE"8"H#X6N#(:V%)ZV%):Y
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8914
''):")I:((*"(*@B,+@BE!!XZF"H"K"8:N#)"V%)^V''):Y():$(:N"*J"(@J2,@G&E!!XZF"H.M#(:N#'')LSHJV&Y:Y''):#(:J"*J @+J0@^XU9"H"H"H"H"H:N
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8915
PP8@CIZW%*JW():#)JJ(*@B,+@A9]8!!9]8"E"H"J"(H/@@@@OIZV%92\''):")I:(@J2,@G]9^XE9"HZF"H"HQBD@FP@\#)^W%92W''):"(*P@+J0@]W]7]8U9
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8916
!!XZF"HX8@@T5A U*%)^V''I:^''):"( B,+@A7]7]7^XU:!!XVESR(@G$X$@B:U%YVU'')Z^''*J"@J2,@F95]7]9^W):!!XUBD0@:!!"<@D)VU%Y2V'')Z^'')8@+J0@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8917
]V9.]7]9^''*F!!#@@B8ZMO@<@RX:N%)ZW'')Z"%0B,+@A.]WU.]7]:^'')FI @%"HYJI0@%#)VV%)^W%)Z"@J2,@F9.]V97]7]9^S I@D^E#XX1@@%:#)"U%YVX
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8918
&I0@+J0@[F9.]V9.]7%]J0@Q!!XVE!!S(W@CRJ%)JU%YVX&@B,+@A)[&9.[''U5]4@[@@$WE1\WE00@F(6N#)"U%Y"X@J2,@FY&[F9.]V95L0@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8919
SX6J#)VU%Y @+J0@Y&Y)ZV9.]T,(@A!!USUUUUUX:H@@)#X6N#)VU%PB,+@A&Y&Y)[&9)M1D@L'']9^XVE]7T,@ABH#X6N#)VU@J2,@FI&X&Y)[&X-@@U]]WU9
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8920
]7&E!!S(G@DNM"86M#)T@+J0@X&I&Y&Y)O2@@GV95]W%7^W^EQRH@HH.H#X6N# B,+@A"X&I"Y&Y[S$9)[''].^W]7^'')7UUU+!!XZH"H:N@J2,@E%"X&Y"Y&Y)
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8921
ZV%.[''].]7]:]7):!!W*E!!X"H#X8@+J0@X&I"X&I"ZVY)ZV%.[''].^W]7^''*E!!XVE!!XVF#PB,+@AYWE9"X&Y$X&Y)[&%.[''].]7]:^'')9!!XVE!!X6H@J2,@E%"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8922
W%1"X&I&Y&Y)ZV%.[''U.]7]7^XU9!!XVE!!XT@+J0@VU1\W%1]X&I"ZVY)[&9.[&97]W]7^W)9!!XVE!!PB,+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8923
@J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+@@a') ; colorMapFromArray:#[0 0 0 1 1 0 1 1 1 3 3 2 3 4 1 5 7 3 7 8 4 9 11 5 10 11 5 11 13 6 11 14 6 12 15 7 14 17 8 16 19 8 17 19 9 17 20 9 20 23 11 22 27 12 26 30 14 30 36 16 30 36 17 31 36 17 30 37 17 31 37 17 34 42 19 38 44 21 39 46 22 46 55 25 48 56 26 49 60 27 50 59 28 51 62 28 52 61 29 56 67 31 58 69 32 62 73 34 65 76 35 67 79 36 70 83 39 73 86 39 75 92 42 84 99 47 85 101 47 90 108 50 93 111 51 94 117 53 98 114 54 101 118 55 105 126 58 109 128 60 110 132 61 115 138 64 119 140 66 125 146 68 127 149 69 127 156 72 130 154 72 132 157 73 135 158 72 133 157 74 135 157 74 134 159 74 136 159 74 131 160 73 133 160 74 138 163 75 136 163 76 140 166 78 146 171 80 146 175 80 148 173 82 148 177 81 149 178 82 154 181 85 159 186 87 154 188 86 168 196 92 168 199 94 164 201 92 164 202 92 169 200 92 169 204 94 170 204 94 171 204 94 171 205 94 171 205 95 172 205 95 172 206 95 172 207 95 166 211 95 167 213 95 170 210 95 167 213 96 172 209 96 168 212 96 168 213 96 169 213 96 170 213 97 171 214 97 172 214 97 172 215 98 173 215 98 174 215 98 175 215 98 175 216 98 175 216 99 179 210 98 181 215 100 176 216 99 176 217 99 177 217 99 178 217 99 178 217 100 178 218 100 179 218 100 181 217 101 180 218 100 180 219 101 181 219 101 182 219 101 182 220 101 183 220 101 183 220 102 185 216 102 187 218 102 188 217 102 185 220 102 185 221 102 185 220 103 185 221 103 187 220 103 186 221 103 186 222 103 187 222 103 188 222 103 189 222 103 188 223 104 189 223 104 190 223 104 190 224 104 191 224 104 191 224 105 192 224 105 192 225 105 193 225 105 193 225 107 194 224 106 194 225 107 194 226 107 195 226 107 196 226 107 196 227 107 197 227 107 198 227 107 198 228 107 198 228 108 199 228 108 200 228 108 200 229 108 201 229 108 201 229 109 202 229 109 202 230 109 203 230 109 204 230 109 204 231 110 205 231 110 206 232 110 207 232 111 208 233 111 209 233 112 210 234 112 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8924
@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8925
??9????>_????''????9????>_????''????9????>_???? @@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8926
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8927
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8928
mergeUsingB24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8929
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingB24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8930
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8931
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8932
     self mergeUsingB24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8933
     ImageEditor openOnClass:self andSelector:#mergeUsingB24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8934
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8935
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8936
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8937
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8938
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8939
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8940
        constantNamed:'GenericToolbarIconLibrary mergeUsingB24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8941
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8942
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8943
@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0L@@@@@@@@C@0LC@0LC@0LC@0HB@ HB@0L@@@LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8944
@@@@@0LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@0LC@0@@@0LC@0LC@0LC@0HB@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8945
@0L@@@@@@@@@@0LC@0LC@0LC@0HB@ HB@0L@@@LC@0@@@0LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8946
@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@@LC@@@@@@LC@0LC@0LC@0HB@ HB@0L@@@@@@@@C@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8947
@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8948
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC') ; colorMapFromArray:#[0 0 0 242 181 13 243 181 13 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_@@@_@@@_@@@_@@@_@@@_O0@_L8@_HL@_HL@_HX@_O8@_LX@_HL@_HL@_HL@_L<@_O0@_@@@_@@@_@@@_@@@_@@@@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8949
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8950
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8951
mergeUsingB32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8952
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingB32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8953
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8954
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8955
     self mergeUsingB32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8956
     ImageEditor openOnClass:self andSelector:#mergeUsingB32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8957
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8958
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8959
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8960
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8961
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8962
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8963
        constantNamed:'GenericToolbarIconLibrary mergeUsingB32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8964
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8965
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@ LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ DA@PHB@0LC@0LC@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8966
@0LC@0LC@0HB@ DA@PHC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@PDA@PDA@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8967
@0LC@0LC@0LC@0LC@0HA@PDA@PDC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ HA@PDA@0LC@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8968
@@@@@@@@@0LC@0LC@0LC@0LC@0HA@ DA@PDC@0L@@@@@@@@@@@@@@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@0LC@0LC@@@@@0LC@0LC@0LC@0LB@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8969
@0LC@@@C@0LC@0L@@@@C@0LC@0LC@0LC@0HA@PDA@PDC@0L@@@LC@0LC@0@@@@LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@0LC@0LC@@@@@0LC@0LC@0LC@0LB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8970
@ DA@PDA@0LC@@@C@0LC@0@@@@LC@0LC@0LC@0LC@0HB@ DA@PDC@0L@@@@@@@@@@@@C@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@@@@@@@@@@@C@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8971
@0LC@0LB@PDA@PDA@0LC@@@C@0LC@0L@@@@C@0LC@0LC@0LC@0HA@PDA@PDC@0L@@@LC@0LC@0L@@@LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@0LC@0LC@0@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8972
@0LC@0LC@0LC@0LB@ HA@PDA@0LC@@@C@0LC@0LC@@@C@0LC@0LC@0LC@0HA@ DA@PDC@0L@@@LC@0LC@0@@@@LC@0LC@0LC@0LC@ DA@PDB@ LC@0@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8973
@@@@@@@@@0LC@0LC@0LC@0LB@PDA@PDB@0LC@@@@@@@@@@@@@0LC@0LC@0LC@0LC@0HA@PDA@PDC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ DA@PDA@PLC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8974
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ DA@PDA@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ DA@PDC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8975
@PDA@PLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@PHA@PDA@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ HB@ HC@0LC@0LC@0LC@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8976
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0@a') ; colorMapFromArray:#[0 0 0 243 181 13 243 181 14 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8977
@@@@@C<@@@A?@@@@_0@@@G<@@@A?@@@@_0@@@G<@@@A?G?@@_1?8@G<XG@A?FA0@_1 \@G<XG@A?FC @_1?0@G<_>@A?FA0@_1 L@G<XC@A?F@0@_1 \@G<_
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8978
?@A?G?@@_0@@@G<@@@A?@@@@_0@@@G<@@@A?@@@@O0@@@@@@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8979
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8980
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8981
mergeUsingBAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8982
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBAll24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8983
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8984
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8985
     self mergeUsingBAll24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8986
     ImageEditor openOnClass:self andSelector:#mergeUsingBAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8987
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8988
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8989
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8990
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8991
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8992
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8993
        constantNamed:'GenericToolbarIconLibrary mergeUsingBAll24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  8994
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8995
6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6 89NS$?O3<?RD!!GQ4]MST5MTEAPT ?Z6#N.,[F7-;;A0\SH2,3N4MKU5]_X6EKZ6">.++F7-;^>/,GD2L+L3,?R
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8996
4-_W6EKZ6#N&+*:.,;^:.+;A1L#J3L/O5]WU55CZ6">$)*".++N7.+*>1LSH2,/K4MCU5UCZ6">^)J".+&D@@@@@A!!A.2L3L3\?O5UCZ6">Y(ZF&*E0@MVI#
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8997
O0$A[\#L2<7O347Z6".X(:N#)%0@Z;F7-74@H+?H2</N34/Z6""U&I&#)%0@Z;F1-9,@H[WH2L#K3$/Z6""R$)"#(5\@YI*\ AHA[K2?1L#H24_Z6""R#9JY
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8998
(5\@@@@@@@P9!![*</;?H24_Z6""K#9JU&E\@OF%)XADAW;":/K?D2D_Z6!!:K"8>R%U\@Y:N$+*$JA7:8.+2>1D_Z6!!:F"8*O%UP@Y:N#(*8S@F>7-;:>/#?Z
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  8999
6!!:C!!(*O#5P@YI"#(:HH@721-;^7/#?Z6!!:C 8ZK"5L@G59^OP4@HG>.,;N;/$CZ6!!]4 8ZF"5L@@@@@AP0>^Z".++N3-3?Z6!!]4]GVF!!8E0]7Y:^G.](:"&
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9000
+*:1-3''Z6!!]3]GU5!!H^K"8>R%I&Y(ZF$*J*1,S''Z6!!Q2\7Q5 8ND"8.K$)JY&Y&#)*Z.+#_Z6!!Q2\''M4]WVC 8.K"9JR&Y&#(:Z(*S''Z6 ,TE1\WFQ8^G!!8%
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9001
IR (J",/J3L3L0;Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z') ; colorMapFromArray:#[0 0 0 5 5 1 6 5 2 9 8 2 13 11 3 16 14 3 18 15 5 26 23 7 33 29 7 32 29 9 38 33 9 49 36 3 51 43 10 53 45 11 50 44 12 51 50 20 57 51 17 65 57 16 71 63 18 73 63 17 113 85 7 113 86 9 113 86 10 114 87 10 114 88 11 114 88 12 114 89 12 114 89 13 114 90 13 114 90 14 114 91 15 100 83 17 103 89 23 98 88 27 99 89 29 114 91 16 115 92 16 115 92 17 115 94 17 115 94 18 115 94 19 115 95 19 115 95 20 115 96 20 115 96 21 115 97 21 115 97 22 115 98 23 116 98 23 116 98 24 116 99 24 116 99 26 116 100 27 113 99 28 115 101 30 116 101 28 116 101 29 116 102 29 116 103 30 117 103 31 121 103 26 123 104 25 126 106 26 117 104 32 117 105 32 117 105 33 117 105 34 117 106 34 117 106 35 117 107 35 117 107 36 117 108 36 117 108 37 117 109 37 117 109 38 117 109 39 117 111 40 118 112 41 118 113 43 118 113 44 118 114 45 118 115 46 118 116 47 134 108 20 134 109 21 134 110 22 134 111 23 134 112 25 134 113 26 134 114 27 135 114 29 135 115 30 135 116 30 135 117 31 138 116 26 134 118 34 136 118 32 137 120 33 140 123 36 140 124 38 147 127 33 153 128 28 153 128 29 153 130 30 152 130 33 152 131 34 154 134 36 154 135 37 159 142 43 156 141 46 158 144 47 188 166 47 194 157 29 243 185 18 243 186 20 244 188 22 244 190 24 244 191 26 197 162 33 205 168 33 205 170 37 201 171 43 214 177 37 214 179 41 197 172 48 194 173 53 205 181 53 215 186 50 211 186 53 236 190 34 245 193 28 245 194 30 245 194 31 222 197 58 245 196 32 245 196 33 245 197 35 245 198 35 246 198 35 246 199 36 246 199 37 246 200 37 246 200 38 246 201 39 246 201 40 246 202 41 246 203 41 246 203 42 246 204 43 247 204 43 247 205 44 247 205 45 247 206 46 247 207 47 237 206 55 229 204 61 236 206 57 240 203 48 247 208 48 247 208 49 247 209 49 247 209 50 245 210 52 248 210 51 248 211 52 248 212 53 248 212 54 248 213 54 248 213 55 246 213 58 248 214 56 248 214 57 248 215 57 249 216 58 249 216 59 249 217 59 249 217 60 249 218 61 249 218 62 249 219 62 249 219 63 241 219 70 249 220 64 249 221 65 250 222 66 250 222 67 250 223 68 250 224 69 250 225 70 250 225 71 250 226 71 250 226 72 250 227 73 251 227 73 250 227 75 251 228 74 251 228 75 251 229 75 250 229 77 251 230 76 251 230 77 251 231 79 251 232 79 252 233 81 252 234 81 252 235 83 252 235 84 252 236 85 252 237 85 252 238 87 252 238 88 253 240 89 253 240 90 253 241 91 253 241 92 253 243 94 253 244 96 254 246 98 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9002
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9003
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9004
mergeUsingBAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9005
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBAll32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9006
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9007
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9008
     self mergeUsingBAll32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9009
     ImageEditor openOnClass:self andSelector:#mergeUsingBAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9010
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9011
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9012
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9013
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9014
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9015
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9016
        constantNamed:'GenericToolbarIconLibrary mergeUsingBAll32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9017
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9018
8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8.H@*J&,-KR4.+2<0,GA1,''I3-CR4=[X6-+Z
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9019
7=?!!8PC"8 B%*J&)-KR4.+*<0,GF1,''N3-CS4=[X6-+Z7=?!!@NK"@JN#*J")-KR8/K2<0LKD1L''I3,?R4-#Z6-+Z6-<@8.H@(JN(*J&)+KR4-K2<0LCD1L''I
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9020
3,?R4-WU6-+]7PC"8 B[(JB%*J&)-KR4-K2<0LKB1L''K4MCR4-WX6-+Z@NK"@I. (JB(*J&)%WU7]7%9^:?D2\SK3,;R4-WX6-(@8.H@&9.\''9>%)Z!!VEP@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9021
@@@@BQ8/.\''I2]CR4-#X6@C"8 BR&92Z'':V%*EXZ@A(''JBDM@@@Q,L''I3-CR4-OX@NK"@IJR&)*\''I2%U!!(@Q:&5.''06B0@11\''N3,;R4= @8.H@#)JX&I2\
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9022
''JUPF AF-KR5.'',2@BGB2\SK3,;S4 C"8 BN$)JR&I*\''EHX@DZ)-J25,3P@HLKB1L''I3,?R@NK"@H.N$)JX&I2\TA @Q*&)+KQ$K @+/LKB0,''I2<<@8.H@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9023
"8.K$)JR&I!!PF@@7Y&]#O#@CAVV</\KB1L''D3 C"8 BH"8.K$)JX&D,U@@@@@@@@@BAX.+*</\KD1L/K@NK"@HRH"8.N#)JRR1(@D2X&JA(J@B&T.+2</LGA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9024
1\$@8.H@ ("H"H.N$)IHE AB''9>_($X-@A*4-K*</[7A2PC"8 A?_8RH"H:K$$ Z@C>_''9>_)T8I@EF1-K*</LCA@NK"@GM? 8"H"H.KRAX@PY*Z''9>%T1(@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9025
M[F4.+*<0L@@8.H@\(M?_8"H"8-HD0@?&)*_''9=OBP@>(+R4-K"<0@C"8 A/\''Q?_8"H"C0S@C&P&).XP"0@@6"(*[R4.KR<@NK"@FE/\7M? 8"DN1L@DBL#
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9026
H1@I@@@3*J")*[R4-K0@8.H@XF=/\7M? 8P:D@@@@@@@AP0*P9>_*J&)*[R4-@C"8 A"X&I/\''I?_75)ZV%,[&9>$I*\''I2''*J&)*[R4@NK"@E=_W6=/\''=?
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9027
 (ZF#8*K#9BZ&I*\''I>%)Z"),:$@8.H@WU= XV=/_7=?_8RF"H>O#9BX$I*Z''92%)ZV)-@C"8 A\WVA XVE"X''=?_8ZF"H&O$IBP&)*Z''I>%)Z")@NK"@E%\
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9028
WFA XFI"\''=2 8RD!!(>O#9BP&)*\''I2%)ZT@8.H@VU1\WFA X&I"\''JC 8RF!!("K#9BP&)*\''I>%)PC"8 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9029
@NK"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8 @a') ; colorMapFromArray:#[0 0 0 1 1 0 3 3 1 4 3 1 5 5 1 7 6 2 9 8 2 10 9 2 11 9 2 10 10 3 13 11 3 17 15 5 23 19 4 30 27 8 31 28 9 33 27 5 33 27 6 34 29 7 35 30 7 38 31 6 38 31 7 35 31 9 38 32 7 37 32 9 38 32 8 38 33 8 38 33 9 39 34 9 36 32 10 37 33 10 38 35 12 42 37 11 40 37 12 44 40 13 46 41 12 48 40 9 48 40 10 51 43 11 51 44 12 50 44 13 52 46 14 54 48 14 62 53 13 73 66 20 81 69 18 83 73 20 93 83 25 101 92 30 106 93 27 105 95 31 109 98 30 123 106 28 117 105 32 130 114 32 140 126 40 147 127 34 144 127 36 170 141 31 178 144 27 184 151 29 184 151 31 184 152 31 158 138 40 170 142 32 170 143 33 170 143 34 170 145 36 175 149 38 171 148 40 171 149 41 171 150 42 171 150 43 185 154 33 185 154 34 185 155 35 185 156 37 185 157 37 186 158 39 177 155 42 180 155 40 186 159 40 181 160 46 186 160 41 186 160 43 186 161 43 187 162 43 187 163 45 184 161 46 191 169 51 243 183 15 243 184 17 243 185 18 243 185 19 243 186 20 244 187 21 244 188 22 244 189 23 244 190 25 244 191 26 204 178 50 203 180 54 203 183 57 216 187 50 216 188 51 219 190 52 230 187 35 230 188 36 230 189 37 230 189 39 231 190 40 231 191 42 245 192 28 245 193 28 245 193 29 245 194 30 245 194 31 245 195 31 216 192 56 217 192 57 217 193 59 217 194 60 217 195 62 219 196 60 217 196 62 220 197 61 238 192 35 236 198 45 245 196 32 245 196 33 245 197 34 245 197 35 246 198 35 246 198 36 246 199 36 246 199 37 246 200 37 246 200 38 246 201 39 246 201 40 246 202 40 246 202 41 246 203 42 246 204 43 247 204 43 247 205 44 247 205 45 247 206 46 247 207 47 228 203 60 233 205 59 243 206 50 247 208 48 247 208 49 247 209 49 247 209 50 248 210 51 248 211 52 248 211 53 248 212 53 248 212 54 248 213 54 248 213 55 243 211 57 248 214 56 248 214 57 248 215 57 248 215 58 249 216 58 249 216 59 249 217 60 249 218 61 249 218 62 249 219 62 249 219 63 249 220 63 235 214 69 237 217 73 246 219 66 249 220 64 248 220 65 249 221 65 250 222 66 250 222 67 250 223 67 250 223 68 240 220 74 250 224 69 250 225 70 250 225 71 250 226 71 250 226 72 250 227 73 251 227 73 251 228 74 251 228 75 251 229 75 251 229 76 251 230 76 251 230 77 251 231 78 251 231 79 251 232 79 251 232 80 251 233 80 252 233 81 252 234 81 252 234 82 252 235 83 252 235 84 252 236 84 252 236 85 252 237 86 252 238 87 252 238 88 252 239 88 253 240 89 253 240 90 253 241 91 253 242 92 253 242 93 253 243 94 253 244 96 254 245 96 254 246 97 254 247 99 254 248 101 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9030
@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9031
??9????>_????''????9????>_????''????9????>_???? @@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9032
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9033
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9034
mergeUsingBase24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9035
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBase24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9036
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9037
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9038
     self mergeUsingBase24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9039
     ImageEditor openOnClass:self andSelector:#mergeUsingBase24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9040
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9041
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9042
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9043
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9044
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9045
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9046
        constantNamed:'GenericToolbarIconLibrary mergeUsingBase24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9047
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9048
EAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!LREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9049
EAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEALRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEALH@@@@@@@@EAPTEAPTEAPTEAPTEAPTEALG@@TI@ @@@APT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9050
EAPTEAPTEAPTEAPTEAHG@@0REAPT@@@TEAPTEAPTEAPTEAPTEAHG@@0REAPT@@@TEAP@@@@@@APTEAPTEAHG@@,QEAP@@APTEAP@EAPT@@@TEAPTEALG@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9051
@@@@@APTEAPTEAPTE@@@EAPTEALG@@XK@1P@@APTEAPT@@@@@@@@EAPTEALG@@0REAPT@@@TE@@@@APTE@@@EAPTEALG@@0REAPT@@@TE@@@EAPTE@@@EAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9052
EALG@@0REAPT@@@TE@@@EAPTE@@@EAPTEALG@@TI@ @@@@@TE@@@EAPT@@@@EAPTEALG@@@@@@@@@APTEAP@@@@@E@@@EAPTEALPC <NEAPTEAPTEAPTEAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9053
EAPTEAPTEALRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEALRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9054
EAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPT') ; colorMapFromArray:#[0 0 0 25 48 63 25 49 63 30 57 72 33 63 81 37 70 91 40 76 98 41 79 101 42 81 104 46 90 116 50 95 122 50 98 126 51 99 128 66 128 165 67 129 166 70 134 173 77 149 191 79 152 196 83 160 206 83 161 206 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_@@@_@@@_@@@_@@@_@@@_8@@_<@@_F@@_FO _LH0_<@X_,G8_F\X_FXX_FXX_>X8_<OX_@@@_@@@_@@@_@@@_@@@@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9055
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9056
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9057
mergeUsingBase32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9058
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBase32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9059
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9060
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9061
     self mergeUsingBase32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9062
     ImageEditor openOnClass:self andSelector:#mergeUsingBase32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9063
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9064
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9065
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9066
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9067
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9068
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9069
        constantNamed:'GenericToolbarIconLibrary mergeUsingBase32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9070
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9071
E1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1TUEQTUEQ\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\WE1\WE1\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9072
E1\WE1\WE1TVE!!XVE!!XWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXVE!!XVE!!\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9073
E1\WE1\WE1\WE1\WE1TVE!!XVE!!XWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXSDQDQDQ@WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!@H@@@@@@@@@@@W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9074
E1\WE1\WE1\WE1\WE1\WE1\WE1TVD@$@B@0C@@@@@@@WE1\WE1\WE1\WE1\WE1\WE1\WEQXPBP@NE!!\WE1\@@@@WE1\WE1\WE1\WE1\WE1\WE1\UE!!@I@@8V
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9075
E1\WE0@@@A\WE1\WE1\WE1\WE1\WE1\WE1TVD@$@C!!XWE1\W@@@@E1\WE1\@@@@@@@@WE1\WE1\WEQXPBP@NE!!\WE1\@@@@WE1\W@@@@@@@@@@@WE1\WE1\U
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9076
E!!@I@@4QDA\W@@@@E1\WE1\@E1\WE1\@@@@WE1\WE1TVD@$@@@@@@@@@@A\WE1\WE1\WE1\WE1\@@A\WE1\WEQXPBP@EC@L@@@@@@A\WE1\WE1\W@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9077
@A\WE1\VE!!@I@@8VE1\WE0@@@A\WE1\@@@@@@@@@@@@@E1\WE1TVD@$@C!!XWE1\WE0@@E1\WE0@@@A\WE1\@@@@WE1\WEQXPBP@NE!!\WE1\W@@@@E1\@@@@W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9078
E1\WE0@@@A\WE1\UE!!@I@@8VE1\WE1\@@@@WE0@@E1\WE1\W@@@@E1\WE1TVD@$@C!!XWE1\W@@@@E1\W@@@@E1\WE0@@@@@WE1\WEQXPBP@DB L@@@@@@@@W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9079
E1\W@@@@@@@@@@@@@A\WE1\UE <E@@@@@@@@@@@WE1\WE1\W@@@@@@@W@@@@E1\WE1TVEAHRD!!HWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXVE!!XVE!!\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9080
E1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1TVE!!XVE!!XWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXV
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9081
E!!XVE!!\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UEQTUEQTWE1\WE1\WE1\WE1\WE1\WE1\WE1\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9082
E1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE0@a') ; colorMapFromArray:#[0 0 0 8 16 20 9 17 21 9 17 22 11 21 27 11 21 28 11 22 29 12 23 29 12 22 30 13 24 32 16 31 40 17 32 42 17 33 42 43 83 107 50 96 123 62 119 153 62 120 154 72 139 179 77 149 192 80 154 198 81 157 202 84 159 205 83 160 206 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9083
@@@@@C<@@@A?@@@@_0@@@G<@@@A?@@@@_0@@@G>@@@A?>@@@_?0@@G<N@@A?C @@_08O0G<NG>A?''AA0_? @LG?<@?!!?C!!?8_0X\NG<GNC!!?A3@8_088^G?>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9084
G?!!?>@>8_0@@@G<@@@A?@@@@_0@@@G<@@@A?@@@@O0@@@@@@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9085
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9086
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9087
mergeUsingBaseAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9088
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBaseAll24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9089
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9090
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9091
     self mergeUsingBaseAll24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9092
     ImageEditor openOnClass:self andSelector:#mergeUsingBaseAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9093
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9094
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9095
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9096
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9097
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9098
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9099
        constantNamed:'GenericToolbarIconLibrary mergeUsingBaseAll24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9100
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9101
5-[V5-[V5-[V5-[V5-[V5-[V5-[V5-[V5!!9ST5MVV%)ZV%9^W&I"X&Q$[V5-[2GV5$.=/\GC1\WI2L''I3L3N3<?R4-OU5V7V5$&=/\GA0<WE2\#I3L3N3,?O
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9102
4-KR5V7V5$&9.<F=0\GG1<_H2\''L3,;O3=KR46;V5$&9.[.=/\F>0<_G2\''I3L3N3=KQ4&7V5$YY@@@@@@8 _\OG1<#I2<3N3,?O4&/V5$YY@CQ)ZULW@8OC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9103
1\#H2\/L3L?O36KV5$YY@G*9.[6N@COC0<_G2L''K3L;N36/V5$IU@G*4.K&(@CCC09@(EPLSI8/L3&KV5$IQ@F&Z&(0#@8F=/'',/^XI0GANU3&KV5#5M@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9104
@@@IQKGA/+7D1<WH. Y&3E7V5$IM@D6D!!GH#@6^=/[% F 8C@0@13FGV5#5M@G^/-KR4FAVV/R(BMHFG!!0(-2VGV5#1M@GV,+KR4I BJ.P *+,GC/0@-2E7V
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9105
5#1M@GV++KJ-E0ZM.@ //[?A^P@-1U+V5#)A@CI2]FT_@B:''.RHQ_:9?DPX)1%7V5#)A@@@@@@([SYR4-I %B X]^@8)1U+V5#&Y"H&R$96]+J>2-KV5&(>&
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9106
.9*U05+V5#* (ZF$)J&+*:>/-KR7.[&9.<F;0U+V5#Z\(JF!!(*R)*Z2/+[R4-[V9.[7A0T7V5#Z\(ZF!!(ZR)*Z&++J24-KR4.[&9/EOV5!!,6M3$:N#(;N3-B
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9107
P#5FP$YIRT%MT1;V5-[V5-[V5-[V5-[V5-[V5-[V5-[V5-[V') ; colorMapFromArray:#[0 0 0 1 1 2 2 3 3 2 4 5 3 4 5 3 5 6 3 6 7 4 6 8 5 7 9 6 10 11 6 10 12 7 11 13 7 12 14 8 13 15 9 14 16 9 15 19 9 16 19 10 16 20 11 17 20 11 18 21 11 19 23 13 20 23 15 23 29 14 24 29 17 28 33 18 31 39 20 32 38 17 32 41 23 35 41 22 36 44 23 37 45 23 41 50 25 40 48 29 43 48 30 49 59 30 50 60 30 50 61 31 51 61 32 53 65 36 56 65 36 57 67 39 63 76 41 64 76 41 65 77 42 66 77 42 66 78 40 67 83 43 69 82 43 70 84 46 72 84 41 72 89 46 73 88 47 77 93 49 78 94 39 74 97 40 75 97 40 77 97 41 77 98 43 78 98 44 79 98 44 79 99 45 80 99 46 80 100 46 81 100 47 81 100 45 83 104 46 83 104 47 84 105 50 82 99 48 82 101 49 83 101 50 83 102 50 84 102 51 84 102 52 85 103 52 86 103 53 86 103 49 84 104 48 84 105 49 85 106 50 86 106 51 87 107 53 86 104 54 87 104 55 87 105 51 88 107 55 88 105 53 88 107 52 88 108 53 88 108 56 89 105 57 89 105 57 90 106 58 90 106 60 91 107 61 92 107 57 92 110 61 92 108 62 94 108 63 94 109 63 95 109 55 94 116 63 96 113 59 98 118 60 102 125 62 102 124 63 102 124 64 95 109 65 96 109 65 96 111 66 97 111 67 98 111 65 101 119 67 107 127 63 106 129 60 105 130 60 105 131 61 107 133 62 107 133 63 108 133 66 107 128 68 108 128 67 111 136 70 112 133 67 112 136 71 114 136 71 114 137 70 114 138 71 115 139 72 116 138 76 118 139 74 119 141 69 117 144 69 118 145 80 127 151 82 129 153 74 134 169 76 136 171 83 137 166 92 141 165 86 142 173 85 143 174 89 143 173 89 146 177 95 150 179 95 152 182 82 147 184 84 149 185 91 155 190 102 157 183 96 158 191 98 159 191 94 157 192 87 159 201 95 160 194 95 160 195 86 162 207 91 161 200 92 161 201 88 164 208 89 165 209 91 166 210 92 167 211 94 168 211 95 170 212 97 160 194 101 165 199 99 166 203 104 169 204 97 171 213 98 172 214 99 173 215 101 174 215 103 175 214 108 175 211 102 175 216 109 176 211 109 177 213 102 176 216 104 177 217 105 178 218 107 178 218 107 179 219 108 180 219 110 181 220 111 183 221 115 179 212 113 183 220 113 184 222 114 185 223 115 186 223 117 185 220 116 185 221 117 187 224 119 189 224 118 188 225 118 189 225 120 190 226 121 191 226 123 192 227 124 193 228 126 194 229 126 195 229 127 196 230 129 197 230 130 198 231 131 199 232 133 200 233 134 202 234 136 203 234 137 204 235 139 205 236 140 206 237 142 208 238 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9108
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9109
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9110
mergeUsingBaseAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9111
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBaseAll32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9112
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9113
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9114
     self mergeUsingBaseAll32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9115
     ImageEditor openOnClass:self andSelector:#mergeUsingBaseAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9116
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9117
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9118
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9119
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9120
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9121
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9122
        constantNamed:'GenericToolbarIconLibrary mergeUsingBaseAll32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9123
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9124
VE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@VE @ST5OS4=OTEEPTUEQTUIRT%ITUEQTUUUU
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9125
U%YVU0AXV@AMST5OS4=OTEAQTUEQT%IRT%MTUEQUUUUUUUYV@E!!X@D1LST5OS4=OS5AQTUEQTUIST5MTUEQTUUUUUUX@VE @SD1MST5OS4=PS5APTUEQT%ER
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9126
T%MTUEQTUUUUU AXV@AJSD1MST5OS4=OTEAQTUEQTUMRT5MTUEUUUUUU@E!!X@D)BLSD1L#H2MT-PS5APTUERTUEST%MTUEQUUUT@VE @R#DI@@@@@@@BBQUA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9127
S5APTUEQTUIRT%ITUEQUUPAXV@AJLP$@A0,KC@X@@@]GTEAQTUEQT%IRT%ISUEQU@E!!X@D$1BP@&SD1MSRHD@AUPTEAPTUERT%IRT%QTUEP@VE @RSDI@BYJ
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9128
R$1MSQT@B$=OTEEQS$@5MTART%QTU@AXV@AILP @I$)JSD=LG@@IS4=OPRXTB P@AQD/T%IT@E!!X@DX1B@@&R$)LR#$T@AAOS4<5B @GC 8F@@@''T%P@VE @
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9129
RC@I@A(0LSD*E0@AM$5OS3<^QUEPT$8[@@UQT AXV@AFL@$@@@@@@@@@A3IJS45OS49PTEANT$TQ@CMR@E!!X@C80B@@GB04MB@D@B3]MST5OSB<!!F1\VF@0@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9130
H%H@VE @Q"8H@BUIRD%JM1H@A45MSS<\A@@@@@@@@@@[T AXV@@>L@ @IT!!IRT)JLPD@JD1LH @AF3YKTD,U@A-Q@E!!X@C80B@@%RD!!IRT$1BP@WR$\T@A)O
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9131
S5EONAH@FUD@VE @O"4H@BUFRD!!IR"(A@A5JQAD@H$5MS$<)@ @YTPAXV@@>KP @HC,;N3\*D0@AM4)JE@@KP$5GJ <@@A%Q@E!!X@C8+B@@GB0,KBPD@@A5J
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9132
R$(,@0@EC0<CAAD@FU@@VE @OR4E@@@@@@@AAP<.RT%JR$(.DPTAAAMDDP@[T@AXV@@=O#4>O#9FQ$YFQ$%IRT%JR$)JSD1MST5OST=P@E!!X@C0=OS8>O#9F
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9133
Q$YFQ$!!IRT)JR$)LR$1MST5OS4<@VE @OS0=OS4>O#8>Q$YFQ$%IR$%JR$)JST1LST5MS0AXV@@:OS0=OS4>O#9FQ$YFRT!!IRT)JR$)MSD1MST5O@E!!X@C(<
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9134
OC4=OS4>O#8>Q$YFQ$!!IRT)JR$)LSD)MST4@VE @N#(<OS0=OS8>O#9FQ$YFRD!!IRT%IR$)JSD5MSPAXV@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9135
@E!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XV@@a') ; colorMapFromArray:#[0 0 0 4 7 9 5 9 10 8 12 15 9 14 17 10 17 21 14 22 26 15 24 29 15 26 33 17 28 34 20 32 38 22 36 44 25 38 45 23 39 48 27 43 51 28 47 57 30 50 60 32 50 60 33 54 64 35 58 70 39 62 75 43 69 82 47 73 86 47 76 92 50 78 93 51 80 95 47 79 98 52 83 98 54 87 105 53 89 109 60 95 112 63 96 114 55 96 120 62 100 121 64 102 122 66 106 127 59 103 129 60 104 129 65 108 131 75 114 135 71 115 139 76 120 143 75 124 150 70 127 159 74 126 154 70 126 160 75 129 159 85 132 156 77 131 161 81 134 163 84 136 164 90 139 162 89 142 169 93 145 171 92 148 178 92 154 188 100 156 186 97 159 192 85 162 207 93 161 201 87 163 208 90 165 210 94 169 212 101 163 195 106 165 193 106 168 199 100 165 200 103 169 205 107 172 205 112 173 204 99 173 214 109 174 209 102 175 216 103 176 217 107 180 219 114 180 214 112 183 221 114 185 223 120 185 218 117 188 224 121 190 226 125 194 228 129 197 231 131 199 232 134 201 233 138 205 236 143 208 238 144 209 238 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9136
@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
  9137
??9????>_????''????9????>_????''????9????>_???? @@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9138
! !
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
  9139
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  9140
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-FileBrowser'!
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9141
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9142
changesBrowserIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9143
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9144
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9145
    ^ self changesBrowser24x24Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9146
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9147
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9148
copyFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9149
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9150
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9151
    ^ self copy20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9152
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9153
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9154
cutFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9155
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9156
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9157
    ^ self cut20x20Icon2
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9158
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9159
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9160
deleteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9161
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9162
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9163
    ^ self erase20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9164
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9165
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  9166
desktopIcon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  9167
    <resource: #programImage>
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  9168
3696
5a6e79b27976 desktopicon
Claus Gittinger <cg@exept.de>
parents: 3691
diff changeset
  9169
    "/ ^ self desktop28x28Icon
3865
489db7d50e1e desktop icon
Claus Gittinger <cg@exept.de>
parents: 3860
diff changeset
  9170
    ^ self desktop24x24Icon
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  9171
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
  9172
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9173
diffIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9174
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9175
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9176
    ^ self diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9177
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9178
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9179
directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9180
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9181
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9182
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9183
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9184
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9185
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9186
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9187
     self directoryBookmarks20x20Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9188
     ImageEditor openOnClass:self andSelector:#directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9189
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9190
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9191
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9192
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9193
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9194
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9195
	constantNamed:#'GenericToolbarIconLibrary class directoryBookmarks20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9196
	ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9197
@@@@@@@@@@@@@@@@@@@@@@@@@@@@X&I"X&I"X&I"X&I"X&I"X&I"X A"X&I"X&I"X&I"B0,KB0,KB6I"@FI"X&I"X&I"X&HKW5=_W5<KX&H@X&H@@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9198
X -_W5=_W0-"X A"X A#X6M#X0A"B5=_W5=_B6I"@FH@X6M#X6M#X0@KW5=_W5<KX&H@@@@@@@@@@@@@@@-_W5=_W0,@@@@@X6M#X6M#X6M#B5=_W5=_B6L@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9199
@@A#X6M#X6M#X6LKW5=_W5<KX0@@@FM#X6M#X6M#X0-_W5=_W0-#@@@@X6M#X6M#X6M#B5=_W5=_B6L@@@A#X6M#X6M#X6LKW5=_W5<KX0@@@FM#X6M#X6M#
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9200
X0-_W5=_W0-#@@@@X6M#X6M#X6M#B5< B1=_B6L@@@A#X6M#X6M#X6LKW0-#B5<KX0@@@FM#X6M#X6M#X0,KX6M#B0-#@@@@X6M#X6M#X6M#B6M#X6M#B6L@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9201
@@A#X6M#X6M#X6M#X6M#X6M#X0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 71 169 0 71 170 0 74 172 0 78 174 0 83 177 0 100 189 0 106 193 0 107 193 0 112 196 0 118 201 0 122 205 0 128 208 0 128 209 0 132 212 0 133 212 0 137 215 0 138 215 0 141 218 0 144 220 18 78 164 19 80 169 19 81 168 20 79 165 22 138 207 23 81 167 23 91 173 23 138 207 26 92 173 39 141 229 41 141 229 42 134 204 43 135 204 43 142 209 48 144 209 51 192 255 59 166 231 59 195 255 61 166 231 61 166 232 66 198 255 72 171 234 73 200 255 74 172 234 75 172 234 82 204 255 84 176 236 87 177 237 88 178 238 89 207 255 97 209 255 98 182 239 100 182 239 101 183 240 104 213 255 109 187 241 111 156 203 112 216 255 113 188 243 121 191 244 121 221 255 123 193 245 125 194 245 126 221 255 131 196 246 135 197 247 136 198 248 136 226 255 140 200 248 140 228 255 144 202 250 146 203 250 148 203 250 149 232 255 150 233 255 151 189 220 153 205 252 153 206 252 154 207 252 156 194 223 159 209 253 160 237 255 162 209 253 163 238 255 168 241 255 173 243 255 174 243 255 181 201 223 182 206 226 183 248 255 186 249 255 191 251 255 195 252 255 201 220 238 201 255 255 202 216 231 210 226 242 211 229 247 255 0 0 226 226 111]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@A?@@A?@G=?@G=?@O??@_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9202
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9203
3078
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  9204
directoryBookmarksIcon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  9205
    <resource: #programImage>
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  9206
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  9207
    ^ self directoryBookmarks20x20Icon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  9208
!
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  9209
3063
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  9210
directoryUpIcon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  9211
    <resource: #programImage>
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  9212
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  9213
    ^ self upArrow20x20Icon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  9214
!
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  9215
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9216
documentsIcon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9217
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9218
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9219
    ^ self documents26x26Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9220
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9221
    "Created: / 25-10-2010 / 09:21:23 / cg"
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9222
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9223
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9224
dosShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9225
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9226
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9227
    ^ self dosWithoutText20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9228
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9229
3625
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  9230
editApplicationIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  9231
    <resource: #programImage>
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  9232
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  9233
    ^ self editIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  9234
!
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
  9235
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9236
editFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9237
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9238
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9239
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9240
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9241
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9242
editIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9243
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9244
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9245
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9246
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9247
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  9248
encodingLockIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  9249
    <resource: #programImage>
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  9250
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  9251
    ^ self padLockRedMiniIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  9252
!
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  9253
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9254
fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9255
    "This resource specification was automatically generated
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9256
     by the ImageEditor of ST/X."
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9257
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9258
    "Do not manually edit this!! If it is corrupted,
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9259
     the ImageEditor may not be able to read the specification."
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9260
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9261
    "
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9262
     self fileContents14x17Icon inspect
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9263
     ImageEditor openOnClass:self andSelector:#fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9264
     Icon flushCachedIcons
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9265
    "
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9266
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9267
    <resource: #image>
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9268
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9269
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9270
	constantNamed:'GenericToolbarIconLibrary class fileContents14x17Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9271
	ifAbsentPut:[(Depth8Image new) width: 14; height: 17; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9272
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAPTEAPTEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPTE
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9273
APTEAPTE@@@@@@T@@@@E@@TEAPT@@@@@APTEAPTEAPTEAP@@@@@E@@T@AP@@@@TE@@@@@@TEAPTEAPTEAPT@@@@@AP@@@@T@@@@EAP@@@@@EAPTEAPTEAPTE
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9274
@@@@@@T@AP@E@@@@APT@@@@@APTEAPTEAPTEAP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 14; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a') ; yourself); yourself]
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9275
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9276
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9277
fileContentsIcon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9278
    <resource: #programImage>
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9279
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9280
    ^ self fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9281
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  9282
4151
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9283
fileImageContents14x17Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9284
    "This resource specification was automatically generated
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9285
     by the ImageEditor of ST/X."
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9286
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9287
    "Do not manually edit this!! If it is corrupted,
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9288
     the ImageEditor may not be able to read the specification."
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9289
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9290
    "
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9291
     self fileImageContents14x17Icon inspect
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9292
     ImageEditor openOnClass:self andSelector:#fileImageContents14x17Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9293
     Icon flushCachedIcons
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9294
    "
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9295
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9296
    <resource: #image>
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9297
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9298
    ^Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9299
        constantNamed:'GenericToolbarIconLibrary class fileImageContents14x17Icon'
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9300
        ifAbsentPut:[(Depth8Image new) width: 14; height: 17; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9301
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ HB@ HB@@@@@@HA0\GA0\GA0 H@@@@@@\GA0\IA0$GA0 @@@@@A0\GA0\GA0\GB@@@@@@GA0\G
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9302
A0\GA0\H@@@@@@\GA0$GA0\GA0 @@@@@A0\GA0\GA0\GB@@@@@@HA0\GA0\IA0\H@@@@@@\GA0\GA0\GA0 @@@@@B@\GA0XGA0 HB@@@@@@HB@ HA  HB@ H
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9303
@@@@@@ HB@ FB@ HB@ @@@@@BP$IBPXIBP$IBP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255 133 60 36 0 206 0 174 218 230 0 137 0]; mask:((Depth1Image new) width: 14; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a') ; yourself); yourself]
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9304
!
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9305
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9306
fileImageContentsIcon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9307
    <resource: #programImage>
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9308
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9309
    ^ self fileImageContents14x17Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9310
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9311
    "Created: / 01-06-2010 / 17:35:40 / cg"
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9312
!
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
  9313
3098
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  9314
fileInIcon
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  9315
    <resource: #programImage>
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  9316
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  9317
    ^ self fileIn20x20Icon3
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  9318
!
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  9319
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  9320
fitImageSizeToViewIcon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  9321
    <resource: #programImage>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  9322
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  9323
    ^ self fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  9324
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  9325
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9326
hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9327
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9328
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9329
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9330
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9331
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9332
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9333
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9334
     self hexToggle14x17Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9335
     ImageEditor openOnClass:self andSelector:#hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9336
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9337
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9338
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9339
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9340
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9341
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9342
	constantNamed:#'GenericToolbarIconLibrary class hexToggle14x17Icon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9343
	ifAbsentPut:[(Depth8Image new) width: 14; height: 17; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9344
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAP@E@@TEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPT@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9345
AP@EAPTE@@@@@@T@@@@E@@TEAPT@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@T@AP@E@@T@APT@@@@@AP@@@@T@@@@EAP@@@@@E@@T@AP@E@@TE
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9346
@@@@@@T@AP@E@@@@APT@@@@@APTEAPTEAPTEAP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 14; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9347
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9348
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9349
hexToggleIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9350
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9351
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9352
    ^ self hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9353
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9354
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9355
historyBackIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9356
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9357
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9358
    ^ self leftArrow20x20Icon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9359
!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9360
4334
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9361
historyBackInGlobalListIcon
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9362
    <resource: #programImage>
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9363
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9364
    ^ self left2Arrow24x24Icon
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9365
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9366
    "Created: / 02-07-2011 / 18:41:50 / cg"
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9367
!
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
  9368
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9369
historyForwardIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9370
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9371
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9372
    ^ self rightArrow20x20Icon
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  9373
!
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  9374
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9375
historyIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9376
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9377
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9378
    ^ self history20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9379
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9380
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9381
homeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9382
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9383
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9384
    ^ self home28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9385
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9386
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9387
homeIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9388
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9389
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9390
    ^ self home22x22Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9391
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9392
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  9393
makeIcon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  9394
    <resource: #programImage>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  9395
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  9396
    ^ self make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  9397
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  9398
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  9399
newDirectoryIcon
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  9400
    <resource: #programImage>
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  9401
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  9402
    ^ self newDirectory20x20Icon
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  9403
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  9404
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9405
newFileIcon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9406
    <resource: #programImage>
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9407
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9408
    ^ self fileNew20x20Icon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9409
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9410
    "Created: / 31-03-2011 / 10:57:39 / cg"
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9411
!
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  9412
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9413
pasteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9414
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9415
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9416
    ^ self paste20x20Icon
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9417
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9418
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9419
printerIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9420
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9421
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9422
    ^ self printer22x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9423
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9424
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  9425
reloadIcon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  9426
    <resource: #programImage>
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  9427
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  9428
    ^ self reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  9429
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
  9430
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9431
reloadTextFromFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9432
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9433
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9434
    ^ self reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9435
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9436
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9437
saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9438
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9439
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9440
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9441
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9442
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9443
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9444
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9445
     self saveAsToFile32x22Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9446
     ImageEditor openOnClass:self andSelector:#saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9447
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9448
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9449
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9450
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9451
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9452
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9453
	constantNamed:#'GenericToolbarIconLibrary class saveAsToFile32x22Icon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9454
	ifAbsentPut:[(Depth4Image new) width: 32; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9455
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3@@@@@@@@@@@@@@@CQDMDP0@@@@@EUUAP@@@@@3L3L3L@@B@AAUUPD@@@@@MDP4QC@@@"@P
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9456
UUTA@@@@@CL3L3L"H"H"DEUU@P@@@@@4QCQDL"H"H"@@@@D@@@@@L3L3L2H"H"HQDQDQ@@@@@CQDMDP0@@H DP@@@P@@@@@3L3L3L@@B@AD@UPD@@@@@MDP4
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9457
QC@@@@@Q@ETA@@@@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9458
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 32; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@C''RX\9BT)IPL%K"S@)L $I13FG\@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9459
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9460
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9461
saveImageToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9462
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9463
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9464
    ^ self saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9465
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9466
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9467
saveTextToFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9468
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9469
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9470
    ^ self saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9471
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  9472
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9473
searchFileIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9474
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9475
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9476
    ^ self search20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9477
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9478
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9479
searchIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9480
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9481
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  9482
    ^ self search20x20Icon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9483
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9484
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9485
shellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9486
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9487
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9488
    OperatingSystem isMSDOSlike ifTrue:[
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9489
	^ self dosShellTerminalIcon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9490
    ].
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9491
    ^ self unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9492
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9493
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9494
stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9495
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9496
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9497
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9498
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9499
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9500
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9501
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9502
     self stxHomeIcon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9503
     ImageEditor openOnClass:self andSelector:#stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9504
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9505
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9506
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9507
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9508
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9509
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9510
	constantNamed:#'GenericToolbarIconLibrary class stxHomeIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9511
	ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(nil )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9512
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQICP!!DP@@@@@@DQICL4HQD@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9513
DQICL3MBDQ@@@@DQIFX3L3P!!DP@@DQICY#L3L6HQD@D"ICM&L3M&M@@A@RH$L3Y#M&L4@@D@@@P3L6L6L3P@@@@@ACL3Y&L3M@@@@@@DL3L6L3L4@@@@@@P3
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9514
L6X3L3P@@@@@ACL6L6L3M@@@@@@DM&L3M#L4@@@@@@Q&L3L3X3P@@@@@A&YDQDQ$Q@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192 100 128 255 0 200 48]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9515
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9516
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9517
unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9518
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9519
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  9520
    ^ self shellWithoutText20x20Icon
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9521
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9522
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9523
viewDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9524
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9525
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9526
    ^ self viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9527
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9528
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9529
viewNoDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9530
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9531
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  9532
    ^ self viewNoDetails16x16Icon
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9533
! !
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  9534
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9535
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-ImageEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9536
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9537
loadImageFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9538
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9539
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9540
    ^ self loadFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9541
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9542
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9543
newImageIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9544
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9545
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9546
    ^ self newImage24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9547
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9548
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  9549
saveImageAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  9550
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  9551
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  9552
    ^ self saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  9553
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  9554
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9555
saveImageAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9556
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9557
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9558
    ^ self saveAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9559
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9560
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9561
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-Launcher'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9562
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9563
displayScreenIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9564
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9565
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9566
    ^ self displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9567
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9568
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9569
editorIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9570
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9571
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9572
    ^ self editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9573
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9574
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9575
fontIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9576
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9577
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9578
    ^ self font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9579
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9580
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9581
garbageCollectIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9582
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9583
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9584
    ^ self garbageCollect24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9585
    "/ ^ self garbageCollect28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9586
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9587
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9588
helpIcon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9589
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9590
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9591
    ^ self help28x28Icon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9592
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9593
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9594
helpIcon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9595
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9596
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9597
    ^ self help28x28Icon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9598
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9599
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9600
helpIcon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9601
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9602
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9603
    ^ self help28x28Icon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9604
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9605
4230
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  9606
imageEditorIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  9607
    <resource:#programImage>
4230
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  9608
    ^ self imageEditor24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  9609
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  9610
    "Created: / 31-03-2011 / 11:07:30 / cg"
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  9611
!
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
  9612
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9613
keyboardMappingIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9614
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9615
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9616
    ^ self keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9617
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9618
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9619
languagesIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9620
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9621
3719
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
  9622
    "/ ^ self languages20x12Icon
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
  9623
    ^ self languages22x22Icon
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9624
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9625
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9626
memoryIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9627
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9628
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9629
    ^ self memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9630
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  9631
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  9632
projectBuilderIcon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  9633
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  9634
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  9635
"/    ^ self packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  9636
    ^ self packageIn24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  9637
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
  9638
    "Modified: / 01-02-2012 / 15:09:43 / cg"
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  9639
!
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
  9640
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9641
saveImageIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9642
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9643
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9644
    ^ self saveImage24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9645
    "/ ^ self saveImage28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9646
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9647
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9648
startChangesBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9649
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9650
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9651
    ^ self changesBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9652
    "/ ^ self changesBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9653
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9654
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9655
startFileBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9656
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9657
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9658
    ^ self fileBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9659
    "/ ^ self fileBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9660
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9661
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9662
startImageEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9663
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9664
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9665
    ^ self imageEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9666
    "/ ^ self imageEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9667
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9668
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9669
startMenuEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9670
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9671
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9672
    ^ self menuEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9673
    "/ ^ self menuEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9674
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9675
3092
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  9676
startNewFileBrowserIcon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  9677
    <resource: #programImage>
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  9678
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  9679
    ^ self newFileBrowser24x24Icon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  9680
!
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  9681
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9682
startNewSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9683
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9684
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9685
    ^ self newSystemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9686
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9687
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9688
startSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9689
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9690
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9691
    ^ self systemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9692
"/    ^ SystemBrowser defaultIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9693
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9694
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9695
startSystemBrowserOnHistoryClassIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9696
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9697
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9698
    ^ self systemBrowserClassHistory28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9699
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9700
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9701
startUIPainterIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9702
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9703
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9704
    ^ self uiPainter24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9705
    "/ ^ self uiPainter28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9706
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9707
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9708
startWorkspaceIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9709
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9710
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9711
    ^ self workspace24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9712
    "/ ^ self workspace28x28Icon
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  9713
!
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  9714
3171
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  9715
stxHelpIcon
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  9716
    <resource: #programImage>
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  9717
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  9718
    ^ self helpIcon2
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  9719
!
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  9720
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  9721
stxSettings24x24Icon
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  9722
    <resource: #programImage>
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  9723
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  9724
    ^ self stxSettings24x24Icon1
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9725
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9726
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9727
stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9728
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9729
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9730
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9731
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9732
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9733
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9734
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9735
     self stxSettings24x24Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9736
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9737
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9738
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9739
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9740
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9741
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9742
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9743
	constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9744
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9745
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@@@@@@@@@@@@@GA0@@@@@@@@@@@EAWA0BH"H"H"H"H@EAP@@BH"I*H"H"H@EAP@@BH"I&H"H
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9746
"X@EAP@@BH"I&H"H&H@EAP@@BH"H&("I"H@EAP@@BH"H"X"X"H@EAP@@BH"H"Z&H"H@EAP@@BH"H"I"H"H@E@C]0BH"H"Y"H"H@E@@@@BH"H&H&H"H@EAP\@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9747
BH")"H"("H@EAP\@BH*X"H"("H@EAP\@BI&H"H"I"H@E@CM0BH"H"H"H"H@E@C]0@@@@@@@@@@@E@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9748
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100 25 25 25 0 204 51 0 168 39]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9749
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9750
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9751
stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9752
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9753
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9754
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9755
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9756
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9757
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9758
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9759
     self stxSettings24x24Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9760
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9761
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9762
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9763
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9764
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9765
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9766
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9767
	constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9768
	ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9769
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@EAP@@@@@@@@@@@@@EAPB;.;.;.;.;,FA%APB;.;.;.;.;,FA @@B;.1F;.;.;,FA @@B;.1F;.;
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9770
,[,FA @@B;.1F;.;F;,FA @@B;.;D[.1.;,FA @@B;.;,[,[.;,FA @@B;.;,QF;.;,FA @@B;.;.1.;.;,F@IUPB;.;,Q.;.;,F@@@@B;.;F;F;.;,FA T@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9771
B;,Q.;,[.;,FA T@B;D[.;,[.;,FA T@B1F;.;.1.;,F@I%PB;.;.;.;.;,F@IUPB;.;.;.;.;,F@IUP@@@@@@@@@@@@@IUP@@@@@@@@@@@@@I%P@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9772
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 127 127 0 168 39 0 204 51 25 25 25 100 100 100 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255 184 231 231]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@') ; yourself); yourself]
3567
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  9773
!
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  9774
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  9775
systemBrowserIcon
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  9776
    <resource: #programImage>
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  9777
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
  9778
    ^ self systemBrowser24x24Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9779
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  9780
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9781
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-MenuEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9782
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9783
copyMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9784
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9785
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9786
    ^ self copyMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9787
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9788
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9789
cutMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9790
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9791
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9792
    ^ self cutMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9793
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9794
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9795
newMenuIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9796
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9797
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9798
    ^ self newMenu24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9799
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9800
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9801
pasteMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9802
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9803
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9804
    ^ self pasteMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9805
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  9806
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9807
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser'!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9808
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9809
addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9810
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9811
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9812
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9813
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9814
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9815
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9816
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9817
     self addBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9818
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9819
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9820
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9821
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9822
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9823
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9824
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9825
	constantNamed:#'GenericToolbarIconLibrary class addBreakPointIcon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9826
	ifAbsentPut:[(Depth2Image new) width: 12; height: 21; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'****/??>/:+>/%V>.TA..P@..P@..@@./ B>/:+>/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>****') ; colorMapFromArray:#[255 0 0 63 63 63 0 0 0 127 127 127]; mask:((Depth1Image new) width: 12; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9827
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9828
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9829
addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9830
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9831
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9832
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9833
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9834
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9835
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9836
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9837
     self addBuffer13x11Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9838
     ImageEditor openOnClass:self andSelector:#addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9839
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9840
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9841
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9842
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9843
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9844
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9845
	constantNamed:#'GenericToolbarIconLibrary class addBuffer13x11Icon1'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9846
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@;.;.;.; @N???/??8@C.;.;.;.@@Y&Y&Y&XP@FY&Y&Y&D@A&Y&Y&Y!!@@Y&Y&Y&XP@FY&Y&Y&D@@QDQDQDQ@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9847
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9848
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9849
addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9850
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9851
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9852
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9853
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9854
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9855
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9856
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9857
     self addBuffer16x16Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9858
     ImageEditor openOnClass:self andSelector:#addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9859
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9860
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9861
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9862
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9863
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9864
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9865
	constantNamed:#'GenericToolbarIconLibrary class addBuffer16x16Icon2'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9866
	ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9867
@@@@@@@@@@@ADQDPDQDQ@@D3L>@SL38@@SL38AL3O @@@@@@@@@@@@L3L3L3L3L@@3L3L3L3L0@CL3L6L3X3A L3L3M#M#M @3L3L3X6M @@@@@@@FY @@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9868
@@Y&Y&Y&@@@@@@Y&Y&@@@@@@A Y&@@@@@@A Y&A @@@@A @F@@Xb') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 192 192 192 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??;??/?>??;??/?>??;????>??;?? G?@C @U@BR@QDb') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9869
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9870
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9871
padLockBlackMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9872
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9873
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9874
    ^ self padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9875
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9876
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9877
padLockBlueMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9878
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9879
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9880
    ^ self padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9881
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9882
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9883
padLockGrayMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9884
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9885
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9886
    ^ self padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9887
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9888
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9889
padLockGreenMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9890
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9891
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9892
    ^ self padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9893
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9894
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9895
padLockRedMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9896
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9897
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9898
    ^ self padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9899
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  9900
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9901
removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9902
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9903
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9904
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9905
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9906
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9907
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9908
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9909
     self removeBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9910
     ImageEditor openOnClass:self andSelector:#removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9911
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9912
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9913
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9914
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9915
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9916
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9917
	constantNamed:#'GenericToolbarIconLibrary class removeBreakPointIcon2'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9918
	ifAbsentPut:[(Depth2Image new) width: 12; height: 21; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'****/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>/:+>/%V>.TA..P@..P@..@@./ B>/:+>/??>****') ; colorMapFromArray:#[0 255 0 63 63 63 0 0 0 127 127 127]; mask:((Depth1Image new) width: 12; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9919
! !
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  9920
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9921
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser-classIcons'!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9922
4474
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9923
abstractClassIcon
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9924
    "This resource specification was automatically generated
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9925
     by the ImageEditor of ST/X."
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9926
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9927
    "Do not manually edit this!! If it is corrupted,
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9928
     the ImageEditor may not be able to read the specification."
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9929
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9930
    "
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9931
     self abstractClassIcon inspect
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9932
     ImageEditor openOnClass:self andSelector:#abstractClassIcon
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9933
     Icon flushCachedIcons
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9934
    "
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9935
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9936
    <resource: #image>
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9937
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9938
    ^Icon
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9939
        constantNamed:'GenericToolbarIconLibrary abstractClassIcon'
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9940
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@EBIA@@@@@BH"H @@@AH"H"H!!@@ABH#L"I@@@H"L@L"H@@BH#@CH"@@ABH#L"I@@@D"H"H"D@@@@"H"H@@@@@EBIA@@@b') ; colorMapFromArray:#[214 177 82 229 207 148 204 159 42 226 201 136 207 165 55]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O0A? O?@?<C30OO@?<C?0G>@O0@@a') ; yourself); yourself]
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9941
!
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
  9942
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  9943
applicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  9944
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  9945
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  9946
    ^ self smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  9947
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  9948
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9949
autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9950
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9951
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9952
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9953
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9954
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9955
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9956
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9957
     self autoloadedClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9958
     ImageEditor openOnClass:self andSelector:#autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9959
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9960
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9961
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9962
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9963
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9964
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9965
	constantNamed:'GenericToolbarIconLibrary class autoloadedClassBrowserIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  9966
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@DBH"HA@@@A@"H"@P@@@PH"H D@@@DP@@@A@@@ADQDQDP@@@Q@@@@D@@@DP@BHA@@@@D@@"@P@@@@@@@@@@@b') ; colorMapFromArray:#[127 127 127 192 192 192 224 224 224]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?A?<G?0_?A?<G?0_?A?<G?0_?@?<@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9967
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9968
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9969
containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9970
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9971
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9972
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9973
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9974
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9975
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9976
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9977
     self containerClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9978
     ImageEditor openOnClass:self andSelector:#containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9979
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9980
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9981
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9982
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9983
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9984
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9985
	constantNamed:#'GenericToolbarIconLibrary class containerClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  9986
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'B;.0@K.;@@.;,@B;.0@K,@@@@K,@B;@@@@B;@@.0@@@@.0@K,@@@@K,@B;@@@@B;@@.0@@@@.0@K,@@@@K,@B;.0@K.;@@.;,@B;.0@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'^OA8<F@0XCA LF@0XCA LF@0^OA8<@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9987
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  9988
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9989
dart13x11Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9990
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9991
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9992
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9993
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9994
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9995
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9996
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9997
     self dart13x11Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9998
     ImageEditor openOnClass:self andSelector:#dart13x11Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9999
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10000
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10001
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10002
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10003
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10004
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10005
        constantNamed:'GenericToolbarIconLibrary dart13x11Icon'
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10006
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@H @@@@@@@BH @@@@@@H2H@@@@HH!!H2@@@@@BH!!H0@@@@@BH!!H @@@@@@@BH @@@@@@@BI@@@@@@@@DQ@@@@@@@@DP@AP@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 57 93 0 115 187 127 185 221 238 191 43]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'F@@\@C0@?@C<@G8@A0@C @G@@L@@H@@a') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10007
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10008
4445
985ce436a0aa added: #dartClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4440
diff changeset
 10009
dartClassBrowserIcon
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10010
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10011
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10012
    ^ self dart12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 10013
"/    ^ self dart13x11Icon
4445
985ce436a0aa added: #dartClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4440
diff changeset
 10014
!
985ce436a0aa added: #dartClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4440
diff changeset
 10015
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10016
enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10017
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10018
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10019
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10020
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10021
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10022
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10023
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10024
     self enumTypeBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10025
     ImageEditor openOnClass:self andSelector:#enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10026
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10027
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10028
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10029
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10030
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10031
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10032
	constantNamed:#'GenericToolbarIconLibrary class enumTypeBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10033
	ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'(@@@NJ@@@C" @@@@(@@@@J(@J BB@B@@  @ NJ@@@@B @@@@(@@@@J@@@@@b') ; colorMapFromArray:#[0 0 0 127 127 127 255 0 0 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@F60[[@@@@@@@@@@@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10034
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10035
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10036
errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10037
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10038
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10039
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10040
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10041
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10042
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10043
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10044
     self errorClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10045
     ImageEditor openOnClass:self andSelector:#errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10046
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10047
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10048
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10049
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10050
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10051
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10052
	constantNamed:#'GenericToolbarIconLibrary class errorClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10053
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10054
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10055
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10056
exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10057
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10058
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10059
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10060
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10061
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10062
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10063
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10064
     self exceptionClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10065
     ImageEditor openOnClass:self andSelector:#exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10066
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10067
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10068
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10069
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10070
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10071
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10072
	constantNamed:#'GenericToolbarIconLibrary class exceptionClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10073
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 110 110 110]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10074
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10075
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10076
guiApplicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10077
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10078
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10079
    ^ self smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10080
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10081
4447
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 10082
javascriptClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 10083
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 10084
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 10085
    ^ self javascript12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 10086
!
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 10087
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10088
libraryDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10089
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10090
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10091
    ^ self smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10092
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10093
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10094
nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10095
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10096
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10097
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10098
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10099
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10100
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10101
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10102
     self nameSpaceBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10103
     ImageEditor openOnClass:self andSelector:#nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10104
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10105
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10106
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10107
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10108
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10109
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10110
	constantNamed:#'GenericToolbarIconLibrary class nameSpaceBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10111
	ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@AO8C?DS:"?1D:(/<QN*J?DS*"/1D:(+<QN*J/DR*"+1AJ(*!!@DJJA@@T@E@@@UT@@@a') ; colorMapFromArray:#[0 0 0 190 190 0 194 194 194 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G#1??7??_?=??7??_?=??7??O?8_?@?8@>@b') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10112
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10113
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10114
notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10115
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10116
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10117
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10118
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10119
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10120
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10121
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10122
     self notificationClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10123
     ImageEditor openOnClass:self andSelector:#notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10124
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10125
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10126
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10127
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10128
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10129
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10130
	constantNamed:#'GenericToolbarIconLibrary class notificationClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10131
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 0 127 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10132
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10133
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10134
queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10135
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10136
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10137
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10138
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10139
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10140
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10141
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10142
     self queryClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10143
     ImageEditor openOnClass:self andSelector:#queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10144
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10145
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10146
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10147
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10148
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10149
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10150
	constantNamed:#'GenericToolbarIconLibrary class queryClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10151
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 61 173 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10152
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10153
4176
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10154
sharedPoolBrowserIcon
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10155
    "This resource specification was automatically generated
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10156
     by the ImageEditor of ST/X."
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10157
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10158
    "Do not manually edit this!! If it is corrupted,
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10159
     the ImageEditor may not be able to read the specification."
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10160
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10161
    "
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10162
     self sharedPoolBrowserIcon inspect
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10163
     ImageEditor openOnClass:self andSelector:#sharedPoolBrowserIcon
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10164
     Icon flushCachedIcons
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10165
    "
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10166
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10167
    <resource: #image>
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10168
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10169
    ^Icon
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10170
        constantNamed:'GenericToolbarIconLibrary class sharedPoolBrowserIcon'
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10171
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@H"H"H"H @BH"H"H"H@@"H"H"H"@@H"H"H"H @BH"H"H"H@@"H"H"H"@@H"H"H"H @BH"H"H"H@@"H"H"H"@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 0 127 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?<G?0_?A?<G?0_?A?<G?0_?@@@@@a') ; yourself); yourself]
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10172
!
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 10173
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10174
smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10175
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10176
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10177
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10178
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10179
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10180
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10181
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10182
     self smallGrayPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10183
     ImageEditor openOnClass:self andSelector:#smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10184
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10185
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10186
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10187
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10188
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10189
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10190
	constantNamed:'GenericToolbarIconLibrary class smallGrayPackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10191
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b') ; colorMapFromArray:#[0 0 0 132 0 132 153 153 153]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10192
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10193
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10194
smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10195
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10196
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10197
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10198
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10199
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10200
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10201
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10202
     self smallGreenPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10203
     ImageEditor openOnClass:self andSelector:#smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10204
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10205
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10206
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10207
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10208
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10209
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10210
	constantNamed:'GenericToolbarIconLibrary class smallGreenPackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10211
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@BH @@H"@@H H @"@ @BH@H"H@H@@BH"H"H"@@@@D!!DPH@@@@@H@@P@@@@DRDPD@@@@AD!!DA@@@@@QHQ@P@@@@DRDP@@@@@@@ @@@@@b') ; colorMapFromArray:#[0 0 0 0 255 0 132 0 132]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10212
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10213
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10214
smallOrangePackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10215
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10216
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10217
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10218
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10219
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10220
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10221
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10222
     self smallOrangePackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10223
     ImageEditor openOnClass:self andSelector:#smallOrangePackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10224
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10225
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10226
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10227
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10228
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10229
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10230
	constantNamed:'GenericToolbarIconLibrary class smallOrangePackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10231
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b') ; colorMapFromArray:#[0 0 0 132 0 132 255 139 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10232
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10233
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10234
smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10235
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10236
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10237
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10238
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10239
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10240
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10241
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10242
     self smallYellowPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10243
     ImageEditor openOnClass:self andSelector:#smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10244
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10245
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10246
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10247
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10248
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10249
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10250
	constantNamed:'GenericToolbarIconLibrary class smallYellowPackageIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10251
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b') ; colorMapFromArray:#[0 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a') ; yourself); yourself]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10252
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10253
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10254
startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10255
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10256
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10257
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10258
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10259
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10260
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10261
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10262
     self startableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10263
     ImageEditor openOnClass:self andSelector:#startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10264
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10265
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10266
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10267
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10268
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10269
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10270
	constantNamed:#'GenericToolbarIconLibrary class startableClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10271
	ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'**J*NJ*"*#"*!!J(@*!!T*@J(DJ B*DR(@*!!T*NJ(*J B*O2(@*+.*@J*** @b') ; colorMapFromArray:#[0 0 0 127 127 127 255 0 0 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ @B@@\@C8@O @>@C8@H @>@A0@G@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10272
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10273
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10274
testCaseClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10275
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10276
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10277
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10278
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10279
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10280
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10281
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10282
     self testCaseClassIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10283
     ImageEditor openOnClass:self andSelector:#testCaseClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10284
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10285
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10286
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10287
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10288
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10289
    ^Icon
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10290
	constantNamed:'GenericToolbarIconLibrary class testCaseClassIcon'
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
 10291
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@H @@@@@@@"D@@@@@@@HP@@@@@ @"D@@@@@H HP@@@@@AH"D@@@@@@AHP@@@@@@@A@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 56 142 51]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@C@@\@A AN@F0@_@@8@A@@@@@@a') ; yourself); yourself]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10292
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 10293
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10294
testCaseFailedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10295
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10296
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10297
    ^ self redThumbDownSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10298
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10299
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10300
testCasePassedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10301
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10302
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10303
    ^ self greenThumbUpSmallIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10304
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 10305
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10306
visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10307
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10308
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10309
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10310
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10311
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10312
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10313
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10314
     self visualStartableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10315
     ImageEditor openOnClass:self andSelector:#visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10316
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10317
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10318
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10319
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10320
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10321
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10322
	constantNamed:#'GenericToolbarIconLibrary class visualStartableClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10323
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@P@@@@9&XPE&XP@NY!!C E&D@C&DN; E!!@@9!!@N@AXP@NXP8N@VD@C&DN; E!!@@9!!A&XAXP@NXPY&@VD@C1DVI!!DQ@@@@D"HP@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10324
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10325
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10326
warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10327
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10328
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10329
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10330
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10331
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10332
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10333
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10334
     self warningClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10335
     ImageEditor openOnClass:self andSelector:#warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10336
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10337
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10338
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10339
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10340
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10341
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10342
	constantNamed:#'GenericToolbarIconLibrary class warningClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10343
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 127 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10344
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10345
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10346
webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10347
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10348
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10349
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10350
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10351
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10352
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10353
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10354
     self webServiceClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10355
     ImageEditor openOnClass:self andSelector:#webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10356
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10357
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10358
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10359
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10360
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10361
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10362
	constantNamed:#'GenericToolbarIconLibrary class webServiceClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10363
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@ADQD@@@@@DQDQD@@@@QDQDQD@@ACMDP3MD@@P3MDP3M@@DL3QCL3P@ADL4P3L4@@QCMDL3Q@@@QDQCMD@@@@QDQDP@@@@@QDQ@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C8@_0C? _?A?<G?0_?A?<C? G<@O @@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10364
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10365
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10366
windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10367
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10368
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10369
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10370
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10371
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10372
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10373
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10374
     self windowClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10375
     ImageEditor openOnClass:self andSelector:#windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10376
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10377
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10378
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10379
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10380
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10381
    ^Icon
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10382
	constantNamed:#'GenericToolbarIconLibrary class windowClassBrowserIcon'
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 10383
	ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@;.;.;.8P@N??????D@C/?????1@@;?????<P@N??????D@C/?????1@@;?????<P@N??????D@@QDQDQDQ@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10384
! !
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 10385
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10386
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser-java'!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10387
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10388
javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10389
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10390
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10391
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10392
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10393
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10394
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10395
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10396
     self javaClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10397
     ImageEditor openOnClass:self andSelector:#javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10398
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10399
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10400
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10401
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10402
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10403
    ^Icon
4533
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 10404
        constantNamed:'GenericToolbarIconLibrary javaClassBrowserIcon'
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 10405
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 10406
VU%YVU\OF@4YC5]YVU%YVU%YVP$MO4YFQ#<ABU%YVU%YVP$[R5YTUUQRQ0(IVU%YVU\MRUAXVE!!XVD=H@U]YVU$GPEEXVEMMS%!!LR$@PVU%YASYBVDMAPTEE
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 10407
QDP>AU%YVPDVI5 (EALSEA\\H@1YVU$EGQ)XJQ8"H!!H.C"PEVU%YDBD3M5 /I!!=XOR4*@E%YVU\JLC(4VE!!XMS02B%]YVU%YDP,#NC$;NS 1@!!EYVU%YVU$Q
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 10408
ERT+KB,%EQEYVU%YVU%YVU\F@0PCBE]YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVP@@@@@@@@@@@@@@@@@@
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 10409
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[108 168 129 51 130 77 54 131 79 64 137 88 66 139 90 70 143 94 84 152 106 90 155 112 92 156 113 130 179 146 36 118 62 46 124 70 51 129 75 57 134 80 88 156 109 93 158 113 99 162 119 129 178 144 162 201 174 45 124 68 46 125 69 47 125 70 48 126 70 51 129 73 75 146 96 74 144 94 119 174 135 50 128 71 54 132 74 59 135 79 63 137 82 142 189 154 62 136 79 62 136 80 62 135 80 70 142 87 71 143 88 82 150 98 107 167 122 143 190 154 195 221 201 226 239 229 82 150 96 86 154 100 86 153 100 93 156 106 171 207 179 188 216 194 84 151 97 87 153 100 88 153 100 94 156 106 218 234 221 230 241 232 82 150 94 241 247 242 96 160 105 124 178 132 121 174 129 133 184 140 140 188 147 240 247 241 89 153 97 104 164 111 97 160 103 96 158 102 158 198 161 220 234 221 103 162 106 109 166 112 119 174 120 128 179 128 123 177 122 121 174 119 135 184 133 129 179 125 225 239 224 145 190 140 179 210 176 188 217 185 190 218 187 159 199 154 160 199 155 187 216 183 194 220 191 198 222 195 176 208 171 201 208 199 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?0?>A?0C>@@@@@@@@@b') ; yourself); yourself]
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10410
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10411
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10412
javaExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10413
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10414
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10415
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10416
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10417
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10418
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10419
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10420
     self javaExceptionBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10421
     ImageEditor openOnClass:self andSelector:#javaExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10422
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10423
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10424
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10425
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10426
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10427
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10428
	constantNamed:'GenericToolbarIconLibrary class javaExceptionBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10429
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10430
D!!HRD!!HC@@DRD!!HRD!!HRD!!HRD!!HR@0@AD!!HRD!!HRD!!HRD!!HRD L@@QHRA $IA!!HRD!!HRD!!HC@@DRD $EAP$RD!!HRD!!HR@0@AD!!HIAPTID!!HRD!!HRD L@@QHR
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10431
B ,KB!!HRD!!HR@0HB@@HRD  PD@ RD!!HRD LA@@HRD!!HLDQDLD!!HRD!!HRD!!HRD!!HRA0<OA1HRD!!HRD!!HRD!!HRD!!HNC!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HR
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10432
D!!HRD!!HRA $IA!!HRD!!HRD!!HRD!!HRD $MA@$RD!!HRD!!HRD!!HRD!!HNCPPND!!HRD!!HRD!!HRD!!HRA 8NA!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD @@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10433
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[40 98 150 81 128 170 110 150 185 194 211 226 255 223 95 255 234 145 228 221 192 218 204 156 184 149 37 190 156 40 188 153 39 255 226 134 180 143 35 255 223 127 170 130 30 207 167 62 254 215 119 254 207 108 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A0@G@@\<A30GO@\<G30^O@@<@A @@@@<@C0@O@@<@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10434
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10435
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10436
javaPrivateClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10437
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10438
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10439
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10440
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10441
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10442
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10443
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10444
     self javaPrivateClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10445
     ImageEditor openOnClass:self andSelector:#javaPrivateClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10446
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10447
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10448
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10449
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10450
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10451
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10452
	constantNamed:'GenericToolbarIconLibrary class javaPrivateClassBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10453
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10454
XVE!!XQHWHAX!!E1I!!XVE!!XVE!!XQ@VPD]GQ4@JDFE!!XVE!!XQ@$SE]UU%USRALPXVE!!XQHVR%E XFA XEAIB!!I!!XVDNPUI XEQNS6AMR4DXXVE!!CC%CXDQBP$IF
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10455
QTT?CFE!!XP(^K6@1GA,[GA<%JQU!!XVDLI"I L"\+J1$4F" QXVE!!FB(7N&@5K%)ZV%)ZV%)!!XRLSM#48XFAYWE1\WE1YXVE!!C1P,N30>V51^W%9\V6E!!XVDO
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10456
GR43L@HGA TFA0I!!XVE!!XQHMB0$CW54@@E<AXVE!!XVE!!XVE!!AE!!XVE!!XAFE!!XVE!!XVE!!XP HB@ HB@!!!!XVE!!XVE!!XVE!!XVE!!XVE!!XP@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10457
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[231 96 97 200 41 48 200 48 52 200 41 49 200 29 44 242 77 92 241 77 92 245 118 128 200 25 42 152 195 167 51 130 77 64 137 88 70 143 94 84 152 106 90 155 112 126 179 144 129 181 146 155 198 169 205 226 212 36 118 62 46 124 70 51 129 75 57 134 80 93 158 113 99 162 119 162 201 174 166 204 178 45 124 68 46 125 69 47 125 70 48 126 70 51 129 73 75 146 96 74 144 94 119 174 135 216 233 221 50 128 71 54 132 74 59 135 79 63 137 82 155 198 166 62 136 79 62 136 80 62 135 80 70 142 87 82 150 98 107 167 122 143 190 154 164 203 173 195 221 201 226 239 229 86 154 100 171 207 179 188 216 194 84 151 97 94 156 106 218 234 221 82 150 94 241 247 242 96 160 105 124 178 132 121 174 129 167 204 172 89 153 97 104 164 111 97 160 103 96 158 102 158 198 161 220 234 221 103 162 106 109 166 112 119 174 120 128 179 128 123 177 122 121 174 119 135 184 133 129 179 125 225 239 224 145 190 140 179 210 176 188 217 185 190 218 187 159 199 154 160 199 155 187 216 183 194 220 191 198 222 195 176 208 171 231 147 139 201 67 60 201 71 62 201 62 58 246 146 142 231 96 96 245 124 124 237 131 131 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?>_?8??!!?>C?8@? C>@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10458
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10459
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10460
javaPrivateEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10461
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10462
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10463
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10464
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10465
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10466
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10467
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10468
     self javaPrivateEnumBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10469
     ImageEditor openOnClass:self andSelector:#javaPrivateEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10470
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10471
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10472
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10473
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10474
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10475
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10476
	constantNamed:'GenericToolbarIconLibrary class javaPrivateEnumBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10477
	ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10478
QDQDQC\#F1PZH3]DQDQDQDQDQB0TI"@ HBXRKDQDQDQDQB0PJ#D1LSD1I 0,QDQDQC\TJR%BP$IBP#H D#]DQDP!!IBP$P$H6K2<''IBP%QDQDFQ0"H$IBKRH"
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10479
H"T FTQDQAHOCP5BP$IBP" SE!!EDQDPYEQTUP$H0NC JL3L5QDQDIQX\GDIBB30<OC0<OC1DQC\LG!!9BP$L<O#8>O#8;QDQDJ04XK"89OS9@PD@>OTQDQDP+
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10480
C!!4 BPHGA TFA0IDQDQDQC\_E3PCPS<@@DDAQDQDQDQDQDQDAC(:N#(:BDQDQDQDQDQDQ@ HB@ HB@!!DQDQDQDQDQDQDQDQDQDQDQ@@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10481
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[231 96 97 200 41 48 200 48 52 200 41 49 200 29 44 242 77 92 241 77 92 245 118 128 200 25 42 217 201 182 219 204 186 230 219 206 140 89 32 142 92 36 142 93 37 143 93 38 144 94 39 144 95 40 145 96 41 146 97 43 147 99 45 147 100 47 148 101 48 149 103 50 152 107 56 153 108 57 154 109 60 155 111 62 158 115 67 158 116 68 159 117 69 160 118 71 161 119 73 163 123 77 165 125 81 165 126 81 166 127 83 169 131 88 170 133 91 176 141 102 178 144 106 180 147 110 185 154 119 186 156 122 187 157 124 190 161 129 194 167 137 199 174 146 204 182 157 206 184 160 209 188 165 212 193 172 213 195 174 214 196 176 216 199 180 225 211 196 226 213 199 231 220 208 231 147 139 201 67 60 201 71 62 201 62 58 246 146 142 231 96 96 245 124 124 237 131 131 255 254 254 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?>_?8??!!?>C?8@? C>@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10482
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10483
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10484
javaPrivateInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10485
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10486
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10487
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10488
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10489
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10490
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10491
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10492
     self javaPrivateInterfaceBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10493
     ImageEditor openOnClass:self andSelector:#javaPrivateInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10494
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10495
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10496
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10497
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10498
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10499
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10500
        constantNamed:'GenericToolbarIconLibrary class javaPrivateInterfaceBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10501
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10502
TUEQTTPVCP,NE$QQTUEQTUEQTS<KD!!TUEQHKO5EQTUEQTS<3OQ-GQ4\[OSL?TUEQTRD,NQ1PTEAPB!!0;KBEQTUDVD3 8FEAPBS 8NAPYTUEQC4XLC@1PTDLL
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10503
CCT5C5EQTR<(J"\''TE@ I2\*IB9QTUDOKR,&I%APPT@^GQ5BTUEQFSH0LTUPTD)JR$)JR$)QTRH#M#)PTEAJSD1LSD1ITUEQF"TQOC0_R41NS$9LR5EQTUDZ
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10504
JS\PO HGA TFA0IQTUEQTTPWMA<CS44@@D<ATUEQTUEQTUEQAD!!HRD!!HBEEQTUEQTUEQTP HB@ HB@!!QTUEQTUEQTUEQTUEQTUEQTP@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10505
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[231 96 97 200 41 48 200 48 52 200 41 49 200 29 44 242 77 92 241 77 92 245 118 128 200 25 42 197 188 224 215 209 233 112 94 176 111 93 174 114 96 177 113 95 176 115 97 177 117 100 177 120 102 180 125 108 184 125 108 183 130 114 185 143 128 194 151 136 198 149 135 197 158 145 203 156 143 201 159 146 203 165 153 207 168 156 208 168 156 207 167 155 205 171 160 209 174 164 209 220 215 236 226 222 240 85 66 159 90 71 159 93 74 164 90 72 159 89 71 158 92 73 160 94 75 164 93 74 161 93 75 161 97 79 167 96 79 166 97 79 166 98 80 167 98 80 165 96 79 162 101 83 168 101 84 169 108 91 173 107 91 172 111 94 174 117 100 178 131 116 188 137 122 191 134 120 187 139 125 191 138 124 190 142 128 193 154 142 199 161 149 204 167 156 207 174 165 210 181 172 216 185 176 218 204 198 228 94 78 161 105 89 172 174 165 212 231 147 139 201 67 60 201 71 62 201 62 58 246 146 142 231 96 96 245 124 124 237 131 131 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?>_?8??!!?>C?8@? C>@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10506
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10507
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10508
javaProtectedClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10509
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10510
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10511
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10512
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10513
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10514
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10515
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10516
     self javaProtectedClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10517
     ImageEditor openOnClass:self andSelector:#javaProtectedClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10518
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10519
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10520
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10521
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10522
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10523
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10524
        constantNamed:'GenericToolbarIconLibrary class javaProtectedClassBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10525
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10526
X6M#X0(PE 8WD@)#X6M#X6M#X0\NM34=OS\@A6M#X6M#X0\\P$5KSD-IO ,GX6M#X0(NPD]"X&I"X$X?@@)#X6LEND!!"X$)DQVICPS QX6M#@2<:X#,9NS$<
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10527
LSD6@6M#X0@UIVH(D1HRD1 _I 5#X6LCGQ)"JQ8!!HP<(T%HHX6M#DR@-LFH+IA%"T$9NT&M#X1,KKCP.X&I"T5APTD=TX6M#A 0"L#L5VUUZV%)ZUUE#X6LF
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10528
EBL*I5!!_XVE!!XU=WX6M#X0(D@PHIW&A XFAVX6M#X6M#X6M#X6M\XFA]X6M#X6M#X6M#X6M#X5-[X6M#X6M#X6M#X6M#X6M#X6M#X0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10529
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[51 130 77 64 137 88 66 139 90 70 143 94 84 152 106 90 155 112 126 179 144 129 181 146 155 198 169 180 212 191 205 226 212 36 118 62 46 124 70 51 129 75 57 134 80 79 149 101 93 158 113 99 162 119 45 124 68 46 125 69 47 125 70 48 126 70 75 146 96 74 144 94 83 151 103 109 168 126 119 174 135 216 233 221 50 128 71 59 135 79 63 137 82 144 191 156 62 136 80 62 135 80 70 142 87 82 150 98 107 167 122 143 190 154 150 194 161 164 203 173 195 221 201 226 239 229 86 154 100 188 216 194 84 151 97 94 156 106 218 234 221 82 150 94 241 247 242 84 151 94 96 160 105 124 178 132 121 174 129 167 204 172 89 153 97 104 164 111 97 160 103 96 158 102 158 198 161 220 234 221 109 166 112 119 174 120 128 179 128 123 177 122 121 174 119 135 184 133 129 179 125 225 239 224 145 190 140 179 210 176 188 217 185 190 218 187 159 199 154 160 199 155 187 216 183 194 220 191 198 222 195 176 208 171 255 242 176 255 233 145 255 234 145 183 147 37 190 156 40 187 152 39 187 153 39 255 230 152 174 135 31 179 141 34 178 141 34 184 147 36 255 222 125 167 126 28 170 129 29 170 130 30 174 135 32 254 219 140 254 222 150 254 207 108 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?8??1??C?8@O@@X@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10530
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10531
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10532
javaProtectedEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10533
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10534
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10535
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10536
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10537
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10538
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10539
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10540
     self javaProtectedEnumBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10541
     ImageEditor openOnClass:self andSelector:#javaProtectedEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10542
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10543
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10544
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10545
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10546
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10547
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10548
        constantNamed:'GenericToolbarIconLibrary class javaProtectedEnumBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10549
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10550
Q4]GQ4P-IQ4$KTQGQ4]GQ4]GQ3\]LB(*J#@\M4]GQ4]GQ3\ZMS4=OS4=LAX7Q4]GQ4P]L3MFQ$YFQ#8*GDQGQ4\+K"8.Q$YCN3,1K"8/Q4]GH2X,KDYFNB0,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10551
KB<*H4]GQ10YE1]FQ$YFQ#H?PQ-GQ4\#G!!8^Q$X<MCPUA@QBQ4]GK1<&I$YFNRYCA@@@AD]GQ4PVJB!!FQ$YFAPHB@ DFQ4]GM!!\"N#)EB0\LC@0LA0MGQ4\6
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10552
FB\*E@(QD1LSD1DIQ4]GQ4P)HBE@DAHRD!!HHQ4]GQ4]GQ4]GQ4\ND!!HOQ4]GQ4]GQ4]GQ4]GQ04MQ4]GQ4]GQ4]GQ4]GQ4]GQ4]GQ0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10553
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 242 176 255 233 145 255 234 145 183 147 37 190 156 40 187 152 39 187 153 39 255 230 152 174 135 31 179 141 34 178 141 34 184 147 36 255 222 125 167 126 28 170 129 29 170 130 30 174 135 32 254 219 140 254 222 150 254 207 108 217 201 182 219 204 186 140 89 32 142 92 36 142 93 37 143 93 38 144 94 39 144 95 40 145 96 41 147 99 45 147 100 47 148 101 48 149 103 50 151 104 53 152 107 56 153 108 57 154 109 60 155 111 62 158 115 67 158 116 68 159 117 69 160 118 71 161 119 73 163 123 77 165 125 81 165 126 81 166 127 83 169 131 88 170 133 91 176 141 102 178 144 106 180 147 110 182 150 114 185 154 119 186 156 122 187 157 124 190 161 129 192 164 133 194 167 137 199 174 146 204 182 157 206 184 160 209 188 165 211 192 170 213 194 173 212 193 172 214 196 176 216 199 180 225 211 196 231 220 208 255 254 254 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?8??1??C?8@O@@X@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10554
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10555
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10556
javaProtectedInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10557
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10558
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10559
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10560
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10561
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10562
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10563
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10564
     self javaProtectedInterfaceBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10565
     ImageEditor openOnClass:self andSelector:#javaProtectedInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10566
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10567
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10568
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10569
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10570
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10571
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10572
        constantNamed:'GenericToolbarIconLibrary class javaProtectedInterfaceBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10573
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10574
U%YVU#4MA@HECS5VU%YVU%YVU# BBP0LC@$BNEYVU%YVU# -M1I@PD@RM248U%YVU!!0&L1QUUUUU@QP5I!!1VU%XMB#H2C5UU@CH2L ,PU%YVA#<C@0MUUS0C
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10575
@2</A%YVU"$"IBD!!UUTYHRDUD2!!VU%XFI2T HEUUN"@VQTT;U%YVDB0*J39UUQ(9QTEAQUYVU!!4^LCQUUUUUQ$MCP4IGU%YVDQ<HM#XWSD!!MST5MRDQVU%XQ
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10576
H3DGF4-RUEQTUEIJU%YVU#4NK"\XTUMST5MIU%YVU%YVU%YVU%YOT5MPU%YVU%YVU%YVU%YVU$9NU%YVU%YVU%YVU%YVU%YVU%YVU @@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10577
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[197 188 224 215 209 233 112 94 176 111 93 174 114 96 177 113 95 176 115 97 177 117 100 177 120 102 180 125 108 184 125 108 183 130 114 185 143 128 194 151 136 198 149 135 197 158 145 203 156 143 201 159 146 203 165 153 207 167 155 207 168 156 208 168 156 207 167 155 205 171 160 209 178 167 213 174 164 209 177 167 212 183 173 216 220 215 236 226 222 240 85 66 159 93 74 164 90 72 159 89 71 158 92 73 160 94 75 164 93 74 161 93 75 161 97 79 167 96 79 166 97 79 166 98 80 167 98 80 165 96 79 162 101 83 168 101 84 169 108 91 173 107 91 172 111 94 174 117 100 178 131 116 188 137 122 191 134 120 187 139 125 191 138 124 190 142 128 193 161 149 204 169 159 207 174 165 210 181 172 216 185 176 218 204 198 228 94 78 161 105 89 172 174 165 212 255 242 176 255 233 145 255 234 145 183 147 37 190 156 40 187 152 39 187 153 39 255 230 152 174 135 31 179 141 34 178 141 34 184 147 36 255 222 125 167 126 28 170 129 29 170 130 30 174 135 32 254 219 140 254 222 150 254 207 108 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?8??1??C?8@O@@X@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10578
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10579
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10580
javaPublicClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10581
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10582
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10583
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10584
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10585
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10586
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10587
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10588
     self javaClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10589
     ImageEditor openOnClass:self andSelector:#javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10590
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10591
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10592
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10593
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10594
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10595
    ^self javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10596
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10597
    "Created: / 23-10-2011 / 14:41:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10598
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10599
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10600
javaPublicEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10601
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10602
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10603
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10604
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10605
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10606
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10607
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10608
     self javaPublicEnumBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10609
     ImageEditor openOnClass:self andSelector:#javaPublicEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10610
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10611
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10612
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10613
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10614
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10615
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10616
        constantNamed:'GenericToolbarIconLibrary class javaPublicEnumBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10617
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10618
LC@0LB8ZD@ OF"80LC@0LC@0LBTHGQXVE!!4FIS@0LC@0LBTDH2,+J2,+GP@%LC@0LB8HHRD/K2</K20VA"80LC@WF1,[K2<-JR$_F1,\LC@0C!!DYFR</I!!$Y
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10619
FQ0VC#@0L@XC@PD/K2</K2@GB T0LC@NBP$IK2<*H"H[BP$NLC@0G@(QDR</I1DQDQDQG#@0LB8@D1L/K2</K20V@B80LC@0I@DMJB (JB ]A2P0LC@0LC@$
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10620
@!!HVEQXR@"P0LC@0LC@0LB8TB00KFB80LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0L@@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10621
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[140 89 32 142 92 36 142 93 37 143 93 38 144 94 39 144 95 40 145 96 41 146 97 43 147 99 45 147 100 47 148 101 48 149 103 50 151 104 53 152 107 56 153 108 57 154 109 60 155 111 62 158 115 67 158 116 68 159 117 69 160 118 71 161 119 72 161 119 73 163 123 77 164 124 79 165 125 81 165 126 81 166 127 83 169 131 88 170 133 91 175 139 100 176 141 102 178 144 106 180 147 110 182 150 114 185 154 119 186 156 122 187 157 124 190 161 129 192 164 133 194 167 137 199 174 146 204 182 157 206 184 160 209 188 165 216 199 180 225 211 196 255 254 254 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?0?>A?0C>@@@@@@@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10622
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10623
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10624
javaPublicInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10625
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10626
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10627
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10628
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10629
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10630
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10631
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10632
     self javaPublicInterfaceBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10633
     ImageEditor openOnClass:self andSelector:#javaPublicInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10634
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10635
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10636
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10637
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10638
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10639
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10640
        constantNamed:'GenericToolbarIconLibrary class javaPublicInterfaceBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10641
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10642
P4MCP38NAPLFC#9CP4MCP4MCP3,CB 4MCP(CN4MCP4MCP3,.N!!UAPTDUN"8;P4MCP1$%M!!YBP$IB@!!X8IQ%CP4LNB3T5DTIB@CT5MP0RP4MCA4@DA@QBP#4D
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10643
AC@0A4MCP2  H!!<_P$HWG1<"GB]CP4LGI"P^G$IBOA8_H"LGP4MCD"4*J3=BP!! ?J2,,EDMCP1([L3]BP$IB@S\2F1%CP4MCD14INS$9NS$1JQMCP4MCP4LS
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10644
HSPHB@ 4HQMCP4MCP4MCP38OK2X/DC9CP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10645
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[197 188 224 197 189 222 215 209 233 112 94 176 111 93 174 114 96 177 113 95 176 115 97 177 117 100 177 120 102 180 125 108 184 125 108 183 130 114 185 143 128 194 151 136 198 149 135 197 152 138 199 158 145 203 156 143 201 159 146 203 162 150 204 165 153 207 168 156 208 174 164 209 177 167 212 220 215 236 226 222 240 85 66 159 90 71 159 93 74 164 90 72 159 89 71 158 92 73 160 94 75 164 93 74 161 92 74 160 93 75 161 97 79 167 96 79 166 97 79 166 98 80 167 100 82 168 98 80 165 96 79 162 100 82 167 101 83 168 101 84 169 108 91 173 107 91 172 108 92 172 113 96 177 111 94 174 117 100 178 131 116 188 137 122 191 134 120 187 139 125 191 138 124 190 142 128 193 161 149 204 174 165 210 185 176 218 204 198 228 94 78 161 105 89 172 174 165 212 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?0?>A?0C>@@@@@@@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10646
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10647
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10648
javaRuntimeExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10649
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10650
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10651
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10652
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10653
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10654
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10655
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10656
     self javaRuntimeExceptionBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10657
     ImageEditor openOnClass:self andSelector:#javaRuntimeExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10658
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10659
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10660
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10661
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10662
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10663
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10664
        constantNamed:'GenericToolbarIconLibrary class javaRuntimeExceptionBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10665
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10666
D1LSD1LMB ,SD1LSD1LSD1LSD1LSCP(KD1LSD1LSD1LSD1LSD04JB1LSB@8NBALSD1LSD1LMB ,SD08OC08SD1LSD1LSCP(KD1LND!!DND1LSD1LSD04JB1LS
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10667
D@@@DALSD1LSCP0LB 0SD0DB@0DSD1LSD04KB 0SD1LGAPPGD1LSD1LSD1LSD1LSA 8NA!!LSD1LSD1LSD1LSD1LGA1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LS
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10668
D1LSD1LSBP8NBQLSD1LSD1LSD1LSD08QDP8SD1LSD1LSD1LSD1LGDQDGD1LSD1LSD1LSD1LSB@\GBALSD1LSD1LSD1LSD1LSD1LSD0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10669
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[244 120 123 200 39 47 244 102 111 243 103 111 243 88 99 242 87 99 233 164 170 200 25 42 242 197 202 244 208 212 40 98 150 81 128 170 110 150 185 194 211 226 201 71 62 246 146 142 201 58 56 246 136 134 246 135 135 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A0@G@@\<A30GO@\<G30^O@@<@A @@@@<@C0@O@@<@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 10670
! !
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 10671
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10672
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-UIPainter'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10673
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10674
copyWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10675
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10676
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10677
    ^ self copy22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10678
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10679
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10680
cutWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10681
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10682
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10683
    ^ self cut22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10684
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10685
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10686
deleteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10687
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10688
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10689
    ^ self delete22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10690
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10691
3883
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10692
gridAlignIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10693
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10694
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10695
    ^ self gridAlign16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10696
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10697
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10698
gridIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10699
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10700
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10701
    ^ self grid16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10702
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 10703
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10704
loadFromMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10705
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10706
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10707
    ^ self loadFromMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10708
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10709
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10710
moveWidgetDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10711
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10712
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10713
    ^ self down22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10714
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10715
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10716
moveWidgetDownRightIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10717
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10718
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10719
    ^ self downRight22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10720
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10721
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10722
moveWidgetLeftDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10723
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10724
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10725
    ^ self leftDown22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10726
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10727
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10728
moveWidgetUpIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10729
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10730
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10731
    ^ self up22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10732
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10733
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10734
newWindowSpecIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10735
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10736
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10737
    ^ self newWindowSpec24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10738
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10739
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10740
pasteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10741
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10742
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10743
    ^ self paste22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10744
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10745
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 10746
saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 10747
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 10748
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 10749
    ^ self saveAsMethod22x22Icon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 10750
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 10751
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10752
saveAsMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10753
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10754
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10755
    ^ self saveAsMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10756
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 10757
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10758
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-misc'!
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10759
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10760
errorIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10761
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10762
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10763
    ^ self error32x32Icon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10764
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10765
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10766
newDataSetIcon
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10767
    <resource: #programImage>
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10768
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10769
    ^ self newDataSet24x24Icon
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10770
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10771
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10772
newRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10773
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10774
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10775
    ^ self newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10776
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10777
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10778
removeRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10779
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10780
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 10781
    ^ self cutMenuItem22x22Icon
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10782
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10783
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10784
warnIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10785
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10786
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 10787
    ^ self warn32x32Icon
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10788
! !
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 10789
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10790
!GenericToolbarIconLibrary class methodsFor:'image specs-versions'!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10791
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10792
versionA12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10793
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10794
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10795
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10796
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10797
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10798
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10799
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10800
     self versionA12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10801
     ImageEditor openOnClass:self andSelector:#versionA12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10802
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10803
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10804
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10805
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10806
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10807
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10808
        constantNamed:'SVN::IconLibrary class versionA12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10809
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10810
O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<+KR8/LCD2L3<?O3<?J"T%IRX''JB0?O3<?O18 HRD!!H2P)O3<?O3<RE1\[F14_H#<?O3<?A@LLD1DQE!!0?O3<?
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10811
O0HPCP(FB@TNO3<?O3<GF!!$XEQPMBS<?O3<?@@<NC ,KB0D?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10812
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[118 148 84 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 112 173 54 107 176 55 115 173 77 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 113 182 61 127 179 53 129 181 55 125 185 58 127 186 59 129 187 51 135 186 52 134 184 81 136 187 53 141 183 81 138 188 54 145 187 46 148 190 49 150 189 73 158 193 53 154 195 54 162 195 47 165 198 50 169 202 54 171 204 56 171 202 80 168 203 102 191 213 121 193 221 91 201 229 99 203 231 101 208 231 109 215 239 123 217 242 134 226 244 137 235 253 145 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@O<@?0C?@O<@?0C?@O<@?0@@@@@@@@@b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10813
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10814
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10815
versionA16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10816
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10817
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10818
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10819
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10820
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10821
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10822
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10823
     self versionA16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10824
     ImageEditor openOnClass:self andSelector:#versionA16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10825
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10826
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10827
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10828
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10829
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10830
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10831
        constantNamed:'SVN::IconLibrary class versionA16x16'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10832
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10833
DLQ;_W7F1<#R4-_T5]WZG2[%9._&:>/,;^;/<OG2<<T 7;Z:/K6<0LGA8NK#9N)9F-6(+*:1-[V5*;V>/;?"^A''P^*J#+[B0*KF7-;F+02 X2(2R%9^ ^*N%
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10834
(:Z0+]0''E<&H H*J")JU%)ZU)9^''IQY-SFQ$"H"@ XFJ$)JR''"PRM$A@QU]XT5NB (RD Y0#B3\,LR9@QDQERT%WVE!!1H 1-TC$9LSD1K#8.QDUE[BDN[51[
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10835
VT=OO#T>K"8.KC8^CGY&YV!!"W%1[T%APTC)+GAON+I*X&I.[Z&%)W%9^\A4U6M;O3,;L3G]7]''I3]WT[@ADOBP$IBP$EAPTB@ ,V@P@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10836
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[30 49 18 35 64 22 53 108 28 58 107 28 59 107 28 57 108 28 59 108 29 59 109 29 59 110 30 60 109 29 61 110 30 60 106 33 63 106 37 62 106 38 59 103 43 67 108 28 70 87 32 70 101 35 64 106 35 69 106 34 68 106 35 70 100 40 68 108 41 77 112 43 82 115 39 86 118 39 94 121 45 75 117 54 71 126 50 72 123 50 74 126 50 103 117 41 98 124 43 80 129 54 87 133 53 98 132 47 106 136 45 111 140 47 109 131 49 119 146 52 124 150 50 111 167 50 106 171 49 108 170 50 108 170 51 109 171 51 107 169 52 105 171 53 106 170 52 106 169 54 108 170 52 111 171 53 108 172 53 111 173 55 107 162 63 107 167 62 108 170 57 105 173 56 107 175 56 107 175 57 109 174 57 109 175 57 109 173 58 108 170 60 112 171 53 114 170 52 112 172 53 115 173 52 114 172 54 117 173 52 116 172 53 118 173 53 117 173 54 120 174 53 120 174 54 121 175 54 121 174 56 108 176 54 108 176 55 107 177 56 108 177 56 109 178 57 111 179 59 125 177 50 124 176 51 126 178 51 123 176 53 124 176 54 124 177 54 112 177 58 113 179 58 113 179 59 118 179 58 117 180 57 118 181 56 116 181 58 119 182 58 117 178 62 117 183 60 126 179 56 125 178 58 123 185 57 127 186 57 121 184 60 121 184 61 122 185 60 125 185 61 108 172 64 116 174 67 115 168 69 113 172 69 118 174 76 113 176 70 125 179 65 123 183 70 123 183 71 124 184 71 125 182 74 125 183 74 124 184 72 131 155 47 138 159 53 146 189 44 146 165 61 144 168 60 146 169 61 130 182 48 131 182 50 131 182 51 132 183 49 129 178 52 131 178 53 132 179 53 131 180 52 129 181 54 131 182 54 131 183 54 134 184 51 133 184 53 134 185 54 139 187 48 136 186 50 142 187 50 136 185 53 138 185 52 136 186 53 139 187 52 138 187 53 141 187 53 142 187 54 140 188 52 143 188 52 130 188 56 131 189 56 133 190 56 128 187 61 135 184 63 129 188 60 141 188 60 146 188 48 145 188 51 144 189 51 147 189 50 148 190 49 150 190 50 151 191 50 151 191 51 145 189 56 154 192 45 152 193 46 158 196 44 159 197 47 137 193 55 150 192 50 154 192 49 152 193 50 152 193 51 157 194 48 156 194 49 158 196 48 159 197 48 159 197 49 166 198 43 160 195 49 160 198 48 167 199 51 169 199 49 170 198 51 170 199 53 171 199 53 163 200 48 165 200 50 174 203 57 175 203 58 175 203 59 168 202 63 141 159 72 149 167 68 147 172 66 149 174 71 152 173 75 129 179 70 138 184 65 130 187 75 131 187 75 131 188 74 134 190 73 137 187 72 146 188 65 149 191 64 154 174 81 154 175 81 154 175 89 158 174 89 128 181 87 156 176 87 144 186 87 160 175 91 163 176 89 139 193 75 158 196 67 157 193 69 145 196 77 168 201 69 177 204 64 177 207 68 183 208 69 186 211 72 190 214 79 190 218 95 193 221 77 194 221 80 195 221 81 196 223 86 194 218 92 197 224 89 201 226 93 205 227 99 206 229 104 207 230 110 210 233 115 215 236 118 220 239 126 226 243 131]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10837
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10838
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10839
versionA24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10840
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10841
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10842
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10843
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10844
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10845
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10846
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10847
     self versionA24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10848
     ImageEditor openOnClass:self andSelector:#versionA24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10849
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10850
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10851
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10852
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10853
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10854
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10855
        constantNamed:'SVN::IconLibrary class versionA24x24'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10856
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10857
@",2L3T8MCP:O#(<OC0<O349M3,7M#XEG.[4;/G1<_O6=/W7>_''9>?/;?O3=??80G>O$9>#(:N#):^''/;^;0<OK5=?_8>O(0FMSH2</M3\7Q3]GW5=_W6-3!!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10858
8.K+9^0/G]''J,<C@0LCH0LCS2L#H2MOU6MWW7.(1GKB1.*65.LGA0\GA0\GA0\GN2\CH4>@.F:2/)Z6-+Z65.K.8.++@0LC@0LB=4=4-F96#(JJ#+Z6-+Z6-
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10859
+Z6;.;.;.;::1=X,FX.Z(I2\''I2#(:J"+Z6-+Z6-+Z6-.]@,FXVF&X&I&Y&Y&ZF!!(:N"(*N#+:>-+<H*E7A(!!(RD!!HRO&Y&Y&Y&Y&Y2\(:F );P)E%YJXGE9
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10860
^W6D!!HR@"X&I"Y&Y$)&Y&[P''D4%AQ6A Y6=/]&=/]''ZC 8NC 8&I%JP&E$%AT4!!HT6E*\WE/[6=/[6=6]''6@!!I,$EDI]S5=PT5MSU5]\XVA''Y6]''Z&==Z'',(
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10861
E$%-YE=_UT9KR4!!HSEATU6E!!Y6)*ZG,%DDY4X65.X6Q_W55]T5APT5MSSD1SUFX"B4VH[F13YV9$YFQ$YVE#W5]ST5MSSE("C5J*%YFN!!8I<\61,[&9.[&Q$
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10862
YFQ$WVH#D5F2$I^X%YVQ$YFQ[G13\7M.[&Q2WU("DU/C*9:^%9^W&IVX&I"U$YE:^''),^E$!!EWW_6=KR3LR</K2<)*Z&)*Z&)*Z*-8D @4BJZ6-;W&Y&W&Y^
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10863
W%9^W%9^W%9Q_$PZ@@PFCP(IC@8NC@8LC@0LC@$IBP$LCP A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 10 4 0 21 0 16 31 1 26 46 7 30 55 9 45 56 0 33 62 1 24 66 0 34 64 12 18 70 0 25 68 0 26 66 19 26 69 0 33 68 0 28 71 1 31 69 15 29 69 22 39 68 8 29 72 1 34 70 9 29 72 10 39 69 16 36 72 11 36 73 20 51 72 6 46 74 15 42 74 27 50 77 10 54 76 18 57 78 12 64 79 15 63 83 10 51 88 34 47 90 28 54 97 35 48 99 35 64 98 30 58 101 38 73 99 25 77 102 29 66 107 37 81 105 25 85 109 29 88 109 44 90 114 34 94 117 29 96 118 21 102 118 23 102 119 32 100 122 26 111 123 45 108 125 38 108 129 34 112 128 34 116 127 49 116 129 57 111 133 38 113 132 59 112 135 47 119 132 60 116 134 54 116 135 62 114 137 49 118 136 56 118 148 84 103 159 57 102 161 65 103 165 45 116 158 86 112 160 79 107 162 80 111 165 47 106 167 47 110 163 75 108 165 62 105 167 56 107 168 48 108 169 49 101 171 50 104 171 42 106 169 57 115 166 71 113 166 77 109 170 51 107 170 58 101 172 59 117 165 84 110 171 52 110 169 72 108 169 79 104 171 73 122 166 72 111 172 53 109 172 60 111 170 74 105 174 53 118 171 53 112 173 54 106 173 75 111 174 62 107 176 55 114 175 56 115 173 77 120 174 56 119 174 64 108 178 57 122 175 57 124 173 71 116 177 58 114 177 65 110 179 58 124 176 50 127 172 85 123 176 58 112 180 51 111 180 59 120 176 73 133 171 85 125 177 51 118 179 59 116 179 67 124 178 60 121 180 53 119 178 81 113 182 61 127 179 53 130 175 87 133 178 53 129 180 45 122 178 95 115 184 63 135 179 55 129 181 55 134 177 83 128 181 63 122 183 63 124 181 77 131 182 47 138 176 90 136 178 77 124 184 56 132 183 48 119 186 57 131 183 57 127 185 49 125 185 58 139 182 50 133 184 49 132 184 58 127 186 59 134 185 50 129 187 51 128 187 60 135 186 52 134 186 60 134 184 81 136 187 53 141 183 81 131 189 53 142 186 53 139 188 45 138 188 54 145 187 46 144 187 55 144 185 76 148 189 37 130 191 71 140 190 56 147 189 47 146 189 56 129 192 79 137 193 49 145 187 85 148 190 49 131 193 73 147 190 58 151 186 86 153 189 58 138 192 73 156 190 40 150 189 73 151 192 51 140 194 75 137 194 89 153 194 53 151 194 62 154 195 44 158 193 53 142 196 77 157 196 35 154 195 54 161 194 45 162 195 47 156 197 47 156 194 79 146 198 72 141 200 73 164 197 49 158 199 49 157 199 58 165 198 50 160 200 50 164 198 59 167 199 41 149 201 75 171 197 51 161 201 41 166 200 52 166 197 83 173 199 53 152 204 78 169 202 54 167 201 93 171 204 56 171 202 80 177 203 58 172 205 57 168 203 102 177 205 68 158 210 83 184 204 69 176 206 84 181 208 71 165 211 93 181 209 80 188 209 73 191 211 76 181 214 105 189 216 78 193 215 95 191 213 121 189 220 65 193 219 73 194 221 84 193 221 91 199 220 92 198 221 100 202 222 86 203 224 96 199 226 88 205 226 98 201 229 99 205 228 106 203 231 101 206 230 115 208 231 109 206 234 104 212 235 113 221 237 124 215 239 123 220 242 120 217 242 134 226 244 137 226 247 146 235 253 145 241 254 154]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10864
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10865
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10866
versionAB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10867
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10868
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10869
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10870
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10871
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10872
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10873
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10874
     self versionAB12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10875
     ImageEditor openOnClass:self andSelector:#versionAB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10876
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10877
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10878
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10879
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10880
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10881
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10882
        constantNamed:'SVN::IconLibrary class versionAB12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10883
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10884
_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=FS%AQUEUVV''=?_7=?O",+J284NT!!?_7=?_1<"H2L#JB$<_7=?_7<SFA \GA8 IE]XVU-RA@LMEAHRE15LST=O
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10885
T0HQC (FB@TOQ4%IR$,GF1(YE!!TNBTEBP4ME@A@OC0,KB0D;OS4?NG=?_7=?L3D*IRX&I21?_7=?_4@:N#X1LR4!!_7=?_7=DMS\2L"<0C@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10886
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[118 148 84 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 184 149 76 112 173 54 107 176 55 115 173 77 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 113 182 61 127 179 53 129 181 55 125 185 58 127 186 59 129 187 51 135 186 52 134 184 81 136 187 53 141 183 81 138 188 54 214 165 59 145 187 46 148 190 49 150 189 73 234 173 0 235 174 0 231 176 0 158 193 53 154 195 54 238 177 1 162 195 47 224 175 69 240 179 7 165 198 50 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 169 202 54 232 185 42 242 186 19 232 186 53 226 187 61 171 204 56 245 188 0 233 190 16 171 202 80 236 192 0 168 203 102 237 193 0 243 193 28 237 199 6 240 201 0 244 204 0 240 196 94 231 202 64 191 213 121 244 210 3 193 221 91 250 215 0 247 218 0 239 214 66 245 222 0 241 225 0 201 229 99 245 228 5 203 231 101 208 231 109 233 227 112 247 234 74 215 239 123 217 242 134 226 244 137 255 248 86 255 249 95 255 251 104 235 253 145 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@O<@?0C?@O?8??#?>O?8?? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10887
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10888
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10889
versionABBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10890
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10891
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10892
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10893
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10894
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10895
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10896
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10897
     self versionABBase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10898
     ImageEditor openOnClass:self andSelector:#versionABBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10899
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10900
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10901
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10902
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10903
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10904
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10905
        constantNamed:'SVN::IconLibrary class versionABBase12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10906
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10907
_7=?_4!!QU51]YF!!@_7=?_7<+H"T''KCQPN''=^Y6)+[&=0]A\_H!!!!?T30<OC=FSF@EA 4C_281L#H2NC%O@PDB@G<\H2L)JR4/L7E2\7U,B $TGQ,[HR)%Y&%)
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10908
[P ZEQDLC0,VW6E!!X&LNJBX$HA8UDEYXVU%[AA$VE!!HRD ]NT%ITR7=?_7=?QTL;MSX6M35?_7=?_5UMST%CP380_7=?_7=ZQ4)DQDEBD0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10909
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[45 133 171 11 149 204 25 153 208 65 148 187 118 148 84 42 161 216 46 163 218 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 55 168 224 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 184 149 76 112 173 54 107 176 55 115 173 77 61 175 225 96 168 202 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 65 178 228 113 182 61 127 179 53 80 177 228 129 181 55 125 185 58 92 179 225 127 186 59 93 180 226 129 187 51 135 186 52 134 184 81 75 186 235 95 181 227 136 187 53 141 183 81 138 188 54 214 165 59 145 187 46 148 190 49 150 189 73 102 188 234 234 173 0 235 174 0 231 176 0 158 193 53 154 195 54 116 191 219 238 177 1 162 195 47 224 175 69 240 179 7 165 198 50 149 189 203 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 169 202 54 232 185 42 137 196 220 242 186 19 232 186 53 226 187 61 171 204 56 245 188 0 233 190 16 171 202 80 114 203 242 126 201 229 236 192 0 168 203 102 237 193 0 243 193 28 237 199 6 133 208 236 240 201 0 244 204 0 240 196 94 231 202 64 146 211 240 148 213 243 191 213 121 244 210 3 193 221 91 250 215 0 247 218 0 239 214 66 161 220 245 245 222 0 241 225 0 201 229 99 170 224 243 245 228 5 203 231 101 208 231 109 233 227 112 247 234 74 215 239 123 217 242 134 226 244 137 255 248 86 255 249 95 255 251 104 235 253 145 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<O?0??C?<O?8??#?>O?8?? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10910
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10911
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10912
versionABase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10913
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10914
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10915
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10916
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10917
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10918
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10919
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10920
     self versionABase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10921
     ImageEditor openOnClass:self andSelector:#versionABase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10922
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10923
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10924
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10925
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10926
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10927
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10928
        constantNamed:'SVN::IconLibrary class versionABase12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10929
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10930
_7=?_4UIR41MTEIC_7=?_7<5KB<1M#5HPG=NTUMTUUYWVBD)KBI?R$EAPTIDQ$<PDQ N_3 :N3,;O#=GB (MBG<&KR43L3\9O@LEBPE?EQP^I2T%J3PGA P@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10931
_1L$G10WF!!X C@0K@''<YL#@.J" _F7=?_7=?C2L HA4]GQI?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10932
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[16 117 155 0 123 166 48 114 148 9 133 194 0 137 204 17 135 197 0 141 202 0 143 204 45 133 171 29 139 201 11 149 204 33 143 199 39 146 202 25 153 208 65 148 187 118 148 84 42 161 216 46 163 218 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 55 168 224 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 112 173 54 107 176 55 115 173 77 61 175 225 96 168 202 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 65 178 228 113 182 61 127 179 53 80 177 228 129 181 55 125 185 58 92 179 225 127 186 59 93 180 226 129 187 51 135 186 52 134 184 81 75 186 235 95 181 227 136 187 53 141 183 81 138 188 54 145 187 46 148 190 49 150 189 73 102 188 234 158 193 53 154 195 54 116 191 219 162 195 47 165 198 50 149 189 203 169 202 54 137 196 220 171 204 56 171 202 80 114 203 242 126 201 229 168 203 102 133 208 236 146 211 240 148 213 243 191 213 121 193 221 91 161 220 245 201 229 99 170 224 243 203 231 101 208 231 109 215 239 123 217 242 134 226 244 137 235 253 145 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<O?0??C?<O?0??C?<O<@?0@@@@@@@@@b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10933
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10934
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10935
versionB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10936
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10937
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10938
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10939
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10940
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10941
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10942
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10943
     self versionB12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10944
     ImageEditor openOnClass:self andSelector:#versionB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10945
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10946
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10947
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10948
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10949
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10950
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10951
        constantNamed:'SVN::IconLibrary class versionB12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10952
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10953
O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O20+KR0.K3@)O3<?O3<&H2T%I2 (
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10954
J#<?O3<?HQ0_HBH"H2P?O3<?O1\VFQ([GA0^O3<?O3<G@ $TEQTVD#<?O3<?C 0E@ LCA@X?O3<?O1 SD1@LC@ AO3<?O3<]C1DMCP(K@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10955
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[184 149 76 214 165 59 234 173 0 235 174 0 231 176 0 238 177 1 224 175 69 240 174 37 240 179 7 232 184 6 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 232 185 42 242 186 19 232 186 53 226 187 61 245 188 0 233 190 16 236 192 0 237 193 0 248 191 29 243 193 28 242 197 9 237 199 6 240 201 0 244 204 0 240 196 94 231 202 64 246 206 0 244 210 3 249 210 32 250 215 0 247 218 0 239 214 66 245 222 0 246 223 0 241 225 0 245 228 5 233 227 112 247 234 74 255 245 52 255 248 86 254 251 69 255 249 95 255 251 104 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@_8A? G>@_8A? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10956
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10957
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10958
versionB16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10959
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10960
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10961
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10962
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10963
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10964
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10965
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10966
     self versionB16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10967
     ImageEditor openOnClass:self andSelector:#versionB16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10968
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10969
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10970
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10971
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10972
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10973
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10974
        constantNamed:'SVN::IconLibrary class versionB16x16'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10975
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10976
GRP H"L%]GU6;N;.:^/*@]#$8^K#9^_(<OG2</S6=Q0-4\KM3\/Q4=SU5]_ 9.<\KLV5.++B.++B0,KB3<?UF2:7(:N2-[V8.LR81LSB2!!$/*).['':N!!([J/
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10977
+;J5-\$XJ:&O#)R[&9:#&9>_(ZGHCB).SIFV$X*L"8:'')9"[6  )\C]FQ49KR8VE!!XVT%-$II7@6LS9DQD9NT$-LSH):BRY1MS(8NC 7OC0<P5EN^0\(\&Y"
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10978
W$Y^W$A@MSD1LW\FJLY[ZF](X&I"W59UT5M8AQ?F%5ZW%6)*Y5%YY''I"^PL!!7-7G1<]=_W6C XFA_HPD@!!\MCQTQDQDQEQTUEP<K@@@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10979
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[64 38 12 86 84 25 102 69 21 120 84 22 113 81 27 127 87 25 126 89 26 127 93 27 127 97 27 129 97 24 128 100 24 140 102 31 129 106 25 151 107 17 150 107 19 151 106 22 153 104 19 153 104 20 153 105 20 152 106 21 153 104 22 152 104 23 153 104 23 150 108 28 134 114 25 135 117 24 135 126 31 136 124 25 131 125 41 137 131 31 191 150 12 189 151 23 188 183 31 181 147 49 189 184 35 191 185 39 189 182 42 191 185 42 194 141 30 195 141 31 193 146 18 198 145 22 199 151 21 203 159 23 205 181 12 205 189 9 205 174 16 204 169 23 233 174 1 234 175 0 235 174 1 234 174 3 236 174 1 236 175 1 233 173 4 233 175 4 234 173 11 234 174 10 235 174 11 236 175 10 233 176 1 234 177 0 233 176 3 234 177 2 238 176 2 233 177 5 237 176 5 234 180 4 234 180 6 235 182 6 236 183 7 237 187 3 234 191 2 235 190 3 237 188 1 236 191 1 239 189 2 233 185 6 235 187 6 236 185 4 235 189 4 233 183 11 236 188 9 240 176 4 241 176 4 240 178 6 247 190 2 247 190 3 247 191 3 246 184 7 247 184 7 244 187 6 240 178 8 241 179 9 242 180 10 242 180 11 242 180 12 242 181 12 242 181 13 243 182 12 243 183 14 243 183 15 245 183 13 247 187 9 244 184 10 245 185 11 245 189 9 246 189 11 243 186 12 242 184 15 241 186 15 235 175 21 236 174 25 239 177 23 243 183 21 244 190 18 192 186 48 193 186 55 193 187 60 228 175 33 229 174 34 229 180 39 234 189 35 233 184 39 239 188 38 245 188 35 244 189 35 245 189 35 244 186 36 244 187 38 243 188 38 244 188 36 227 184 63 233 193 0 234 194 0 234 194 1 235 194 2 236 192 1 236 195 0 235 197 0 234 196 3 237 199 2 239 198 2 239 198 7 240 192 2 240 192 3 240 195 3 241 195 3 240 199 1 240 196 3 242 194 6 247 193 6 243 200 1 241 202 1 242 203 0 243 203 0 243 202 1 242 203 1 241 203 3 243 204 0 243 205 1 242 207 0 244 204 0 244 205 0 245 206 0 244 207 0 240 200 4 240 200 5 243 200 4 243 198 13 243 204 12 242 208 1 243 208 1 243 209 1 244 211 1 246 210 0 246 211 0 246 210 1 244 209 2 247 213 0 246 212 1 247 215 0 247 214 1 245 209 7 248 213 1 244 217 0 245 217 0 247 216 0 246 218 0 246 219 0 247 219 0 245 220 0 246 221 0 245 222 0 246 223 3 249 216 0 248 217 0 246 215 9 245 196 21 246 192 31 240 208 30 242 214 30 244 221 25 243 225 2 243 225 3 245 225 3 246 224 2 246 225 3 244 226 5 245 225 7 247 227 6 246 227 7 246 229 16 246 230 27 245 229 31 248 231 29 204 194 42 237 195 38 239 203 37 246 195 32 246 195 33 247 199 35 247 202 59 249 233 33 250 235 45 253 242 37 253 242 41 253 244 43 253 243 47 252 244 47 252 238 54 252 244 55 254 245 61 186 188 69 178 178 77 187 189 75 193 187 66 192 187 68 193 187 68 251 237 68 255 246 71 255 247 81 255 248 85 255 248 88 254 250 100 252 246 110 255 251 107]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10980
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10981
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10982
versionB24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10983
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10984
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10985
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10986
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10987
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10988
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10989
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10990
     self versionB24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10991
     ImageEditor openOnClass:self andSelector:#versionB24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10992
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10993
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10994
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10995
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10996
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10997
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10998
        constantNamed:'SVN::IconLibrary class versionB24x24'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 10999
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11000
GB$/KB00K2</MC 8NCX6M#X6LSL5L!!<BN?S0;.;0=_W8>OS4>_'';>?/;?/;<?=<QPN_(:N#(:N#*9>/.<OC3<?O4<//6>>0SO=7U5MSU5]WU5]/[7^C 8.K%
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11001
9N''-:^LSO-SG2,3R3=KR4-KR4-WU5M/[7-/^8.XWOM":2\#H2L#J2,+J3MKS4-KT5MS\5^DTN,J5-KR8.++I2\''I2\#I2L+L4=SR5MDRN\Z+*:.++;R8.K*:
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11002
.,''I2\''I.,3H4L4RM;.])ZV+*:.+,KB0-["8.KR:,L#I1<DRK*2](*J%)ZV+*:.+*:.+*:./*;*8.+XOJ9^V%(*J")2!!)Y6")ZV%*:.%)Z.%/J8IJ''][\8JR
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11003
%)2E!!X"H"H>]''Y2"(ZF\,ZPIJE9JS%-; '')1\XVE"H"H"H"H''JFJ)(8GI5YGQ4YMS&A;^(E1!!XVE!!XVE!!X*M%W4KHU1JQ$YIRT9ST5- Y''I;\7NE!!XVM^7XM
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11004
HVQJRT%JR$)JR$)MST9ST5M&\&5:_&$IH6!!#X6MZUEQIRTYFRT%IRT%ISD5SVUTHIHY#X6M#X6M#X6M#UEQIRT%FRT%ISDPHI)&G G!!8[6=#X6M#X6M#X5)T
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11005
T$-KR$PLH)&R HB@ HB@^G!!8Z6M#X6M#X5)#YTDEHJ"V%(.@"8.@ H.K"W%.[&9/X6-+_$HDI\CK1K&3,;N)(9*Z&)*W%9FW&)^Y''$LDG*6L 7A<_G1''X&]''
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11006
Y6]*Z&E*]FIP,#4C@QTYFQ$[F!!(ZF!!(ZF!!(ZF!!(ZE!!4YF08@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[16 1 1 42 14 1 27 26 0 53 26 0 61 33 0 66 33 3 61 38 0 66 37 0 67 38 0 64 40 0 65 41 0 68 42 0 75 40 0 67 43 3 78 42 0 66 46 0 70 53 0 58 57 0 71 55 0 64 58 0 69 57 0 92 53 0 97 53 1 69 62 0 97 57 0 99 58 0 103 57 0 100 59 0 73 70 2 108 62 3 122 94 29 118 117 35 156 120 13 164 117 27 154 124 0 162 121 17 164 122 3 152 123 35 161 124 3 171 123 23 174 125 13 140 134 30 170 127 12 174 131 19 146 144 16 151 143 18 175 136 24 152 144 20 148 146 20 145 145 39 143 145 55 142 148 41 155 146 23 147 148 50 154 147 44 177 143 17 155 148 35 176 148 22 179 150 8 164 156 44 179 155 15 184 149 76 178 160 0 180 168 13 179 167 27 214 165 59 211 168 52 212 170 69 218 169 63 230 171 12 234 173 0 232 172 16 229 175 0 235 174 0 233 173 19 240 173 0 228 175 16 231 176 0 232 177 0 236 176 0 221 176 52 235 175 22 242 175 3 233 178 0 238 177 1 224 175 69 240 174 37 239 178 4 234 180 2 233 179 23 240 179 7 236 181 5 242 176 40 241 180 10 239 179 28 237 182 9 232 184 6 236 178 58 233 180 49 243 181 13 244 178 43 236 182 29 234 185 9 234 181 50 242 181 31 227 182 66 233 181 59 240 184 15 235 182 51 235 186 12 247 184 0 245 183 18 232 185 42 233 189 0 236 187 15 238 188 0 235 183 61 243 187 0 224 186 68 240 185 33 242 186 19 249 186 0 239 189 0 237 188 18 232 186 53 226 187 61 236 187 33 234 191 0 245 188 0 233 190 16 240 190 0 235 187 45 246 189 0 236 192 0 242 187 36 244 188 23 232 194 0 251 188 4 237 193 0 247 190 3 234 188 64 243 192 1 230 190 64 233 196 0 248 191 6 251 188 28 244 193 4 239 195 2 235 197 0 237 194 25 245 194 8 248 191 29 240 196 6 243 193 28 249 192 31 246 195 11 242 197 9 237 199 6 242 193 52 243 198 0 239 200 0 245 199 0 238 200 11 251 194 34 232 197 61 240 201 0 242 198 32 241 202 0 242 198 45 255 197 21 243 203 0 244 204 0 247 201 21 240 196 94 231 202 64 245 205 0 240 207 0 243 204 22 238 199 88 253 201 25 246 206 0 241 208 0 233 204 66 247 207 1 243 209 0 255 203 28 244 210 3 247 207 28 242 209 27 246 211 0 245 211 7 247 212 0 247 205 71 234 210 61 246 212 10 248 213 0 254 208 33 243 215 0 249 210 32 243 215 12 245 216 0 250 215 0 246 217 0 255 210 49 247 218 0 239 214 66 242 220 0 243 221 0 246 218 21 237 218 58 245 222 0 250 221 0 246 223 0 241 225 0 242 226 0 247 225 0 250 222 28 243 227 1 248 226 4 245 228 5 250 227 8 246 229 10 248 232 17 233 227 112 247 231 36 243 230 59 249 233 39 243 231 79 249 234 53 251 235 41 247 234 74 251 241 48 253 242 34 254 239 70 254 243 37 253 243 50 248 239 110 255 242 73 255 245 52 255 247 55 255 246 66 255 248 68 253 247 93 255 248 78 255 248 86 254 251 69 253 248 102 255 249 87 252 251 78 255 249 95 255 251 97 255 251 104 253 251 119 255 252 106 253 255 115 255 254 130]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11007
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11008
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11009
versionBBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11010
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11011
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11012
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11013
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11014
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11015
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11016
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11017
     self versionBBase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11018
     ImageEditor openOnClass:self andSelector:#versionBBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11019
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11020
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11021
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11022
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11023
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11024
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11025
        constantNamed:'SVN::IconLibrary class versionBBase12x12'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11026
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11027
_7=?_3@7O$MER4<)_7=?_7<\FQ([GQ<6H7=?_7=?D!!DSEQXXFQ]?_7=?_0TJC@4NC1HK_7=?_7<@@PXGB@ IAG=?_7=?@%QSUUQVU5!!Q_7=?_0MMRT1LS%AP
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11028
T''=?_7<PQ4ADQ$!!HRT)?_7=?_3(9OC4?PDAB_7=?_7<&HB 5NC 9L7=?_7=?K"0$HBD!!H"U?_7=?_3,4MCD,KB\^_7=?_7=AK3H-KR(+E@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11029
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 126 187 4 132 193 17 135 197 0 143 204 45 133 171 0 146 201 7 146 208 13 147 209 11 149 204 25 153 208 31 155 211 65 148 187 33 156 212 38 159 214 42 161 216 46 163 218 83 160 206 51 169 218 55 168 224 67 167 217 184 149 76 58 173 223 61 175 225 96 168 202 65 178 228 80 177 228 92 179 225 93 180 226 75 186 235 95 181 227 214 165 59 102 188 234 234 173 0 235 174 0 231 176 0 116 191 219 238 177 1 224 175 69 240 174 37 240 179 7 232 184 6 149 189 203 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 232 185 42 137 196 220 242 186 19 232 186 53 226 187 61 245 188 0 233 190 16 114 203 242 126 201 229 236 192 0 237 193 0 248 191 29 243 193 28 242 197 9 237 199 6 133 208 236 240 201 0 244 204 0 240 196 94 231 202 64 146 211 240 246 206 0 148 213 243 244 210 3 249 210 32 250 215 0 247 218 0 239 214 66 161 220 245 245 222 0 246 223 0 241 225 0 170 224 243 245 228 5 233 227 112 247 234 74 255 245 52 255 248 86 254 251 69 255 249 95 255 251 104 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<@?0C?@O<@?8C? O>@_8A? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11030
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11031
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11032
versionBase16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11033
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11034
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11035
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11036
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11037
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11038
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11039
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11040
     self versionBase16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11041
     ImageEditor openOnClass:self andSelector:#versionBase16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11042
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11043
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11044
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11045
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11046
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11047
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11048
        constantNamed:'SVN::IconLibrary class versionBase16x16'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11049
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11050
ARP!!HRL%I"\0LSL4L#X5@TK.;^70</O4=_[6>_+;=1AA9NC^7.W%9._(:^3.<^($PMGL4=OU5=[V6=/\7^S!!HC:>0<OC0L''I3,?Q4-_W108/,J6-+[R9.+.<
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11051
0L''E3LXMK)& (:Z''):^,,[R6/+;AB212$YZU"9^\(:N%)::.''00TN$=)]XVD"(*R_Y&Y&Y8JD3(:N4Q_U6=5]WU5^IF]BQIHR$-EP4QHTV)+Y&&DT@\+Y55Z
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11052
VUUUU4YFR$]MUS0FJ&>CU6Y,U6Y]U6!!(S%T<@!!->^H*C"''=?_6=_U6Y&OPH(/*>##X2Q^W!!=^72J$3<DBB$-G!!(_GA(WGQ\VE!!TQ@@@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11053
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[9 43 68 33 57 70 7 65 94 8 66 94 16 64 93 42 74 91 6 68 101 6 73 103 20 72 106 16 78 107 20 84 116 31 89 119 21 87 120 36 90 117 40 98 124 56 108 127 71 107 120 14 100 138 3 102 154 5 103 153 6 109 158 10 107 152 12 107 152 15 105 154 14 106 154 15 105 156 15 105 158 15 109 158 18 106 159 17 108 157 17 110 159 22 108 158 44 103 129 49 108 132 49 109 133 50 111 135 57 105 128 54 112 136 61 113 138 61 117 141 40 111 154 38 114 157 1 108 160 9 108 162 5 114 162 25 114 163 20 120 166 30 127 172 66 118 141 71 120 142 77 120 137 74 120 140 76 120 141 80 119 130 82 122 134 9 129 179 1 128 189 1 131 191 2 130 191 5 130 191 9 128 184 19 132 182 37 132 177 35 135 183 44 144 188 67 151 191 95 152 181 5 131 192 2 134 195 7 132 193 3 133 198 5 133 197 6 133 196 6 134 198 7 135 199 9 133 195 9 134 196 9 133 198 8 134 199 1 137 198 15 138 193 15 136 197 12 137 199 2 135 200 3 135 200 5 133 200 3 136 201 1 139 202 5 136 202 7 137 202 6 138 203 4 140 201 0 138 204 0 139 205 0 140 205 0 142 204 0 143 204 2 143 204 1 140 207 0 141 207 3 143 207 5 142 205 5 140 207 9 138 203 13 139 201 10 143 204 20 137 199 18 140 201 3 144 206 6 144 205 7 144 205 5 144 206 4 145 206 7 145 207 13 145 203 8 145 205 8 147 207 10 147 206 15 144 206 11 149 207 13 148 207 15 149 207 13 150 207 17 147 203 18 147 205 19 148 207 20 152 207 4 146 209 4 147 209 6 146 208 10 146 208 10 147 209 14 146 208 11 148 210 10 149 210 11 149 210 15 149 208 13 148 210 13 151 210 14 153 211 12 152 212 14 155 213 17 144 210 19 149 209 16 150 209 19 151 208 21 150 208 24 146 208 22 152 208 20 152 211 18 152 212 20 154 213 25 153 208 28 155 209 29 155 211 30 155 210 31 155 213 36 142 192 41 150 196 51 157 206 33 157 210 33 157 213 35 157 213 33 158 213 35 159 215 37 158 214 25 160 213 40 162 213 41 162 213 40 161 214 41 160 215 47 164 213 47 165 214 46 166 215 45 163 218 43 167 223 49 162 215 53 163 215 49 166 215 48 163 216 50 164 216 48 164 220 60 166 218 60 167 221 62 167 220 51 169 218 52 170 219 55 171 220 57 171 221 61 168 221 61 169 223 59 173 223 61 173 223 73 162 207 66 170 220 68 169 220 69 171 221 73 172 223 87 170 213 96 180 220 67 173 224 64 174 224 66 175 226 77 175 224 76 174 225 77 174 225 65 177 227 65 177 228 68 179 229 70 176 230 70 180 230 79 176 225 82 177 227 81 178 227 85 179 228 82 180 228 81 180 231 86 180 230 87 181 231 88 182 232 89 184 233 92 191 236 97 189 230 99 190 230 98 190 232 108 195 231 98 194 235 103 193 233 99 193 237 104 192 232 110 194 232 120 196 234 123 199 237 123 204 241 141 212 233 131 207 244 134 213 244 134 214 245 137 211 243 139 211 242 140 216 245 145 219 246 145 218 247 146 219 248 148 220 248 154 222 248 158 224 249 176 227 238 160 226 250 168 229 251 179 232 248 182 236 250]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11054
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11055
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11056
versionBase24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11057
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11058
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11059
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11060
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11061
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11062
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11063
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11064
     self versionBase24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11065
     ImageEditor openOnClass:self andSelector:#versionBase24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11066
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11067
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11068
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11069
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11070
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11071
    ^Icon
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11072
        constantNamed:'SVN::IconLibrary class versionBase24x24'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11073
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11074
@!!LNDADQE!!XVF!!0_H2D$H2@ H18"H!!8AO=SZ6]''\7^C"8.[&9.#*;N?2;_W6>]HXU^''.;.;.<OS4=OS4=?_8>O#;?O;=?>\RTMOM3L3K2<3M3<?Q5=/^8^W)
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11075
9.[1:=T]Q<N:.[&8.K?A/\GA1LSG1<+J5-#$7<8VR*:.,+N6-+&9.[2<0LC@0LC@0<#B4L$ON:J*****+:.+*;N1-[V5-;.;0LB=1+8VN*J\)JF!!)JR#*J"+
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11076
*:6-,[V5-+&9/;@MNIBQ$)JY$)JY''):^(:N#*J"/)+J/-I4LNXNK#H.N!!)JT$)JR%).[&Y.&)*J&*YLTM6&H"H"H"H.N#(:N#9BP$IZV&*JZ&8(UMU5,\8E9
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11077
 V=2^XRH"8.K"8:O#9*V%''4UMT%HV6I1\WE1\W9/^XNC (NH"H.K#G@YM$EAP45_W&11[7E1^GM8\7M: (M3"VLULDMCRDMAP45[V6I"X&I"[F1,X''91_5 K
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11078
LDMQUEEMRDMCPUQTW6!!+]&I,[HE5[D0KLU)ST5M(W5)TTT5MTUEQUE)SW6-SYC4JL65ST5MST5MST5MSS$9NS$9HQD9DRC8JLVI1[FI"X&I WE1ST5M[ZF!!_
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11079
UEQNS30GLFI,\V11\W!!,X&I"Y&I!!W%9^T5MSWS0HLH]:^&93[798[G9/\V1,X&I!!WFA\Y30EMIF,%9RK_G%9\&=/[6=1[&91[GV@]DHDJ9>6+)2P"8"A!!7=?
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11080
_7=?_7=?\7Q.^4@CA"X-I2\''I2</JR$)JR (JB (K"4,J"T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 10 28 0 14 26 0 23 36 0 29 57 1 32 55 0 32 58 0 34 61 3 34 57 0 35 56 0 36 63 0 37 64 0 41 63 3 45 67 0 47 68 5 46 69 6 47 70 0 50 72 0 51 73 15 48 60 17 47 65 9 49 72 0 51 79 0 53 74 0 53 75 25 47 61 2 53 81 13 51 74 1 55 77 4 57 79 15 55 72 23 55 68 7 59 81 19 58 76 12 61 83 25 59 67 21 60 77 23 61 79 5 67 94 6 75 114 0 78 122 0 80 124 0 80 130 0 82 120 25 76 110 0 84 122 17 80 119 0 85 123 20 80 125 2 85 129 0 86 135 0 88 137 0 90 139 26 85 125 1 97 141 22 92 137 9 99 143 16 104 142 31 100 139 22 107 145 26 109 147 16 117 155 0 123 166 22 117 161 73 108 128 48 114 148 0 126 187 40 118 156 0 128 189 0 128 196 0 129 190 0 130 191 31 124 162 0 131 192 0 132 187 32 125 163 0 131 198 20 129 172 4 132 193 0 133 200 3 134 189 57 122 156 9 133 194 0 135 202 0 137 204 13 134 196 66 123 152 0 138 199 0 138 206 41 130 168 0 139 207 17 135 197 0 140 201 0 140 208 16 137 192 0 141 202 20 136 198 0 141 209 0 142 203 0 143 204 45 133 171 23 137 199 0 144 205 0 144 211 23 139 194 26 138 200 0 146 201 2 145 206 29 139 201 7 146 208 31 140 202 5 148 203 0 150 210 52 138 176 13 147 209 0 151 211 11 149 204 33 143 199 18 146 214 36 142 204 0 152 212 17 148 210 0 153 213 15 150 205 33 146 195 0 154 214 47 143 187 21 149 211 39 146 202 41 145 208 24 150 212 22 152 207 25 153 208 28 152 214 28 154 209 1 162 216 47 150 207 31 155 211 45 152 202 65 148 187 33 156 212 32 159 208 35 158 213 38 159 214 40 160 215 42 161 216 55 158 208 40 163 211 73 155 194 44 162 217 42 164 213 46 163 218 28 168 223 44 165 214 47 166 215 49 165 221 62 163 214 51 166 222 87 159 193 50 168 217 83 160 206 64 165 215 51 169 218 55 168 224 53 170 219 67 167 217 58 170 227 68 168 218 56 172 221 58 173 223 80 168 213 71 170 220 60 174 224 62 173 229 61 175 225 64 174 231 74 172 223 96 168 202 63 176 226 75 173 224 76 174 225 85 173 218 65 178 228 78 175 226 67 180 229 77 178 222 80 177 228 82 178 229 70 182 231 83 179 230 81 181 226 105 176 211 92 179 225 85 181 233 93 180 226 84 184 228 75 186 235 95 181 227 87 183 234 94 184 223 98 184 230 89 188 232 106 188 222 102 188 234 100 190 229 101 191 230 104 193 232 116 191 219 105 194 233 107 196 235 114 196 229 149 189 203 102 199 244 137 196 220 135 198 215 113 202 241 128 199 234 114 203 242 126 201 229 134 199 228 130 201 236 128 203 231 131 205 234 134 204 240 117 209 242 133 208 236 128 209 243 143 208 238 145 209 239 123 215 247 133 213 247 146 211 240 161 210 223 148 213 243 144 214 250 156 215 239 155 218 235 158 217 241 163 217 235 142 223 255 161 220 245 149 223 252 154 223 246 170 220 246 151 225 254 153 227 255 170 224 243 176 225 238 161 230 253 163 232 255 181 231 244 166 235 255 172 236 253 190 240 253 184 242 254 193 243 255 193 248 253]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11081
! !
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 11082
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11083
!GenericToolbarIconLibrary class methodsFor:'image specs-widgets'!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11084
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11085
colonBitmap
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11086
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11087
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11088
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11089
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11090
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11091
     self colonBitmap inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11092
     ImageEditor openOnClass:self andSelector:#colonBitmap
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11093
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11094
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11095
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11096
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11097
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11098
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11099
        constantNamed:'GenericToolbarIconLibrary class colonBitmap'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11100
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11101
@@@@@@@@@@@@@@@@@@@@@@D@@P@A@@D@@@@@@P@@@P@A@@D@@@D@@@@A@@@A@@D@@@D@@@@A@@D@@@@@@@D@@P@@@@D@@@@B@@@@@P@@@@D@@P@B@ H@@P@A
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11102
@@@@@P@@@ HB@@@A@@@@@P@A@@@B@@@A@@D@@@@A@@@@@@@@@@D@@@@A@@@A@@D@@P@@@P@@@@@A@@D@@P@A@@@@@@D@@@D@@P@A@@@A@@@@@P@@@@@@@@@A
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11103
@@@@@P@A@@@B@@@A@@D@@@@A@@@B@ H@@@D@@@@A@@D@@ HB@@D@@P@@@@D@@@@B@@@@@P@@@@D@@P@@@@@@@P@A@@@@@P@@@P@A@@@A@@@@@P@@@P@A@@D@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11104
@@D@@@@@@P@A@@D@@P@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11105
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11106
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11107
led0
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11108
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11109
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11110
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11111
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11112
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11113
     self led0 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11114
     ImageEditor openOnClass:self andSelector:#led0
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11115
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11116
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11117
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11118
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11119
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11120
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11121
        constantNamed:'GenericToolbarIconLibrary class led0'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11122
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11123
@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@@@@@ @B@ HB@ HB@@H@@@HB@@HB@ HB@@HB@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@ @@@@@@@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11124
@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@@@@@@@@@@HB@@@B@@@A@@D@@P@@@ @@@@@A@@D@@P@A@@@@@@H@@@D@@P@A@@@B@@@B@ @@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11125
@ @@@ HB@@@@@@@B@ H@@@HB@ @@@@@@@ HB@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@ @@@@@@@ HB@@@B@ @B@ HB@ @B@ @@@ @B@ HB@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11126
@@H@@@@B@ HB@ HB@ H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11127
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11128
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11129
led1
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11130
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11131
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11132
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11133
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11134
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11135
     self led1 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11136
     ImageEditor openOnClass:self andSelector:#led1
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11137
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11138
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11139
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11140
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11141
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11142
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11143
        constantNamed:'GenericToolbarIconLibrary class led1'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11144
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11145
@@@@@@@@@@@@@@@@@@@@@@D@@P@A@@D@@@@@@P@@@P@A@@D@@@H@@@@A@@@A@@D@@@HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11146
@@@@@P@@@@@@@@HB@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@@HB@@@A@@@A@@D@@P@@@ @@@@@A@@D@@P@A@@@@@@D@@@D@@P@A@@@B@@@@@P@@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11147
@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@ HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB@@@@@P@@@P@A@@@B@ @@@P@@@P@A@@D@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11148
@@H@@@@@@P@A@@D@@P@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11149
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11150
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11151
led2
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11152
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11153
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11154
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11155
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11156
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11157
     self led2 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11158
     ImageEditor openOnClass:self andSelector:#led2
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11159
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11160
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11161
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11162
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11163
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11164
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11165
        constantNamed:'GenericToolbarIconLibrary class led2'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11166
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11167
@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@@@@@P@B@ HB@ HB@@H@@@@A@@HB@ HB@@HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11168
@@@@@P@@@@@@@@HB@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@@HB@@@A@@HB@ HB@ H@@ @@@@HB@ HB@ HB@ @@@@H@@ HB@ HB@ @A@@@B@ @@@@@@@@@A
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11169
@@@@@ HB@@@@@@@A@@D@@@HB@ @@@@@@@@D@@@@B@ H@@@@@@@D@@P@@@ HB@@@@@@@@@P@@@@HB@ @@@@@@@P@A@@@B@ @B@ HB@ @A@@@@@ @B@ HB@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11170
@@D@@@@B@ HB@ HB@ H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11171
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11172
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11173
led3
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11174
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11175
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11176
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11177
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11178
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11179
     self led3 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11180
     ImageEditor openOnClass:self andSelector:#led3
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11181
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11182
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11183
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11184
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11185
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11186
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11187
        constantNamed:'GenericToolbarIconLibrary class led3'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11188
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11189
@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@@@@@P@B@ HB@ HB@@H@@@@A@@HB@ HB@@HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11190
@@@@@P@@@@@@@@HB@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@@HB@@@A@@HB@ HB@ H@@ @@@@HB@ HB@ HB@ @@@@D@@ HB@ HB@ @B@@@@@P@@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11191
@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@ HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB@@@@@P@B@ HB@ @B@ @@@P@B@ HB@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11192
@@H@@@@B@ HB@ HB@ H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11193
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11194
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11195
led4
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11196
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11197
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11198
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11199
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11200
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11201
     self led4 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11202
     ImageEditor openOnClass:self andSelector:#led4
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11203
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11204
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11205
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11206
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11207
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11208
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11209
        constantNamed:'GenericToolbarIconLibrary class led4'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11210
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11211
@@@@@@@@@@@@@@@@@@@@@@D@@P@A@@D@@@@@@ @@@P@A@@D@@@H@@@HB@@@A@@D@@@HB@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@ @@@@@@@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11212
@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@@@@@@@@@@HB@@@B@@HB@ HB@ H@@ @@@@HB@ HB@ HB@ @@@@D@@ HB@ HB@ @B@@@@@P@@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11213
@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@ HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB@@@@@P@@@P@A@@@B@ @@@P@@@P@A@@D@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11214
@@H@@@@@@P@A@@D@@P@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11215
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11216
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11217
led5
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11218
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11219
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11220
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11221
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11222
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11223
     self led5 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11224
     ImageEditor openOnClass:self andSelector:#led5
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11225
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11226
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11227
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11228
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11229
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11230
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11231
        constantNamed:'GenericToolbarIconLibrary class led5'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11232
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11233
@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@@@@@ @B@ HB@ HB@@D@@@HB@@HB@ HB@@D@@@@B@ H@@@@@@@D@@P@@@ HB@@@@@@@@@P@@@@HB@ @@@@@@@P@A
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11234
@@@B@ H@@@@@@@@A@@@@@ HB@@@@@@@A@@D@@@HB@@@@@@@@@@D@@@@B@@HB@ HB@ H@@P@@@@HB@ HB@ HB@ @@@@D@@ HB@ HB@ @B@@@@@P@@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11235
@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@ HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB@@@@@P@B@ HB@ @B@ @@@P@B@ HB@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11236
@@H@@@@B@ HB@ HB@ H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11237
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11238
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11239
led6
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11240
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11241
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11242
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11243
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11244
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11245
     self led6 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11246
     ImageEditor openOnClass:self andSelector:#led6
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11247
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11248
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11249
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11250
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11251
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11252
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11253
        constantNamed:'GenericToolbarIconLibrary class led6'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11254
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11255
@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@@@@@ @B@ HB@ HB@@D@@@HB@@HB@ HB@@D@@@@B@ H@@@@@@@D@@P@@@ HB@@@@@@@@@P@@@@HB@ @@@@@@@P@A
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11256
@@@B@ H@@@@@@@@A@@@@@ HB@@@@@@@A@@D@@@HB@@@@@@@@@@D@@@@B@@HB@ HB@ H@@P@@@@HB@ HB@ HB@ @@@@H@@ HB@ HB@ @B@@@B@ @@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11257
@ @@@ HB@@@@@@@B@ H@@@HB@ @@@@@@@ HB@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@ @@@@@@@ HB@@@B@ @B@ HB@ @B@ @@@ @B@ HB@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11258
@@H@@@@B@ HB@ HB@ H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11259
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11260
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11261
led7
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11262
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11263
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11264
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11265
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11266
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11267
     self led7 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11268
     ImageEditor openOnClass:self andSelector:#led7
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11269
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11270
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11271
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11272
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11273
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11274
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11275
        constantNamed:'GenericToolbarIconLibrary class led7'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11276
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11277
@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@@@@@P@B@ HB@ HB@@H@@@@A@@HB@ HB@@HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11278
@@@@@P@@@@@@@@HB@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@@HB@@@A@@@A@@D@@P@@@ @@@@@A@@D@@P@A@@@@@@D@@@D@@P@A@@@B@@@@@P@@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11279
@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@ HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB@@@@@P@@@P@A@@@B@ @@@P@@@P@A@@D@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11280
@@H@@@@@@P@A@@D@@P@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11281
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11282
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11283
led8
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11284
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11285
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11286
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11287
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11288
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11289
     self led8 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11290
     ImageEditor openOnClass:self andSelector:#led8
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11291
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11292
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11293
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11294
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11295
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11296
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11297
        constantNamed:'GenericToolbarIconLibrary class led8'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11298
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11299
@@@@@@@@@@@@@@@@@@@@@PDA@PDA@PDA@@@@@P@A@PDA@PDA@@D@@@DA@@DA@PDA@@DA@@@A@PD@@@@@@@DA@P@@@PDA@@@@@@@A@PD@@@DA@P@@@@@@@PDA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11300
@@@A@PD@@@@@@@DA@P@@@PDA@@@@@@@A@PD@@@DA@@@@@@@@@@DA@@@A@@DA@PDA@PD@@P@@@@DA@PDA@PDA@P@@@@D@@PDA@PDA@P@A@@@A@P@@@@@@@@@A
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11301
@P@@@PDA@@@@@@@A@PD@@@DA@P@@@@@@@PDA@@@A@PD@@@@@@@DA@P@@@PDA@@@@@@@A@PD@@@DA@P@@@@@@@PDA@@@A@P@A@PDA@P@A@P@@@P@A@PDA@PDA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11302
@@D@@@@A@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11303
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11304
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11305
led9
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11306
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11307
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11308
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11309
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11310
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11311
     self led9 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11312
     ImageEditor openOnClass:self andSelector:#led9
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11313
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11314
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11315
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11316
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11317
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11318
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11319
        constantNamed:'GenericToolbarIconLibrary class led9'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11320
        ifAbsentPut:[(Depth8Image new) width: 13; height: 23; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11321
@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@@@@@ @B@ HB@ HB@@H@@@HB@@HB@ HB@@HB@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@ @@@@@@@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11322
@@@B@ H@@@@@@@HB@ @@@ HB@@@@@@@B@ H@@@HB@@@@@@@@@@HB@@@B@@HB@ HB@ H@@ @@@@HB@ HB@ HB@ @@@@D@@ HB@ HB@ @B@@@@@P@@@@@@@@@B
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11323
@ @@@P@A@@@@@@@B@ H@@@@A@@@@@@@@@ HB@@@A@@D@@@@@@@HB@ @@@@D@@@@@@@@B@ H@@@D@@P@@@@@@@ HB@@@@@P@B@ HB@ @B@ @@@P@B@ HB@ HB
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11324
@@H@@@@B@ HB@ HB@ H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11325
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11326
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11327
meterBitmaps
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11328
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11329
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11330
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11331
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11332
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11333
     self meterBitmaps inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11334
     ImageEditor openOnClass:self andSelector:#meterBitmaps
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11335
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11336
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11337
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11338
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11339
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11340
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11341
        constantNamed:'GenericToolbarIconLibrary class meterBitmaps'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11342
        ifAbsentPut:[(Depth8Image new) width: 260; height: 27; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11343
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11344
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11345
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11346
@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@B @@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11347
B @@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@H0@@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11348
@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@H0@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@(@APTEAPT@@@@@@@TEAPTEAP@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11349
B @EAPTEAPT@@@@EAPTEAPTE@@@J@@TEAPTE@@@@@@@EAPTEAPT@@@(@APTEAPT@@@@@@@@EAPTEAP@@B @EAPTEAPTEAPT@@@TEAPTE@@@J@@TEAP@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11350
@@@@@@TEAPT@@@(@APTEAPT@@@@@@@@EAPTEAP@@B @EAPT@@@@@@@@@@@@@@@TE@@@#@@TEAPTE@@@@@@@EAPTEAPT@@@(@APTEAPT@@@@@@@TEAPTEAP@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11351
B @EAPTEAPT@AP@EAPTEAPTE@@@#@@TEAPTEAP@E@@TEAPTEAPT@@BL@APTEAPTE@@T@APTEAPTEAP@@B @OC0<EEQP+BR,TG@TOB0<KAP@J@@,KB0,KAQ0[
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11352
A@,KB0,KB0,@@@(@C0,OAP,JH LCF10EB0,OB0T@B TKC0,EEQPCCP4+C!!0EB0<KAP@J@@<KC0,OB0<EEP(AB0,KB0<@@@(@C0,K@RH+J0LI@0L[C0,OB0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11353
B TKC0,KAPP+CP4"@P,KB0<KAP@J@@,KERL#H2L#H2L#H2L\B0,@@BLEC0<OAP,AEBH_EB@KB0,OB0T@B @OC0,EC0(_J2HTG@TKB0<KAP@J@@,EB0,EB0,K
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11354
AP,KB0,EB0,@@BLEB0TKB0TKB0,EB0,KB0TKB0T@H0@KAP,KAP,KB0TKB0,KAP,K@@@JB0<OB1PHFQ$YFQ$RG0<OC0<E@@(EC0<OC0<OHQ$YB ,OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11355
B TOC0,AG!!$YFQ$YD!!<KC0<OAP@JAP<OB1PHFQ$YFQ$YB@(KC0<E@@(EC0<OC0<OB2L*FQ$IB0<OC0T@B TOC1TBFQ$YFQ$YFQ$_B0<OAP@JAP<OC1TIFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11356
FQ$YF"@KC0<E@@(EC1PRFQ$YFQ$YFQ$YFQ$"C0T@H0TOC0,JHQ$YFQ$YFQL B0<OAP@JB0<OB08BFQ$YFQ$RJ0<OC0<E@@(EC0<OC0<KC0,KC0,OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11357
H0TOC0<OC0,OB0,OB0<OC0<OAP@#AP<OC0<OB0<KB0<KC0<OC0<E@@(KG@<+FQ$YFQ$YFQ$YD1TUEPT@B ,\EQTOEP$YFQ$IC1TUEQTUAP@JB10OEA$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11358
FQ$YFP$UEQTE@@(KG@<"FQ$YFQ$YFQ$YFQPOG@T@B ,\EQ0UG@<#BA$YFQ$NC10UAP@JB10OB!!$YFQ$YFQ$YFP4OEQTE@@(KGAT\JQ$YFQ$YFQ$YC@(UEPT@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11359
B!!X\D!!$YFQ$YFQ$YFQ$YFQH\@@@#B2PU@1$YFQ$YFQ$YFP0JEQTE@@(KEQTCFQ$YFQ$YFQ$YF!!TUEPT@B ,\EQTOC0<OC0<OC1TUEQTUAP@#B10UEP<OC0<O
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11360
C0<OEQTUEQTE@BLKGATUC0<OC0<OC0<UEQTUEPT@B <\EA$YFQ$HF"(YFQ$YCQ0 AP@JC2@\H0$HFQ$YFQL\GB@ HB@E@@(OG@DRFQ$Y@!!(*FQ$YFQ<\H@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11361
B <\@QHYFQ$SF2H*FQ$YFPP\AP@JC2@ GB@\HB(YFQ$YFP$UHB@E@@(OHATCFQ$RHQ8!!HRDSAA0 H@T@B < EP4YFQ$HBR,ZFQ$YD D\AP@JC10CD!!$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11362
FQ$YFQ$YD10E@BLOEQ,YFQ$YF",I@!!$YFQHDG@T@B <\J1$YFQ$!!D18YFQ$YCQ0 B0@JC2@\H10\GA0\GA0\GB@ HB@E@BLOHA0#GA0\GA0\GA0\HB@ H@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11363
H0< HBL\GA0\GA0\GA0 HB@ AP@JEPDHFQ$YHRL\HB,YFQ$YF2@K@@(OH10MFQ$YFQ$YIR@ H2@ H@,@B!!T H!!$YFPH#GB@ZFQ$YB@D B0@JER@[FQ$YG!!0\
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11364
I DHFQ$YH"@K@@(UH2@#H10IFQ$YFQ$YD10FH0,@B!!T#HBDYFQ8 HB@ HA0 H2@#B0@JER@DFQ$YD (UGA0IFQ$YEB@K@@(UH10DH",+H",_F!!$YFQHDH@,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11365
H1T#HQ$YFP$UGATABA$YFR, B0@JC0(YFQ$YCR@\GBHYFQ$YEB@K@@(OH0DA@PDA@PDA@R@ H2@ H@,@H1T#@PDA@PDA@PDAHB@#HB@ B0@#C2LA@PDA@PDA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11366
@PD HBL HB@K@@(U@1$YFP0DH0DAH1(YFQ$^H0,@B!!0AH18YFQ$YFQ$ZH0DA@PDAB0@JGBLIFQ$YJ2@AH0(RFQ$YF2LK@@(\@Q,YFQ$TH0DAH1LYFQ$CH0,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11367
B!!0A@PD#H!!$YFQHYFQ$SH0DAB0@JG@DJD!!$Y@2@AH0DA@PDA@PDK@@(\H0$YFQ$CHBL#H2LMD!!8D@P,@B!!TD@PD H2@#G@(HFQ$YF2LAB0@#EP(YFQ$YB"LA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11368
@RLMFQ$YBRLK@@(UBQ$YFR(A@PDAH1LYFQ$SH0,@B!!0AH0DA@PD#@PD#H0DA@PDAB0@#EPD#@PDA@RLA@RL#@PDA@PDK@BL\@PDA@PDAH0DA@RLA@PDA@P,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11369
B"@*FQ$YCPPJB (JC 0YFQHTB0@JH@8JF1(!!BA$YFQ8DB (JB (O@@( B"HYFP0NB (JB  YFQ$+A@<@B"@JC!!LBCP(JB (DJ!!$YFPLDC0@JH@8JB LYFQ$*
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11370
BQ$YFQ(DB (O@@( B"HYFQ$[B!!<"F0(JB (NB <@B"@TCA$YD!!<"@0L"C PNB (JC0@JH@8JB (JB (TBA$YFP4DB (O@BL C HYFQ$TB (JAA8YFQ$CA@<@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11371
B!!0^FQ$YBPPJB (JC!!HYFP NB0@JH@8JB (JB (JB (JB (JB (O@BL C (+J2,+J2,+J2,+J2,JB <@H2@NB (JB (JB (JB (JB (JC0@JAAHYFQ$+G1<_
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11372
G1<[J!!$YFPLO@@(DA1<[F1PIFQ$YJ!!,_G1<_G1T@B P"F1(BBQ<_G1<"D!!$YFP$[EP@JABH_F1<[G1<_G1LYFQ$RH!!<U@@(DH!!,"D!!$YFRHIFQ$YHQ,_G1T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11373
B P_D1$YD!!LLFQ$YJ L[G1<_EP@J@P$YFQ$RCA$YFQ$RD1,[G1<U@@(DA1<_G1<_F0HYFQ$LG1<_G1T@H0P[F!!$YFRD_G1,CD!!$YD"H_EP@JAB(YFQ$IF1<_
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11374
G1<_D!!$YFRHU@@(DA1<[F1P_G1<_G1<_G1<_G1T@H0P[G!!HRD!!HRD!!HRD!!HRD!!8_EP@#A@\_F1,TG1<_G1<_G1<_G1<U@@("FQ$YD!!(ZF!!(ZF!!LHFQ$YJ!!0@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11375
B!!,^F"TZD2DYFQ$HD2TZF!!(ZG@@JG18ZD1LSF!!(ZD0HYFQ$LF!!( @@(_G!!LZD1(SHP0YFQ$YBA(ZF!!0@B!!<ZF!!HYFQ$!!D2(YFQ$BD1(ZG@@JG1(HFQ$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11376
FQ$YFP SF!!(\@@(]@!!$YFQ$YFQ$YFQ$YD!!8ZF"@@B!!<^F!!(ZF!!L*FQ$YFQ8SF!!(ZG@@#G18ZBA$YFQHRD!!$YFQH^F!!( @@([BA$YFP SF!!(ZD2(YFQ$YG!!0@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11377
B!!,^F"TZHRDZF!!(ZD2TZF!!(ZG@@#G18^FQ$YFQ$YFQ$YFQ$YG!!( @BL[G!!(%F"D!!F!!(ZF!!L%F!!(ZF!!0@A@8YFQ$HG1<_G1<_F18YFQ$SC0@JABH_G1<[BQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11378
FRD[G1<_G1<U@@(DH!!<_G1<_KA,SFQ$YFPL_G1T@B P"G1<_G1,!!FQ$YFQHSF1<_EP@JABHBFQ$YG!!,[CQ$YFRD[G1<U@@(DG2DYFQ$YD!!HYFQ$YFQ8_G1T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11379
B D^FQ$YFQ$R@  YFQ$YCB,_EP@JA@\_G1<_H 0YFQ$MF1<_G1<U@BLDH!!,^FQ$YFQ$YFQ$YCBH_G1T@B PSFQ$YFQL[F1<IFQ$YFQ$CC0@JABH_G1<[G1<_
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11380
G1<[G1<_G1<U@BLDH!!8RFQ$YFQ$YFQ$YD!!H^G1T@H0P"G1<_F1<_G1<_F1<_G1<_EP@JAA$YFP TEAPTEAPNF!!$YFP4K@@(#EAPTE@8CFQ$YHP8TEAPTE@<@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11381
B"LTEAPTE@8THQ$YFQ$ZC!!PTC0@JH1,TEAPTC"HHFQ$YFQ$^C!!PO@@( F!!$YFPHTE@8IFQ$YF 8TE@<@B"LTJ1$YC@$[EA<!!FQ$YFR,NC0@JHA(YFQ$YBA<T
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11382
C"HRFQ$YF 8O@@(#F1PTE@8MFQ$Y@ 8TEAPTE@<@H0DN@1$YFQ$YFQ$YFQ$YBA,TC0@JH1P*FQ$YFPH!!J!!$YFQ$YFRHO@@(#EAPTE@8TEAPTE@8TEAPTE@<@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11383
H2LTG!!$YFQ$YFQ$YFQ$YD!!8TC0@#H1PTEAPNEAPTEAPNEAPTEAPO@@(AFQ$YC@8JC (NB PZFQ$YBP,@B"@NB (JABHYFQ$^B (JB (JC0@JH08NB 8DEB(Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11384
FQ$YHP8JB 8O@@( C (JB (NB 8_BQHYFQ$CB <@B"LLFQ$HF0(JB"HYFQ$ZA@(JC0@JE08JH LTA@(JB 8BFQ$YF (O@@(\CQ$YFQ$CA@(NABHRFQ$HC <@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11385
B"@NB (JB HYFQ$CB (JB 8JC0@#HA,LFQ$YG!!<NE@$LFQ$YD0(O@@(#B!!,LFQ$YFQ$YFQ$YFQ$YF0,@B"@NB (JB (JB (JB (JB (JC0@#H@8DG!!8^G!!8^
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11386
G!!8^G!!8^A@(O@BL C (JB (JB (JB (JB (JB <@B"@HFQ$YC DDA@PD@RDYFQ$_AP@JH@PDA@PAH!!$YFQ(AA@PDA@PK@@(\A@PD@Q<LFQ$YD LD@PPDA@,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11387
B"@DAAPN@PPDA@D#@1$YFR(DB0@JH1$YFP0!!J"(*BA$YFP0*F (K@@(\A@8[A@DDA@PD@RHYFQ$!!@P,@B!!TCFQ$YC@PDA@PD@RDYFQHJB0@JH@PDA@D_FQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11388
B@PDA@PDA@PK@BLUBQ$YFRDA@PPDH1,LFQ$HA@,@B!!0J@QPBFQ$YFQ$YBAHYFQHJB0@JH@PDA@PDA@PDA@PAA@PDA@PK@BL A@PDA@PDA@PDA@PDA@PDA@,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11389
H2@DA@PDA@PDA@PD@PPDA@PDB0@JERDYFQ$IH0DA@PDACA$YFP(K@@(U@PDA@RL_FQ$YF"L#@PDA@P,@B!!0A@RLIFQ$YFP0TH@DA@PDAB0@JG@DIFQH[H0DA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11390
@RLNFQ$YB@DK@@(\D!!$YFQ$YFQ$YFQ$YFQ$YH T@B!!TNCA$ZH0DA@PD#EA$YFQ8AB0@JEQ,YFQ$)@PDA@PD#F!!$YD PK@@(U@PDAH2(YFQ$MH@DA@PDA@P,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11391
H1T^FQ$YG2LAA@DAH18YFQ$JB0@JG@D#H0DTCRD!!CQ,DCA$YJ DK@@(U@PDA@PDA@PDA@PDA@PDA@P,@H1TA@PDA@PDA@PDA@PDA@PDAB0@#EPDA@PDA@PDA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11392
@PDA@PDA@PDK@@(OBQ$YFPH#H2L#HBHYFQ$BH0,@B!!TAH2L#HA,YFQ$SHBL#H2L#B0@JEPD G1$YFQ$^B!!0#H2L#H2LK@@(OB!!$YFP AHBL#HB,YFQ$B@PT@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11393
B <"BA$YFQ$YFQ$YFQ$YFQ$TAP@JC2HYFQ$THBL#H10IFQ$YF"@K@@(UA@0YFP0AH2L#H2LBFQ$L@PT@B!!TAH2LNFQ$YFQ, H2L#H2L#B0@#C1(YFQ$"GBL#
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11394
H2L HQ$YFPPE@@(UH1P*D0D\H2L GBHYFQ$SH@,@B!!TAH2L#HBLA@PDAHBL#H2L#B0@#ERL#H2L#H2L#H2L#H2L#H2LE@BLUH2L#H2L#H2L#H2L#H2L#H0,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11395
B <DD!!$YFR,\GATJCA$YFPL\AP@JC2@ HB@\F1$YFQ( HB@ HB@E@@(OH@(RFQ$RJ2@ H2L#HB@ H@,@B <DD!!$YFQ(#HA0NCA$YFQ8 B0@JER@#EBH"H"H"
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11396
D1$YFRD[C"@K@@(OEA$YFPH#GA0\F1HYFQ$_G@T@B <\H!!$YFP4\GA0\CQ$YFQ8 B0@JC2L GB,YFQ$YAB@ HB@ H2@V@BLKBQ$YFPHAGB@\GBHYFQ$HH0,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11397
B <#BA$Y@ D$HA0ABA$YFQP AP@JC2@ HB@\H!!,[F2H HB@ HB@E@BLOHB@ HA0 GB@\GB@ HB@ H@,@H0< HB@ GB@\HA0\HB@ HB@ AP@JC1T_FQ$YFQ("
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11398
BP0YFQ$HH10K@@(OHB@ GA0NFQ$YD1T\HB@ H@T@B <\F!!$YFP0!!J"(*@  BBR@ AP@JC10CFQ$YFP ^HQ$YFQ$YEATE@@(OHA0\EQTUEP<[FQ$Y@0,\H@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11399
B < J!!$YFP IBQ(YFQ$YG!!0\B0@JC2@ BA$YFQ8NC"DYFQ$YEATE@@(OHA0UCQ$YFP0#GB@ HB@ HB\@H0,DFQ$YFP "AAP^FQ$YFP$UAP@JC2@*FQ$YBA, 
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11400
E@HYFQ$MGA0K@@(OHB@ GA0NFQ$YD1T\HB@ H@T@H0< HB@\GB@ HB@ EQ0 HB@ AP@#C2@ HA0\HB@ HB@UGB@ HB@E@@(OGA0!!FQ$YFQ$YFQ$YD PUG@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11401
B ,\GA0\EP(YFQ$MEQ0\GA0\AP@JB0DYFQ$YFQ$YFQ$YFQ$YH <E@@(OGB@BFQ$YFQ$YFQ$YFR,UG@T@B ,\GA0\GA0\EQ,YFQ$CC10\AP@JB1TDD!!$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11402
FQ$YFPH#EQ0E@@(OGATTFQ$YFQ$YFQ$YFPLUG@T@B ,\GATZFQ$Y@!!0\GA0\GA0\AP@#C1T_FQ$YFQ$YFQ$YFQ$!!HA0E@@(OEQPYFQ$YFQHYFQ$YBBLUG@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11403
B ,\GA0\EP(YFQ$MEQ0\GA0\AP@#B10\GA0UGA0\GA0UGA0\GA0E@BLKGA0\GAT\GA0\GAT\GA0\G@T@B ,\ER@ZFQ$YFQ$YFP JC1TUAP@JB1TUEQTUH@0Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11404
FRHKEQTUEQTE@@(KEP4YFQ$YFQ$YFQ$YFQ$_C0T@B ,UC2LZD!!$YFQ$YFR(TC1TUAP@JB10UEQTUEQTO@Q$YFQPOEQTE@@(KG@<AG!!HYFQ$YFQHMH@<UEPT@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11405
B ,UEP<T@!!$YFQ$YFP0_C1TUAP@JB1TUC2HYFQ$+C1TUEQTUEQTE@BLKEP<T@!!$YFQ$YFQ$R@1TUEPT@B ,UC1PHFQ$YFQ$YFR(AC1TUAP@JB1TUEQTUH@0Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11406
FRHKEQTUEQTE@BLKEQTUEQTUEQTUEP,UEQTUEPT@H0,UEQTUEQTUEQTUB1TUEQTUAP@JAQTOC0<DBP0YD!!8[G@,UEQTE@@(EEP<OC0<KAA(IEP<OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11407
B ,OC0D[H"H"H"H"F1,_C!!0OAP@JAQTUC0<#F0LSBQ<DEP,UC1TE@@(KC1TOEQTUEQTKG00SC0<OEPT@B TUC0,OH1,ICPLTH@<OEQTUAP@JAQTUEP,UC 4)
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11408
BAL[H@,OEQTE@@(EEQTOC0LLBQTOC1TOEP<UC0T@H0,UC0,UAB,!!@ HMF2LKC0<UAP@JB1TOB10ND1HRD!!(NEP,UEQTE@@(EEP<OC0<KAA(IEP<OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11409
H0TUC0<OC0<OC0<OC0<OC0<OAP@#AQTOC0<OC0<OC0<OC0<OC0<E@@(EC0<OC0,KER@\C0TOC0<OC0T@B TOC0<OC0<KB0,KC0<OC0<O@@@JAP<OB0TEAPTE
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11410
APTKAP,EC0<E@@(EC0<OC0,KAP,EAP,KC0<OC0@@B TOC0<OC0<OC0<KEP,OC0<O@@@JAP<OC0<KAPTKAQ KC0<OC0<@@@(EC0<OC1@KAQTQB0TKC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11411
B TOC0<OB1TKB0<OC0<OC0<O@@@#AP<OC0<KB0,UC0,EB0<OC0<E@@(EC0<OB0,KGB@\B0TOC0<OC0T@B TOC0<OC0<KB0,KC0<OC0<O@@@#AP<OC0<OB0,U
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11412
C0,OC0<OC0<E@BLEC0<OC0<KB1TOB0<OC0<OC0@@B @KB0,KB0,EAPTKB0,KB0,K@@@J@@,KB0,KB0,KJ@,KB0,KB0,@@@(@B0,KB0,KB0,KB0,KB0,KB0@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11413
B @KB0,KB0,KB0,KB0,KB0,K@@@J@@,KB0,KB0,KB0,KB0,KB0,@@@(@B0,KB0,KB0,KB0,KB0,KB0@@B @KB0,KB0,KB0TKB0,KB0,K@@@J@@,KB0,''E ,K
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11414
B0,KB0,KB0,@@BL@B0,KB0,KB0TKB0,KB0,KB0@@B @KB0,KB0,EAP,KB0,KB0,K@@@J@@,KB0,KB0,KJ@,KB0,KB0,@@BL@B0,KB0,KB0TKB0,KB0,KB0@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11415
H0@KB0,KB0,KAP,KB0,KB0,K@@@NEA<_F1<[G1<_G1<[G1<[G1<A@@8NG1,[F1,[F1,[F1,[F1,[G0D@C!!P_F1<[G1,_F1<[KA<[G1,_@P@NEA<[G1,_F1<[
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11416
G1,_F1<[G1<A@@8TG1,_F1,[F1,_F1,_F1<[G0D@C!!P_F1<[G1<[G1,_F1<[F1,_@P@NEA<[G14_F1<]G14_G1,_G1<A@@8TG1,[F1<[G1,_F1,[F1,[G0D@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11417
@PPNC (NC (NC (NC 8JC 8NG@@NEA<_G1<[G1<_F1<[G1<[G1<A@@8NG1,[F1,[F1,[F1,[F1,[G0D@@PPNC (NC (NC (NC 8JC 8NG@@AA@8NB 8NB 8N
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11418
B 8NC (NC 8\@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11419
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11420
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11421
') ; colorMapFromArray:#[0 0 0 66 66 66 206 206 206 140 140 140 74 74 74 8 8 8 49 49 57 123 115 115 214 214 214 148 148 148 82 82 82 16 16 16 222 222 222 156 156 156 90 90 90 24 24 24 22 22 22 25 25 25 231 231 231 165 165 165 99 99 99 33 33 33 8 16 8 57 49 57 8 8 16 239 239 239 173 173 173 107 107 107 41 41 41 109 109 109 181 181 181 115 115 115 49 49 49 189 189 189 123 123 123 57 57 57 41 33 33 173 165 165 33 33 41 16 8 16 16 16 8 197 197 197 198 198 198 132 132 132 115 107 107]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11422
! !
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 11423
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11424
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11425
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
 11426
version
4533
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 11427
    ^ '$Header: /cvs/stx/stx/libwidg/GenericToolbarIconLibrary.st,v 1.175 2013-03-13 16:18:46 vrany Exp $'
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
 11428
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
 11429
3946
6fce3d77ee7c added: #svn_persp
fm
parents: 3941
diff changeset
 11430
version_CVS
4533
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 11431
    ^ '$Header: /cvs/stx/stx/libwidg/GenericToolbarIconLibrary.st,v 1.175 2013-03-13 16:18:46 vrany Exp $'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11432
! !
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
 11433
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 11434
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
 11435
GenericToolbarIconLibrary initialize!