ToolbarIconLibrary.st
author penk
Tue, 16 Mar 2004 16:59:49 +0100
changeset 5740 fd67f31da836
parent 5416 8eb8797f427c
child 5800 d9bf4b702445
permissions -rw-r--r--
update now reread all the items
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5143
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     1
"
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     2
 COPYRIGHT (c) 2001 by eXept Software AG
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     3
              All Rights Reserved
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     4
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     5
 This software is furnished under a license and may be used
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     6
 only in accordance with the terms of that license and with the
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
     9
 other person.  No title to or ownership of the software is
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    10
 hereby transferred.
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    11
"
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    12
5314
b7f466e1a1dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5311
diff changeset
    13
"{ Package: 'stx:libtool' }"
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
Object subclass:#ToolbarIconLibrary
3889
45a27367342d new images
penk
parents: 3854
diff changeset
    16
	instanceVariableNames:''
45a27367342d new images
penk
parents: 3854
diff changeset
    17
	classVariableNames:''
45a27367342d new images
penk
parents: 3854
diff changeset
    18
	poolDictionaries:''
45a27367342d new images
penk
parents: 3854
diff changeset
    19
	category:'Interface-Smalltalk'
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!ToolbarIconLibrary class methodsFor:'documentation'!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
5143
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    24
copyright
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    25
"
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    26
 COPYRIGHT (c) 2001 by eXept Software AG
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    27
              All Rights Reserved
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    28
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    29
 This software is furnished under a license and may be used
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    30
 only in accordance with the terms of that license and with the
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    32
 be provided or otherwise made available to, or used by, any
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    33
 other person.  No title to or ownership of the software is
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    34
 hereby transferred.
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    35
"
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    36
!
6b29ce555b0f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4907
diff changeset
    37
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
documentation
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
"
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    40
    A common place to keep commonly used icons.
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    (also: VW compatibility)
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
! !
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    45
!ToolbarIconLibrary class methodsFor:'image specs'!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    46
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    47
bugIcon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    48
    <resource: #programImage>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    49
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    50
    ^ self bug28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    51
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    52
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    53
copyIcon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    54
    <resource: #programImage>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    55
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    56
    ^ self copy20x20Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    57
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    58
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    59
cutIcon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    60
    <resource: #programImage>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    61
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    62
    ^ self cut20x20Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    63
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    64
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    65
doItIcon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    66
    <resource: #programImage>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    67
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
    68
    ^ self doIt20x20Icon
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    69
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
    70
5397
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    71
edit20x20Icon
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    72
    "This resource specification was automatically generated
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    73
     by the ImageEditor of ST/X."
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    74
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    75
    "Do not manually edit this!! If it is corrupted,
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    76
     the ImageEditor may not be able to read the specification."
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    77
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    78
    "
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    79
     self edit20x20Icon inspect
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    80
     ImageEditor openOnClass:self andSelector:#edit20x20Icon
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    81
     Icon flushCachedIcons
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    82
    "
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    83
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    84
    <resource: #image>
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    85
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    86
    ^Icon
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    87
        constantNamed:#'ToolbarIconLibrary class edit20x20Icon'
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    88
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    89
@ 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
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    90
@ 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
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    91
@ 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
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    92
@@@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
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    93
@ 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]
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    94
!
4a35da2c915b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5314
diff changeset
    95
5311
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
    96
newDataSet24x24Icon
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
    97
    "This resource specification was automatically generated
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
    98
     by the ImageEditor of ST/X."
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
    99
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   100
    "Do not manually edit this!! If it is corrupted,
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   101
     the ImageEditor may not be able to read the specification."
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   102
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   103
    "
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   104
     self newDataSet24x24Icon inspect
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   105
     ImageEditor openOnClass:self andSelector:#newDataSet24x24Icon
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   106
     Icon flushCachedIcons
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   107
    "
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   108
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   109
    <resource: #image>
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   110
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   111
    ^Icon
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   112
        constantNamed:#'ToolbarIconLibrary class newDataSet24x24Icon'
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   113
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   114
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDPDQDADQ@@@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HA
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   115
H"TE@@@@@P@@@@@@@@TE@@@@@QDPDQDADQTE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@P@@@@@@@@TE@@@@
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   116
@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@@@@@@@@@
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   117
@@@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]
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   118
!
b7a9705b4b89 new-dataSet icon
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   119
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   120
redoIcon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   121
    <resource: #programImage>
3828
8f2714b341f4 icons moved to here
Claus Gittinger <cg@exept.de>
parents: 3820
diff changeset
   122
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   123
    View styleSheet name = #winXP ifTrue:[
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   124
        ^ self redoXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   125
    ].
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   126
    ^ self redo20x20Icon
3828
8f2714b341f4 icons moved to here
Claus Gittinger <cg@exept.de>
parents: 3820
diff changeset
   127
!
8f2714b341f4 icons moved to here
Claus Gittinger <cg@exept.de>
parents: 3820
diff changeset
   128
5416
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   129
saveAsToFile32x22Icon
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   130
    "This resource specification was automatically generated
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   131
     by the ImageEditor of ST/X."
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   132
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   133
    "Do not manually edit this!! If it is corrupted,
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   134
     the ImageEditor may not be able to read the specification."
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   135
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   136
    "
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   137
     self saveAsToFile32x22Icon inspect
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   138
     ImageEditor openOnClass:self andSelector:#saveAsToFile32x22Icon
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   139
     Icon flushCachedIcons
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   140
    "
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   141
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   142
    <resource: #image>
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   143
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   144
    ^Icon
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   145
        constantNamed:#'ToolbarIconLibrary class saveAsToFile32x22Icon'
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   146
        ifAbsentPut:[(Depth4Image new) width: 32; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   147
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3@@@@@@@@@@@@@@@CQDMDP0@@@@@EUUAP@@@@@3L3L3L@@B@AAUUPD@@@@@MDP4QC@@@"@P
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   148
UUTA@@@@@CL3L3L"H"H"DEUU@P@@@@@4QCQDL"H"H"@@@@D@@@@@L3L3L2H"H"HQDQDQ@@@@@CQDMDP0@@H DP@@@P@@@@@3L3L3L@@B@AD@UPD@@@@@MDP4
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   149
QC@@@@@Q@ETA@@@@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   150
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   151
!
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
   152
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   153
searchIcon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   154
    <resource: #programImage>
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   155
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   156
    View styleSheet name = #winXP ifTrue:[
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   157
        ^ self searchXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   158
    ].
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   159
    ^ self search20x20Icon
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   160
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   161
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   162
undoIcon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   163
    <resource: #programImage>
3830
a934cfee3057 next stage
penk
parents: 3829
diff changeset
   164
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   165
    View styleSheet name = #winXP ifTrue:[
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   166
        ^ self undoXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   167
    ].
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
   168
    ^ self undo20x20Icon
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   169
! !
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   170
4907
13536c12d839 category
Claus Gittinger <cg@exept.de>
parents: 4688
diff changeset
   171
!ToolbarIconLibrary class methodsFor:'image specs-16x16'!
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   172
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   173
back16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   174
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   175
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   176
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   177
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   178
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   179
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   180
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   181
     self back16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   182
     ImageEditor openOnClass:self andSelector:#back16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   183
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   184
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   185
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   186
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   187
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   188
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   189
        constantNamed:#'ToolbarIconLibrary class back16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   190
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   191
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@PX@@@@@@@@@@@@@@@@@@PXE@@@@@@@@@@@@@@@@@PXEAP@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   192
@@@@@@@@@@@@@PXEAPTF@ HBA @@@@@@@PXEAPTEAPTEAPP@@@@@@ XEAPTEAPTEAPTD@@@@@@@CA@TEAPTEAPTEA@@@@@@@@@LDAPTEA@PDA@P@@@@@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   193
@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   194
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   195
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   196
bottom16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   197
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   198
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   199
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   200
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   201
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   202
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   203
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   204
     self bottom16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   205
     ImageEditor openOnClass:self andSelector:#bottom16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   206
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   207
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   208
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   209
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   210
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   211
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   212
        constantNamed:#'ToolbarIconLibrary class bottom16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   213
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   214
@@@@@@@@@@@@@DQDQD@@@@@@QUY"P@@@@@AEH"M@@@@@@DT"H4@@@@@@Q"H#P@@@QDQAH"MDQDAFD"H"H"H0P@Q!!H"H"H0P@@DXRH"H0P@@@AFD"H0P@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   215
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   216
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   217
3521
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   218
centerAdjust16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   219
    "This resource specification was automatically generated
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   220
     by the ImageEditor of ST/X."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   221
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   222
    "Do not manually edit this!! If it is corrupted,
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   223
     the ImageEditor may not be able to read the specification."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   224
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   225
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   226
     self centerAdjust16x16Icon inspect
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   227
     ImageEditor openOnClass:self andSelector:#centerAdjust16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   228
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   229
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   230
    <resource: #image>
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   231
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   232
    ^Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   233
        constantNamed:#'ToolbarIconLibrary class centerAdjust16x16Icon'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   234
        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:'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   235
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   236
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   237
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   238
!
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   239
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   240
configure16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   241
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   242
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   243
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   244
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   245
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   246
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   247
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   248
     self configure16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   249
     ImageEditor openOnClass:self andSelector:#configure16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   250
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   251
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   252
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   253
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   254
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   255
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   256
        constantNamed:#'ToolbarIconLibrary class configure16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   257
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   258
@@@@@@@@@@@@@DH3\@@@@@@@ARH5\@@@@@@@ARM0@@@A\@DPH3\@@@D3LBH3M0@@@!!D3L3L3\@A!!H!!D3L3L7\@T1H"I1D3L7@@T5U2H!!D3L@@@A5UWH!!D0@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   259
@@@@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   260
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   261
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   262
copy16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   263
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   264
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   265
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   266
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   267
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   268
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   269
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   270
     self copy16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   271
     ImageEditor openOnClass:self andSelector:#copy16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   272
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   273
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   274
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   275
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   276
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   277
        constantNamed:#'ToolbarIconLibrary class copy16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   278
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   279
@@C<@O8@?0C?<O?8??3??/?>??;?? O>@?8C? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   280
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   281
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   282
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   283
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   284
cut16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   285
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   286
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   287
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   288
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   289
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   290
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   291
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   292
     self cut16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   293
     ImageEditor openOnClass:self andSelector:#cut16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   294
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   295
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   296
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   297
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   298
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   299
        constantNamed:#'ToolbarIconLibrary class cut16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   300
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   301
@@@BH@H @"@CX@E@@\@@ @G@@W@GR@%HBT IL@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   302
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   303
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   304
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   305
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   306
cut16x16Icon2
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   307
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   308
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   309
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   310
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   311
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   312
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   313
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   314
     self cut16x16Icon2 inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   315
     ImageEditor openOnClass:self andSelector:#cut16x16Icon2
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   316
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   317
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   318
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   319
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   320
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   321
        constantNamed:#'ToolbarIconLibrary class cut16x16Icon2'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   322
        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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   323
@@C<@O9D?4S?1O?,?:#?.O>P?;#?+ C)@R$AJPD&@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   324
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   325
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   326
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   327
3494
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   328
doIt16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   329
    "This resource specification was automatically generated
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   330
     by the ImageEditor of ST/X."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   331
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   332
    "Do not manually edit this!! If it is corrupted,
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   333
     the ImageEditor may not be able to read the specification."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   334
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   335
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   336
     self doIt16x16Icon inspect
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   337
     ImageEditor openOnClass:self andSelector:#doIt16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   338
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   339
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   340
    <resource: #image>
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   341
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   342
    ^Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   343
        constantNamed:#'ToolbarIconLibrary class doIt16x16Icon'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   344
        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]
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   345
!
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   346
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   347
down16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   348
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   349
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   350
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   351
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   352
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   353
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   354
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   355
     self down16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   356
     ImageEditor openOnClass:self andSelector:#down16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   357
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   358
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   359
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   360
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   361
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   362
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   363
        constantNamed:#'ToolbarIconLibrary class down16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   364
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   365
@@@@@@@@@@@@@EUUUU@@@@@@U&@CT@@@@@AVL3QP@@@@@EX3ME@@@@@@TCL4T@@@UUURL3QUUUAPH3L3L3MAT@TBL3L3MAT@@E@#L3MAT@@@APH3MAT@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   366
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   367
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   368
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   369
edit16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   370
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   371
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   372
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   373
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   374
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   375
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   376
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   377
     self edit16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   378
     ImageEditor openOnClass:self andSelector:#edit16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   379
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   380
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   381
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   382
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   383
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   384
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   385
        constantNamed:#'ToolbarIconLibrary class edit16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   386
        ifAbsentPut:[(Depth8Image new) width: 16; height: 17; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   387
@@@@@@@@@@@@@@@@@@@@@@@@B (JB (JB (JB (@APT@@@(IBP$IA $IBP$IAPTC@@@JBP$IBPXIBP$IAPTC@0@@B XFA XFA XFAPTC@0L@@@(IBP$IA $I
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   388
APTC@0LD@@@JBP$IBPXIAPTC@0LDB0@@B XFA XFAP C@0LD@ @@@@(IBP$I@@ H@0LD@ @@@@@JBP$IBPTHB@ HB0D@@@@@B XFA @HB@ DA@@A@@@@@@(I
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   389
BP$GB@PDA (I@P@@@@@JBP$G@ ,FB $IBPD@@@@@B @@@P@@@@@@@@@A@@@@@@(IBP$I@@$IBP$I@P@@@@HA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   390
@@@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   391
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   392
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   393
editcopy16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   394
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   395
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   396
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   397
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   398
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   399
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   400
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   401
     self editcopy16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   402
     ImageEditor openOnClass:self andSelector:#editcopy16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   403
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   404
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   405
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   406
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   407
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   408
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   409
        constantNamed:#'ToolbarIconLibrary class editcopy16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   410
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   411
UUUU@@@@@@ATQDUP@@@@@EQDQRT@@@@@U@AEP%@@@@ATQDUUUUT@@EP@QCL5QU@@UDQDIBUEEPAT@@P@ITUATEQDIBH%QUUUU@A@@BUDL3UTIBH"ITQDEUUU
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   412
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   413
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   414
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   415
editcut16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   416
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   417
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   418
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   419
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   420
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   421
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   422
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   423
     self editcut16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   424
     ImageEditor openOnClass:self andSelector:#editcut16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   425
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   426
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   427
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   428
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   429
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   430
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   431
        constantNamed:#'ToolbarIconLibrary class editcut16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   432
        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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   433
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   434
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   435
editpaste16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   436
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   437
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   438
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   439
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   440
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   441
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   442
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   443
     self editpaste16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   444
     ImageEditor openOnClass:self andSelector:#editpaste16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   445
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   446
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   447
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   448
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   449
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   450
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   451
        constantNamed:#'ToolbarIconLibrary class editpaste16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   452
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   453
@@@@@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&
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   454
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   455
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   456
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   457
edittrash16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   458
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   459
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   460
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   461
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   462
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   463
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   464
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   465
     self edittrash16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   466
     ImageEditor openOnClass:self andSelector:#edittrash16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   467
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   468
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   469
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   470
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   471
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   472
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   473
        constantNamed:#'ToolbarIconLibrary class edittrash16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   474
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   475
@@@@@0@@@@@@@@N@H@@@@@@QE&Y@Y(@@@C!!!!DVX"H@@@ACNH"DP@@@@H"DP"Q0@@@@ XNDP''@@@@BA 8QB\@@@@HFC!!DI0@@@@ XNDP''@@@@BA 8QB\@@@@H
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   476
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   477
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   478
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   479
erase16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   480
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   481
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   482
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   483
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   484
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   485
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   486
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   487
     self erase16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   488
     ImageEditor openOnClass:self andSelector:#erase16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   489
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   490
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   491
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   492
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   493
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   494
        constantNamed:#'ToolbarIconLibrary class erase16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   495
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   496
@@@8@#0LG!! GL@O @\@C8@\0C!! \BC0DN@@P@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   497
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   498
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   499
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   500
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   501
erase16x16Icon2
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   502
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   503
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   504
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   505
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   506
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   507
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   508
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   509
     self erase16x16Icon2 inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   510
     ImageEditor openOnClass:self andSelector:#erase16x16Icon2
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   511
     Icon flushCachedIcons
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   512
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   513
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   514
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   515
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   516
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   517
        constantNamed:#'ToolbarIconLibrary class erase16x16Icon2'
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   518
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   519
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@3@@@C@@@@@0@3@C@A@@@@@ @0@A@@@@@@H@@A@@@@@@@C@C@@@@@@@C@@L@@@@@@C@PHC@@@@@@LP@B@@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   520
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   521
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   522
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   523
exec16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   524
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   525
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   526
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   527
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   528
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   529
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   530
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   531
     self exec16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   532
     ImageEditor openOnClass:self andSelector:#exec16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   533
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   534
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   535
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   536
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   537
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   538
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   539
        constantNamed:#'ToolbarIconLibrary class exec16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   540
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   541
@@@@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
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   542
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   543
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   544
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   545
exit16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   546
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   547
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   548
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   549
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   550
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   551
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   552
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   553
     self exit16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   554
     ImageEditor openOnClass:self andSelector:#exit16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   555
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   556
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   557
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   558
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   559
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   560
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   561
        constantNamed:#'ToolbarIconLibrary class exit16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   562
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   563
@@@@@@@@@@@@@@@@@@@@@@@@@QDQ@@@@@@DRH"H"@@@@@RH H"H@@@@RH"@"H%@@@AH"HBH"T@@@D"H H"IP@@@RH"@"H%@@@AH"HBH"T@@@@"H H"TC@@@B
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   564
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]
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   565
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
   566
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   567
fileNew16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   568
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   569
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   570
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   571
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   572
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   573
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   574
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   575
     self fileNew16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   576
     ImageEditor openOnClass:self andSelector:#fileNew16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   577
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   578
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   579
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   580
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   581
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   582
        constantNamed:#'ToolbarIconLibrary class fileNew16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   583
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   584
@@@@@A? G?@_>A?<G?0_?A?<G?0_?A?<G?0_?A?<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   585
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   586
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   587
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   588
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   589
fileOpen16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   590
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   591
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   592
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   593
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   594
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   595
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   596
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   597
     self fileOpen16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   598
     ImageEditor openOnClass:self andSelector:#fileOpen16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   599
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   600
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   601
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   602
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   603
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   604
        constantNamed:#'ToolbarIconLibrary class fileOpen16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   605
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   606
@@@@\@BJ@@Y0C/? ?>C?8O????;??O?8??C?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   607
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   608
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   609
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   610
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   611
fileSave16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   612
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   613
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   614
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   615
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   616
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   617
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   618
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   619
     self fileSave16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   620
     ImageEditor openOnClass:self andSelector:#fileSave16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   621
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   622
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   623
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   624
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   625
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   626
        constantNamed:#'ToolbarIconLibrary class fileSave16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   627
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   628
@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??#?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   629
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   630
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   631
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   632
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   633
fileclose16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   634
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   635
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   636
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   637
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   638
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   639
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   640
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   641
     self fileclose16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   642
     ImageEditor openOnClass:self andSelector:#fileclose16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   643
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   644
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   645
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   646
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   647
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   648
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   649
        constantNamed:#'ToolbarIconLibrary class fileclose16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   650
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   651
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@H @@@@@BH H"@@@@@@@"H"@@@@@@@@H"@@@@@@@@H"H @@@@@@H"@"H@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   652
@"@@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   653
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   654
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   655
finish16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   656
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   657
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   658
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   659
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   660
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   661
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   662
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   663
     self finish16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   664
     ImageEditor openOnClass:self andSelector:#finish16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   665
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   666
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   667
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   668
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   669
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   670
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   671
        constantNamed:#'ToolbarIconLibrary class finish16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   672
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   673
@@@@@@@@@@@@@@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
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   674
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   675
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   676
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   677
flagRed16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   678
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   679
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   680
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   681
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   682
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   683
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   684
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   685
     self flagRed16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   686
     ImageEditor openOnClass:self andSelector:#flagRed16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   687
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   688
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   689
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   690
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   691
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   692
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   693
        constantNamed:#'ToolbarIconLibrary class flagRed16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   694
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   695
@@@@@@@@@@@@@@@F@@@@@@@@@FY @@@@@@@FA&@@@@@@Y&APY @@@FXEUPI&@@@@YUUSIBY @@A%T3IBI&@@@@X4QBI&Y @@A$QBI A&@@@@YBY @@Y @@@F
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   696
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   697
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   698
3521
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   699
formatCode16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   700
    "This resource specification was automatically generated
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   701
     by the ImageEditor of ST/X."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   702
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   703
    "Do not manually edit this!! If it is corrupted,
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   704
     the ImageEditor may not be able to read the specification."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   705
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   706
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   707
     self formatCode16x16Icon inspect
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   708
     ImageEditor openOnClass:self andSelector:#formatCode16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   709
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   710
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   711
    <resource: #image>
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   712
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   713
    ^Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   714
        constantNamed:#'ToolbarIconLibrary class formatCode16x16Icon'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   715
        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:'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   716
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   717
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   718
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   719
!
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   720
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   721
forward16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   722
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   723
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   724
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   725
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   726
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   727
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   728
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   729
     self forward16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   730
     ImageEditor openOnClass:self andSelector:#forward16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   731
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   732
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   733
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   734
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   735
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   736
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   737
        constantNamed:#'ToolbarIconLibrary class forward16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   738
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   739
@@@@@@@@@@@@@@@BH@@@@@@@@@IB@@@@@@@@@!!P @@@@@@@B@TH@@@@"H"H@EB@@@BL3PP@AP @@H0@@@@@TH@@$@@@@@@YR@BP@@@@@YR@@HFY&@@YR@@@"
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   740
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   741
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   742
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   743
goto16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   744
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   745
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   746
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   747
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   748
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   749
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   750
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   751
     self goto16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   752
     ImageEditor openOnClass:self andSelector:#goto16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   753
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   754
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   755
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   756
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   757
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   758
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   759
        constantNamed:#'ToolbarIconLibrary class goto16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   760
        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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   761
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   762
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   763
idea16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   764
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   765
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   766
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   767
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   768
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   769
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   770
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   771
     self idea16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   772
     ImageEditor openOnClass:self andSelector:#idea16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   773
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   774
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   775
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   776
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   777
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   778
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   779
        constantNamed:#'ToolbarIconLibrary class idea16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   780
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   781
@@@BH"H@@@@@@BAUTB@@@@@BA*V @ @@@BAZU%)PH@@@HJUVV*@ @@@ )VQ%(B@@@BA&I T@H@@@@ T H@H@@@@@H@H@H@@@@@@*@ ( @@@@@@HB@ @@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   782
@"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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   783
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   784
3521
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   785
leftAdjust16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   786
    "This resource specification was automatically generated
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   787
     by the ImageEditor of ST/X."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   788
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   789
    "Do not manually edit this!! If it is corrupted,
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   790
     the ImageEditor may not be able to read the specification."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   791
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   792
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   793
     self leftAdjust16x16Icon inspect
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   794
     ImageEditor openOnClass:self andSelector:#leftAdjust16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   795
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   796
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   797
    <resource: #image>
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   798
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   799
    ^Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   800
        constantNamed:#'ToolbarIconLibrary class leftAdjust16x16Icon'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   801
        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:'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   802
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   803
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   804
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   805
!
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   806
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   807
lock16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   808
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   809
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   810
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   811
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   812
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   813
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   814
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   815
     self lock16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   816
     ImageEditor openOnClass:self andSelector:#lock16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   817
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   818
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   819
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   820
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   821
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   822
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   823
        constantNamed:#'ToolbarIconLibrary class lock16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   824
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   825
@@@@]7\@@@@@@@\Z*(@@@@@@]''"G)0@@@@A: @_H@@@@@G2@A< @@@@@]5@G1P@@@@^H!!RJH @@@\3)&E$M5@@A3@DP4L7T@@HN0QDL3]P@@!!+DVZ*)5@@BF
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   826
,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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   827
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   828
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   829
paste16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   830
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   831
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   832
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   833
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   834
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   835
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   836
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   837
     self paste16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   838
     ImageEditor openOnClass:self andSelector:#paste16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   839
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   840
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   841
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   842
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   843
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   844
        constantNamed:#'ToolbarIconLibrary class paste16x16Icon'
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   845
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   846
@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@AWTF@FA5\@@G\CL3L0]P@@U0@@@@A7@@A5]WU5]WT@@E]WV**** @@]WU:DQDZ(@AWU5(QDQ(Z@GU5^!!@@F** U5
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   847
]ZDQDQDZA5]W(P@@@A(@@@B!!DQDQF @@@J******@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   848
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   849
@@@G G?8??3??O?<??3??O?<??;???????=??0O?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   850
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   851
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   852
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   853
3494
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   854
redo16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   855
    "This resource specification was automatically generated
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   856
     by the ImageEditor of ST/X."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   857
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   858
    "Do not manually edit this!! If it is corrupted,
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   859
     the ImageEditor may not be able to read the specification."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   860
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   861
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   862
     self redo16x16Icon inspect
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   863
     ImageEditor openOnClass:self andSelector:#redo16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   864
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   865
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   866
    <resource: #image>
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   867
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   868
    ^Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   869
        constantNamed:#'ToolbarIconLibrary class redo16x16Icon'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   870
        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:'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   871
@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   872
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   873
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   874
!
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   875
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   876
redo16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   877
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   878
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   879
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   880
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   881
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   882
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   883
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   884
     self redo16x16Icon2 inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   885
     ImageEditor openOnClass:self andSelector:#redo16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   886
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   887
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   888
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   889
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   890
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   891
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   892
        constantNamed:#'ToolbarIconLibrary class redo16x16Icon2'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   893
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   894
@@@@@@@@@@@@@@L3L@@@@@@CL@@CL@@@@C@@@@@C@@LC@!!L2@@@0H0LSL@L2@@L#LC@@@@L @BL3L@@@@C@@H3L0@@@@L@@#L3@@@@H"H"LCL@@@L3L3L0L3
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   895
@@@@@@@@@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   896
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   897
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   898
reload16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   899
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   900
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   901
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   902
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   903
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   904
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   905
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   906
     self reload16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   907
     ImageEditor openOnClass:self andSelector:#reload16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   908
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   909
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   910
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   911
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   912
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   913
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   914
        constantNamed:#'ToolbarIconLibrary class reload16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   915
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   916
@@@@@@@@@@@@@@ARH@L@@@@@T"P@@@@@@@@"P@@@@@@@ARP@@@@@@@@BI@@@@@@@AUH"I@@@@@@@T"I@@@@@@@@EI@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   917
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   918
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   919
3521
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   920
rightAdjust16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   921
    "This resource specification was automatically generated
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   922
     by the ImageEditor of ST/X."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   923
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   924
    "Do not manually edit this!! If it is corrupted,
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   925
     the ImageEditor may not be able to read the specification."
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   926
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   927
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   928
     self rightAdjust16x16Icon inspect
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   929
     ImageEditor openOnClass:self andSelector:#rightAdjust16x16Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   930
    "
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   931
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   932
    <resource: #image>
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   933
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   934
    ^Icon
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   935
        constantNamed:#'ToolbarIconLibrary class rightAdjust16x16Icon'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   936
        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:'
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   937
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   938
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   939
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   940
!
47964cef7cd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3500
diff changeset
   941
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   942
run16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   943
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   944
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   945
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   946
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   947
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   948
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   949
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   950
     self run16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   951
     ImageEditor openOnClass:self andSelector:#run16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   952
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   953
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   954
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   955
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   956
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   957
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   958
        constantNamed:#'ToolbarIconLibrary class run16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   959
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   960
@@@@@@@@@@@@@@@AT@@@@@@!!@@EP@AT@@CPRMDT!!P0@@ATQDQDP0@@@CQEMTQD@@@@IEL@EDH@@AEDL@@AQAD@L4QP@@EDL0@@MDD@EDT@@@ADQAEDQ@@@@A
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   961
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   962
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
   963
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   964
search16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   965
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   966
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   967
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   968
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   969
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   970
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   971
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   972
     self search16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   973
     ImageEditor openOnClass:self andSelector:#search16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   974
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   975
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   976
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   977
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   978
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   979
        constantNamed:#'ToolbarIconLibrary class search16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
   980
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   981
@@@\\A10GG@>>C;8_?3??/?>??;>?/ >>C;8O @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   982
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   983
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   984
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
   985
3494
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   986
searchNext16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   987
    "This resource specification was automatically generated
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   988
     by the ImageEditor of ST/X."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   989
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   990
    "Do not manually edit this!! If it is corrupted,
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   991
     the ImageEditor may not be able to read the specification."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   992
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   993
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   994
     self searchNext16x16Icon inspect
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   995
     ImageEditor openOnClass:self andSelector:#searchNext16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   996
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   997
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   998
    <resource: #image>
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
   999
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1000
    ^Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1001
        constantNamed:#'ToolbarIconLibrary class searchNext16x16Icon'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1002
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1003
@@@DUUT@@@@@@DT@AE@E@@@@T@@@AUT@@@AP@@@EUP@@@DT@@EUU@@@@AE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@C@@@C@@@@@@D@A@D@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1004
@@@@@@@@@C@@@@L@@@@@D@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1005
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1006
A<@LY@ \BA0LO@X@FL@X0C7 _?A?<G?0^OA8<G#0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1007
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1008
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1009
!
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1010
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1011
searchPrev16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1012
    "This resource specification was automatically generated
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1013
     by the ImageEditor of ST/X."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1014
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1015
    "Do not manually edit this!! If it is corrupted,
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1016
     the ImageEditor may not be able to read the specification."
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1017
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1018
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1019
     self searchPrev16x16Icon inspect
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1020
     ImageEditor openOnClass:self andSelector:#searchPrev16x16Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1021
    "
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1022
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1023
    <resource: #image>
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1024
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1025
    ^Icon
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1026
        constantNamed:#'ToolbarIconLibrary class searchPrev16x16Icon'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1027
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1028
@@@@UUU@@@@@T@U@@EP@@@AUT@@@AP@@@EUP@@@E@@@@UUT@@EP@@@@@@@@EP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@@@0@@@0@@@@@AA@@A@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1029
@@@@@@@@@@@@L@@@@0@@@@@P@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1030
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1031
@>@&LC PNA@<L@A @1 CF@^<C?8O? ?>C18OG <^@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1032
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1033
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1034
!
735a120cc60e category change
Claus Gittinger <cg@exept.de>
parents: 3485
diff changeset
  1035
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1036
snapshot16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1037
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1038
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1039
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1040
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1041
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1042
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1043
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1044
     self snapshot16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1045
     ImageEditor openOnClass:self andSelector:#snapshot16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1046
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1047
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1048
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1049
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1050
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1051
        constantNamed:#'ToolbarIconLibrary class snapshot16x16Icon'
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1052
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1053
@@@@@@@@@@@@@@@@@@@@@@@@@G\0@@@@@0M0\3A7L0@CL3@3LCL3@@@@@@@@@@@@@@@@&Y@@@@@@L@&X&P@@@@@0BX&Y@@@@@CLI"Y$@@@@@@@&Y&P@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1054
@I&P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1055
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1056
@@@C G?<??;??/?>??;??/?>??;??/?>??9??@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1057
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1058
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1059
!
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1060
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1061
start16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1062
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1063
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1064
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1065
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1066
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1068
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1069
     self start16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1070
     ImageEditor openOnClass:self andSelector:#start16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1071
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1072
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1073
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1074
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1075
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1076
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1077
        constantNamed:#'ToolbarIconLibrary class start16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1078
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1079
@@@@@@@@@@@@@@@@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@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1080
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1081
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1082
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1083
stop16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1084
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1085
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1086
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1087
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1088
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1089
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1090
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1091
     self stop16x16Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1092
     ImageEditor openOnClass:self andSelector:#stop16x16Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1093
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1094
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1095
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1096
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1097
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1098
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1099
        constantNamed:#'ToolbarIconLibrary class stop16x16Icon'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1100
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1101
@@@"H"H"@@@@@$QDQDP @@@$P3L3L1H@@$P3L3L3LR@$P0@3L0@3D"P3@@L0@CLRICL0@@@CL1H$L3L@@CL3D"P3L0@@L3LRICL0@@@CL1H$L0@CL@@3D"P3
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1102
@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1103
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1104
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1105
top16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1106
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1107
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1108
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1109
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1110
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1111
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1112
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1113
     self top16x16Icon2 inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1114
     ImageEditor openOnClass:self andSelector:#top16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1115
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1116
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1117
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1118
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1119
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1120
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1121
        constantNamed:#'ToolbarIconLibrary class top16x16Icon2'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1122
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1123
AUUUUUUUUP@EUUUUUUUU@@@@@EAP@@@@@@@EYCT@@@@@@EYBD5@@@@@EYBH!!MP@@@EYBH"HST@@EYBH"H"D5@EABH"H"H!!MPUUUTH"EUUU@@@E@"HU@@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1124
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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1125
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1126
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1127
undo16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1128
    "This resource specification was automatically generated
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1129
     by the ImageEditor of ST/X."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1130
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1131
    "Do not manually edit this!! If it is corrupted,
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1132
     the ImageEditor may not be able to read the specification."
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1133
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1134
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1135
     self undo16x16Icon inspect
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1136
     ImageEditor openOnClass:self andSelector:#undo16x16Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1137
    "
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1138
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1139
    <resource: #image>
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1140
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1141
    ^Icon
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1142
        constantNamed:#'ToolbarIconLibrary class undo16x16Icon'
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
  1143
        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:'
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1144
@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1145
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1146
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1147
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1148
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1149
undo16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1150
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1151
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1152
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1153
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1154
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1155
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1156
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1157
     self undo16x16Icon2 inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1158
     ImageEditor openOnClass:self andSelector:#undo16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1159
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1160
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1161
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1162
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1163
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1164
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1165
        constantNamed:#'ToolbarIconLibrary class undo16x16Icon2'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1166
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1167
@@@@@@@@@@@@@@@CL3@@@@@@@3@@@3@@L@@0@@H"H0@2@0@BH3D"LC@0@BL0@3D0L@@BL@@@@1L0@@L@@@@CL3@@@0@@@@L3L"H"H@@@@3L3L3L3@@@CL@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1168
@@@@@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]
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1169
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1170
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1171
up16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1172
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1173
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1174
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1175
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1176
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1177
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1178
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1179
     self up16x16Icon2 inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1180
     ImageEditor openOnClass:self andSelector:#up16x16Icon2
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1181
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1182
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1183
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1184
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1185
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1186
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1187
        constantNamed:#'ToolbarIconLibrary class up16x16Icon2'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1188
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1189
@@@@@@@@@@@@@@@F@@@@@@@@@FE @@@@@@@FATX@@@@@@FASIF@@@@@FASL2Q @@@FASL3L$X@@FASL3L3IF@FESL3L3L2Q Y&Y%L3I&Y&@@@FD3L&@@@@@@
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  1190
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]
3484
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1191
! !
501758df2cb3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3409
diff changeset
  1192
4907
13536c12d839 category
Claus Gittinger <cg@exept.de>
parents: 4688
diff changeset
  1193
!ToolbarIconLibrary class methodsFor:'image specs-20x20'!
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1194
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1195
copy20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1196
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1197
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1198
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1199
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1200
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1201
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1202
    "
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1203
     self copy20x20Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1204
     ImageEditor openOnClass:self andSelector:#copy20x20Icon
4088
d57f8dc1aa9b icons changed
penk
parents: 4067
diff changeset
  1205
     Icon flushCachedIcons
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1206
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1207
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1210
    ^Icon
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1211
        constantNamed:#'ToolbarIconLibrary class copy20x20Icon'
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1212
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1213
QDQDQDQDQDQDQDQADQDTQDQDQDQDPTQDDDQDQDQDQDECMAPDQDQDQDQAQDPP@DQDQDQDPTL3P3ADQDQDQDEDQADQDTQDQDQAP3LTQDDDQDQDPTQBECMAPDQD
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1214
QDECL1QDPP@DQDQAP$HTL3P3ADQDPRP"EDQDI@QDQDD@@AP3L3HDQDQDQDPTQBP"ADQDQDQDECL3L QDQDQDQAP$H"HDQDQDQDPRP"H"ADQDQDQD@@@@@@QD
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1215
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:'
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
@@@@G8@@G<@@G>@@G?@@G?@@G?0@G?8@G?<@G?>@G?>@G?>@G?>@@O>@@O>@@O>@@O>@@O>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1219
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1221
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1223
cut20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1225
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1226
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1229
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1230
    "
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
  1231
     self cut20x20Icon inspect
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
  1232
     ImageEditor openOnClass:self andSelector:#cut20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1234
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1236
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1237
    ^Icon
3485
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
  1238
        constantNamed:#'ToolbarIconLibrary class cut20x20Icon'
e415ae3790ed *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3484
diff changeset
  1239
        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:'
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1240
@@@@@PP@@PP@@PP@@PP@@H @@H @@M @@E@@@G@@@B@@@G0@@]H@@%H@@%H@@$0@@$@@@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1241
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1242
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1243
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1244
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1245
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1246
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1247
cut20x20Icon2
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1248
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1249
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1250
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1251
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1252
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1253
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1254
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1255
     self cut20x20Icon2 inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1256
     ImageEditor openOnClass:self andSelector:#cut20x20Icon2
4088
d57f8dc1aa9b icons changed
penk
parents: 4067
diff changeset
  1257
     Icon flushCachedIcons
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1258
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1259
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1260
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1261
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1262
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1263
        constantNamed:#'ToolbarIconLibrary class cut20x20Icon2'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1264
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1265
@@@@@@@@@@@@@@DQDQ@@@@@@@@@AQDPP@@@@@@@@@TL4E@@@@@@@@@EDQA@@@@@@@@@AP3MCL@@@@@@@@TQDP$@@@@@@@@ECL3L @@@@@@@AQDIBH@@@@@@@
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1266
@TL3L2@@@@@@@@EBP"H @@@@@@@AIBH"H@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1267
@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1268
@@@@_ @@_1A@_9A@_=A@_=A@_<"@_<"@_<6@_<T@_<\@_<H@_<_@@A4 @BT @BT @BS@@BP@@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1269
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1270
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1271
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1272
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1273
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1274
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1275
debugIt20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1276
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1277
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1278
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1279
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1280
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1281
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1282
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1283
     self debugIt20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1284
     ImageEditor openOnClass:self andSelector:#debugIt20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1285
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1286
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1287
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1288
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1289
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1290
        constantNamed:#'ToolbarIconLibrary class debugIt20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1291
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1292
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@AP@@@3@@@@@@@E@@@3DS@@@@@@UP@@LSL2@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1293
@@AUD@@@L3L @@@ETQUU@3L2@@@@UQEUTCL3H @@@@@EUP@BH @@@@@@AT@@@@@@@@@@@@P@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1294
@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1295
@@@@@@@@@@@@@D@@@L#@@Z_ @9? A7?@C3?@G??@O?> _?>@_;=@C14@C @@G@@@F@@@L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1296
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1297
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1298
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1299
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1300
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1301
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1302
doIt20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1303
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1305
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1307
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1308
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1309
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1310
     self doIt20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1311
     ImageEditor openOnClass:self andSelector:#doIt20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1312
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1316
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1317
        constantNamed:#'ToolbarIconLibrary class doIt20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1318
        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@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1319
@@@@@@@@@@@@@@@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:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1320
@@@@@@@@@@P@@@0@@A @@C @@G@@@O@@@_<@@?8@A?0@C? @@O@@@N@@@\@@@X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1321
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1322
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1323
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1324
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1325
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1326
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1327
dos20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1328
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1329
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1330
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1331
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1332
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1333
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1334
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1335
     self dos20x20Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1336
     ImageEditor openOnClass:self andSelector:#dos20x20Icon
4094
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1337
     Icon flushCachedIcons
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1338
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1339
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1340
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1341
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1342
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1343
        constantNamed:#'ToolbarIconLibrary class dos20x20Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1344
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4094
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1345
@@@@@@@@@@@@@@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
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1346
@1H$P"H"P"H#D@LSL3L3L3L3L1@CDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1347
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1348
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1349
4094
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1350
dosWithoutText20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1351
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1352
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1353
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1354
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1355
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1356
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1357
    "
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1358
     self dosWithoutText20x20Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1359
     ImageEditor openOnClass:self andSelector:#dosWithoutText20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1360
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1361
    "
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1362
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1363
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1364
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1365
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1366
        constantNamed:#'ToolbarIconLibrary class dosWithoutText20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1367
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1368
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1369
@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@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1370
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1371
!
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1372
4688
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1373
empty1x20Icon
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1374
    "This resource specification was automatically generated
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1375
     by the ImageEditor of ST/X."
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1376
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1377
    "Do not manually edit this!! If it is corrupted,
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1378
     the ImageEditor may not be able to read the specification."
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1379
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1380
    "
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1381
     self empty1x20Icon inspect
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1382
     ImageEditor openOnClass:self andSelector:#empty1x20Icon
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1383
     Icon flushCachedIcons
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1384
    "
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1385
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1386
    <resource: #image>
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1387
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1388
    ^Icon
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1389
        constantNamed:#'ToolbarIconLibrary class empty1x20Icon'
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1390
        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]
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1391
!
5aa8527d840f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  1392
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1393
erase20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1394
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1395
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1396
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1397
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1398
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1399
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1400
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1401
     self erase20x20Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1402
     ImageEditor openOnClass:self andSelector:#erase20x20Icon
4088
d57f8dc1aa9b icons changed
penk
parents: 4067
diff changeset
  1403
     Icon flushCachedIcons
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1404
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1405
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1406
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1407
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1408
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1409
        constantNamed:#'ToolbarIconLibrary class erase20x20Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1410
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1411
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EDQAD@@@@@@@@@P3PTD@@@@@@@@@QDDQ@@@@@@@@@@L4L@@@@@@@@A@@Q@@P@@@@@@@T@@@BD@@@
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1412
@@@@ED@@H!!@@@@@@@AP@@@HP@@@@@@@P@BH@D@@@@@@@@@H"H@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1413
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1414
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1415
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1416
erase20x20Icon2
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1417
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1418
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1419
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1420
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1421
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1422
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1423
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1424
     self erase20x20Icon2 inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1425
     ImageEditor openOnClass:self andSelector:#erase20x20Icon2
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1426
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1427
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1428
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1429
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1430
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1431
        constantNamed:#'ToolbarIconLibrary class erase20x20Icon2'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1432
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1433
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EUUQD@@@@@@@@@UDTUD@@@@@@@@@UUDQ@@@@@@@@@@QEH@@@@@@@@A@@UP@P@@@@@@@U@@@CD@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1434
@@@@EU@@L1@@@@@@@AT@@@LP@@@@@@@P@CL@D@@@@@@@@@L3L@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1435
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1436
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1437
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1438
fileIn20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1439
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1440
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1441
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1442
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1443
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1444
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1445
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1446
     self fileIn20x20Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1447
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1448
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1449
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1450
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1451
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1452
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1453
        constantNamed:#'ToolbarIconLibrary class fileIn20x20Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1454
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1455
@@@@@@@@@@@@@@@@@@@@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 
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1456
@@@@L3L3M&Y&X@@@@CL3L2YDQF@@@@@@@3X"H"I @@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1457
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1458
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1459
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1460
fileIn20x20Icon2
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1461
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1462
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1463
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1464
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1465
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1466
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1467
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1468
     self fileIn20x20Icon2 inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1469
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon2
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1470
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1471
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1472
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1473
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1474
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1475
        constantNamed:#'ToolbarIconLibrary class fileIn20x20Icon2'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1476
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1477
@@@@@@@@@@@@@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 
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1478
^:"(L3L3M&Y&XG.[&SL3L2YDQFA9.Y&Y@3X"H"I \@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1479
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1480
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1481
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1482
fileIn20x20Icon3
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1483
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1484
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1485
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1486
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1487
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1488
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1489
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1490
     self fileIn20x20Icon3 inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1491
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon3
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1492
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1493
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1494
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1495
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1496
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1497
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1498
        constantNamed:#'ToolbarIconLibrary class fileIn20x20Icon3'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1499
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1500
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@A&Y&Y&@8"HL@@@Y7]6Y NFZC @@FH"I&XC"H 0@@A&I&Y&@8Y&!!&@@Y"Y&Y 
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1501
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@@@@@@@@@@@@@@@@@@@@@@@@@@@
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1502
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1503
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1504
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1505
fileNew20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1506
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1507
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1508
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1509
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1510
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1511
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1512
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1513
     self fileNew20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1514
     ImageEditor openOnClass:self andSelector:#fileNew20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1515
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1516
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1517
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1518
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1519
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1520
        constantNamed:#'ToolbarIconLibrary class fileNew20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1521
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1522
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@@@@@@@@1DQL @@@@@@@@LQDSD @@@@@@@CDQD1D @@@@@@@1DQL"H @@@@@@LQDQQDH@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1523
@@@CDQDQTR@@@@@@@1DQEQT @@@@@@LQDUEUH@@@@@@CDQTUUR@@@@@@@1EQUUT @@@@@@LUEUUUH@@@@@@CTUUUUR@@@@@@@2H"H"H @@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1524
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 168 172 168 168 228 240]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1525
@@@@@@@@@@@@A>@@A?@@A? @A?0@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1526
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1527
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1528
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1529
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1530
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1532
fileOpen20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1533
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1536
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1539
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
     self fileOpen20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1541
     ImageEditor openOnClass:self andSelector:#fileOpen20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1543
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1544
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1545
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1546
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1547
        constantNamed:#'ToolbarIconLibrary class fileOpen20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1548
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1549
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL0@@@@@@@@@@L@@0L@@@@@@@@@@@@3@@@BH"@@@@@CL0@@HQDRH"H @@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1550
@BEUTQDQD @@@@@!!UUUUUUH@@@@@HUT"H"H"H"H@@BERQDQDQDP @@@!!IDQDQDQB@@@@H$QDQDQDH@@@@BH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1551
@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1552
@@@@@@@@@@@@@@@@@@8@@AE@@@C@G G@O? @O?0@O?0@O??@O?>@O?<@O?8@O?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1553
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1554
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1555
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1556
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1557
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1558
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1559
fileSave20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1560
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1561
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1562
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1564
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1565
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1566
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1567
     self fileSave20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1568
     ImageEditor openOnClass:self andSelector:#fileSave20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1569
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1570
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1571
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1572
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1573
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1574
        constantNamed:#'ToolbarIconLibrary class fileSave20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1575
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1576
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3H"H"H"@@@@@C]7H"QDIB@@@@@7QBH$QBQB@@@@M4P"IDP$P @@@C]DH"H"QDH@@@@7QDQDQDQB@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1577
@@M4Y&Y&Y$P @@@C]!!DQDQU$H@@@@7XQDQEQYB@@@@M6DQDUEVP @@@C]!!DQTUU$H@@@@7XQEQUUX"@@@@M6DUEUUVD @@@BH"H"H"H"H@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1578
@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1579
@@@@@@@@@@@@G?8@G?<@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1580
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1581
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1582
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1584
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1585
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1586
history20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1587
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1588
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1589
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1590
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1591
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1592
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1593
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1594
     self history20x20Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1595
     ImageEditor openOnClass:self andSelector:#history20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1596
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1597
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1598
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1599
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1600
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1601
        constantNamed:#'ToolbarIconLibrary class history20x20Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1602
        ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1603
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J** @@@@IVU @@@@J**"@@@@IVU"@@@@J**"H@@@IVU"H@@@J**"H @@IVU"H @@J**"H @@@@@BH @@@***H @
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1604
@@@@@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]
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1605
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1606
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1607
inspectIt20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1608
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1609
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1610
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1611
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1612
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1613
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1614
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1615
     self inspectIt20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1616
     ImageEditor openOnClass:self andSelector:#inspectIt20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1617
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1618
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1619
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1620
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1621
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1622
        constantNamed:#'ToolbarIconLibrary class inspectIt20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1623
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1624
"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
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1625
"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
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1626
"@"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:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1627
@@@@@O@@@?0@A?8@A?8@C?<@C?<@C?<@C?<@G?8@O?8@_?<@_?N@C0G@C C G@A0F@@0L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1628
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1629
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1630
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1631
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1632
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1633
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1634
inspectLocals20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1635
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1636
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1637
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1638
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1639
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1640
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1641
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1642
     self inspectLocals20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1643
     ImageEditor openOnClass:self andSelector:#inspectLocals20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1644
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1645
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1646
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1647
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1648
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1649
        constantNamed:#'ToolbarIconLibrary class inspectLocals20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1650
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1651
@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H@@BEDQDQDQDDR@@@$P"H$QDQDP @@H"%&T"DQDWH@@B%&Y&YRDQ\R@@@& VY&X!!E1\ @B%!!DX"FT''E7H@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1652
@&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@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1653
@@@@@@@@@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:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1654
@@@@@@@@O??@O??@O??@O??@O??@O??@_??@_??@_??@_??@O??@O?@@G? @A90@@@8@@@\@@@N@@@F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1655
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1656
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1657
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1658
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1659
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1660
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1661
paste20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1662
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1663
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1664
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1665
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1666
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1667
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1668
    "
4088
d57f8dc1aa9b icons changed
penk
parents: 4067
diff changeset
  1669
     self paste20x20Icon inspect
d57f8dc1aa9b icons changed
penk
parents: 4067
diff changeset
  1670
     ImageEditor openOnClass:self andSelector:#paste20x20Icon
d57f8dc1aa9b icons changed
penk
parents: 4067
diff changeset
  1671
     Icon flushCachedIcons
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1672
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1673
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1674
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1675
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1676
    ^Icon
4088
d57f8dc1aa9b icons changed
penk
parents: 4067
diff changeset
  1677
        constantNamed:#'ToolbarIconLibrary class paste20x20Icon'
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1678
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1679
@@@@@@@@@@@@@@@@@@@3L@@@@@@@@@L3&YH3@@@@@@@5T9&RUR@@@@@CUG&UURP2@@@@@5Q2H"H$L @@@@MTQDQDQCH@@@@CUDQCL3L2@@@@@5QDP1DQL @@
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1680
@@MTQDLX SD @@@CUDQCDQD2H @@@5QDP1"HFHH@@@MTQDLQDQXR@@@CUDQCFH"HX @@@5QDP1DVE&H@@@MTQDLX"H!!"@@@@H"H#E!!Y&X @@@@@@@6E&Y&H@
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1681
@@@@@@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:'
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1682
@@@@@N@@A?0@C?8@G?<@G?<@G?<@G?<@G?<@G?>@G??@G??@G??@G??@G??@G??@C??@@G?@@G?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1683
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1684
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1685
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1686
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1687
!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1688
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  1689
printIt20x20Icon
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1690
    "This resource specification was automatically generated
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1691
     by the ImageEditor of ST/X."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1692
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1693
    "Do not manually edit this!! If it is corrupted,
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1694
     the ImageEditor may not be able to read the specification."
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1695
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1696
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
     self printIt20x20 inspect
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1698
     ImageEditor openOnClass:self andSelector:#printIt20x20
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1699
    "
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1700
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1701
    <resource: #image>
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1702
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1703
    ^Icon
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
        constantNamed:#'ToolbarIconLibrary class printIt20x20'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1705
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
@@@@@@@@@@@@@@@@@@L3L3L0@@@@@@@CDQDQL @@@@@@@1DQLSD @@@@@@LQECD2H @@@@@CDTLQEUH@@@@@@1RCDQXR@@@@@@MHLQE!!X @@@@@B"CDVE&H@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1707
@@@@JHD4QFY"@@@@@( Q"GM&X @@@B"AFH\6Y&H@@@H"H(!!3Y&Y"@@@@@@JGM&Y&X @@@@@B\"H"H"H@@@@@I2@@@@@@@@@@@BH@@@@@@@@@@@H @@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1708
@@@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]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1709
@@@@@_8@@_<@@_>@@_?@@_?@@_?@@_?@@_?@@??@A??@C??@G??@@_?@@_?@@8@@@0@@A @@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1710
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1711
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1712
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1713
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1714
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1715
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1716
redo20x20Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1717
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1718
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1719
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1720
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1721
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1722
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1723
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1724
     self redo20x20Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1725
     ImageEditor openOnClass:self andSelector:#redo20x20Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1726
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1727
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1728
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1729
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1730
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1731
        constantNamed:#'ToolbarIconLibrary class redo20x20Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1732
        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]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1733
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1734
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1735
search20x20Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1736
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1737
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1738
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1739
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1740
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1741
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1742
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1743
     self search20x20Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1744
     ImageEditor openOnClass:self andSelector:#search20x20Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1745
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1746
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1747
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1748
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1749
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1750
        constantNamed:#'ToolbarIconLibrary class search20x20Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1751
        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@@@@@@@@@@@@@@@@@@@@@@
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1752
@@@@@@@@@@@@@@@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]
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1753
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1754
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1755
shell20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1756
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1757
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1758
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1759
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1760
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1761
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1762
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1763
     self shell20x20Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1764
     ImageEditor openOnClass:self andSelector:#shell20x20Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1765
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1766
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1767
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1768
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1769
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1770
        constantNamed:#'ToolbarIconLibrary class shell20x20Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1771
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1772
@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
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1773
@1IDH$QBQDH#D@LRH"H"H"H"H1@CD3L3L3L3L3LP@1DQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  1774
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1775
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1776
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1777
shell20x20WithoutTextIcon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1778
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1779
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1780
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1781
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1782
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1783
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1784
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1785
     self shell20x20WithoutTextIcon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1786
     ImageEditor openOnClass:self andSelector:#shell20x20WithoutTextIcon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1787
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1788
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1789
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1790
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1791
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1792
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1793
        constantNamed:#'ToolbarIconLibrary class shell20x20WithoutTextIcon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1794
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1795
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1796
@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@@@@@@@@@@@@@@
4092
bedd6308fca3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4090
diff changeset
  1797
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1798
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  1799
4094
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1800
shellWithoutText20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1801
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1802
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1803
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1804
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1805
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1806
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1807
    "
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1808
     self shellWithoutText20x20Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1809
     ImageEditor openOnClass:self andSelector:#shellWithoutText20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1810
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1811
    "
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1812
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1813
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1814
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1815
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1816
        constantNamed:#'ToolbarIconLibrary class shellWithoutText20x20Icon'
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1817
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1818
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1819
@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@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1820
@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1821
!
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
  1822
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1823
undo20x20Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1824
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1825
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1826
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1827
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1828
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1830
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1831
     self undo20x20Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1832
     ImageEditor openOnClass:self andSelector:#undo20x20Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1833
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1834
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1835
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1836
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1837
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1838
        constantNamed:#'ToolbarIconLibrary class undo20x20Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  1839
        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]
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1840
! !
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1841
4907
13536c12d839 category
Claus Gittinger <cg@exept.de>
parents: 4688
diff changeset
  1842
!ToolbarIconLibrary class methodsFor:'image specs-22x22'!
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  1843
4090
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1844
backward22x22_3DIcon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1845
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1846
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1847
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1848
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1849
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1850
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1851
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1852
     self backward3DIcon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1853
     ImageEditor openOnClass:self andSelector:#backward3DIcon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1854
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1855
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1856
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1857
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1858
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1859
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1860
        constantNamed:#'ToolbarIconLibrary class backward3DIcon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1861
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1862
UUUUUUUPUUUUUUUPUUT@EUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPWUT*%UUPWWR*)UUPWUR*)UUP_5R*)UUP_UJ**UUP_UJ**UUPUUJ**UUPUPJ**UUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1863
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1864
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1865
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1866
copy22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1867
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1868
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1869
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1870
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1871
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1872
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1873
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1874
     self copy22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1875
     ImageEditor openOnClass:self andSelector:#copy22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1876
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1877
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1878
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1879
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1880
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1881
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1882
        constantNamed:#'ToolbarIconLibrary class copy22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1883
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1884
@@@@@@@@@@AUUUW@@@A???>@@@A???>O@@A???>@@@A???>@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8?>@G???8?>IG???8?>@G???8**M
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1885
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1886
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1887
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1888
cut22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1889
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1890
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1891
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1892
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1893
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1894
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1895
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1896
     self cut22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1897
     ImageEditor openOnClass:self andSelector:#cut22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1898
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1899
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1900
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1901
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1902
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1903
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1904
        constantNamed:#'ToolbarIconLibrary class cut22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1905
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1906
@@@@@@@@@@@@@@@@DQDQDP0AL@@L@@@SL3L3CBL @B0@@AL3L3LL0B@@3@@@D3L3L0KB@@KB@@@SL3L3LL0@CL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1907
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@SL3L3L0CL0@@@@AL3L3L3@,CB@@@@D3L3L3@L0L0@@@@2H"H H"0 KBH @@@@@@KL3@@L3LH@@@@@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1908
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1909
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1910
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1911
delete22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1912
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1913
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1914
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1915
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1916
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1917
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1918
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1919
     self delete22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1920
     ImageEditor openOnClass:self andSelector:#delete22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1921
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1922
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1923
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1924
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1925
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1926
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1927
        constantNamed:#'ToolbarIconLibrary class delete22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1928
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1929
@@@@@@@@@@@@@@@@DQDQDQDQL@@@@@@SL3L3L3L @@@@@AL3L3L3L2@@@@@@D3L3L3L3H@@@H@@SL3L3L3L @@H@@AL3L3L3L2@@@@@@D3L3L3L3@@@@@@@S
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1930
L3L3L0@ @@@ @AL3L3L3@@@@@@@@D3L3L3L@D@@@H@@SL3L3L0@QL3H @AL3L3L3@A@3LB@@D3L3L3L@DC@0H@@2H"H"H @PLC@ @@@@@@@@@A@0LB@@@@@@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1931
@@@@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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1932
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1933
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1934
down22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1935
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1936
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1937
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1938
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1939
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1940
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1941
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1942
     self down22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1943
     ImageEditor openOnClass:self andSelector:#down22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1944
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1945
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1946
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1947
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1948
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1949
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1950
        constantNamed:#'ToolbarIconLibrary class down22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1951
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1952
UUT@AUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1953
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1954
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1955
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1956
downRight22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1957
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1958
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1959
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1960
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1961
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1962
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1963
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1964
     self downRight22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1965
     ImageEditor openOnClass:self andSelector:#downRight22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1966
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1967
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1968
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1969
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1970
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1971
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1972
        constantNamed:#'ToolbarIconLibrary class downRight22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1973
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1974
UUUUUUUPP@EUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUT%UPR*UUT)UPR*UUT*UPR*P@@*%PR*****)P
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1975
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1976
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1977
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1978
forward22x22_3DIcon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1979
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1980
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1981
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1982
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1983
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1984
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1985
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1986
     self forward22x22_3DIcon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1987
     ImageEditor openOnClass:self andSelector:#forward22x22_3DIcon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1988
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1989
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1990
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1991
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1992
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1993
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1994
        constantNamed:#'ToolbarIconLibrary class forward22x22_3DIcon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1995
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1996
UUUUUUUPUUUUUUUPUUUUUUUPUUUQUUUPUUTJUUUPUUB*)UUPUP***%UPUQU*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5R*)UUPWUR*)UUPWWR*)UUPWUJ**UUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1997
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1998
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  1999
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2000
help22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2001
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2002
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2003
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2004
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2005
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2006
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2007
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2008
     self help22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2009
     ImageEditor openOnClass:self andSelector:#help22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2010
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2011
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2012
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2013
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2014
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2015
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2016
        constantNamed:#'ToolbarIconLibrary class help22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2017
        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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2018
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2019
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2020
left22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2021
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2022
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2023
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2024
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2025
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2026
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2027
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2028
     self left22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2029
     ImageEditor openOnClass:self andSelector:#left22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2030
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2031
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2032
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2033
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2034
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2035
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2036
        constantNamed:#'ToolbarIconLibrary class left22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2037
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2038
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUTUUUUUPURUUUUUPUJUUUUUPT*P@@@@PR******PJ******P*******PZ******PV*UUUUUPU*UUUUUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2039
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2040
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2041
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2042
leftDown22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2043
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2044
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2045
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2046
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2047
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2048
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2049
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2050
     self leftDown22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2051
     ImageEditor openOnClass:self andSelector:#leftDown22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2052
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2053
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2054
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2055
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2056
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2057
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2058
        constantNamed:#'ToolbarIconLibrary class leftDown22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2059
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2060
UUUUUUUPU@@@@@@PUJ****)PUJ****)PUJ****)PUJ****)PUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUP@J*@UUUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2061
***)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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2062
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2063
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2064
load22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2065
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2066
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2067
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2068
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2069
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2070
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2071
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2072
     self load22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2073
     ImageEditor openOnClass:self andSelector:#load22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2074
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2075
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2076
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2077
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2078
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2079
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2080
        constantNamed:#'ToolbarIconLibrary class load22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2081
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2082
UUUUUUUPUUUUU?UPUUUUW*5PU???>*/PU:****)PUUUUUUZPP@@@@@EPS?????&PS?????%PS?????&PS?????%PT?????9PT?????9PT?????9PT?????9P
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2083
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2084
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2085
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2086
new22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2087
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2088
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2089
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2090
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2091
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2092
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2093
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2094
     self new22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2095
     ImageEditor openOnClass:self andSelector:#new22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2096
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2097
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2098
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2099
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2100
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2101
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2102
        constantNamed:#'ToolbarIconLibrary class new22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2103
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2104
@@@@@@@@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@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2105
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2106
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2107
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2108
paste22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2109
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2110
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2111
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2112
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2113
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2114
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2115
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2116
     self paste22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2117
     ImageEditor openOnClass:self andSelector:#paste22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2118
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2119
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2120
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2121
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2122
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2123
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2124
        constantNamed:#'ToolbarIconLibrary class paste22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2125
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2126
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2127
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2128
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2129
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2130
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2131
printer22x22Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2132
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2133
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2134
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2135
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2136
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2137
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2138
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2139
     self printer22x22Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2140
     ImageEditor openOnClass:self andSelector:#printer22x22Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2141
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2142
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2143
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2144
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2145
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2146
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2147
        constantNamed:#'ToolbarIconLibrary class printer22x22Icon'
5412
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  2148
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2149
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@@@@@@@@@@D@@@@@@@@@@@@@@@@A@@@@@@@@@@@A@@@A@PDA@@@A@PD@@P@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2150
@@@A@@@@@@@@@@@@@@@@@P@@@@@@@@@@@P@A@PD@@PD@@PD@@PDA@P@@@@@@@P@@@@@@@@@@@@@@@@DD@PPA@@@@@PDA@PDA@PDA@PDA@PDD@PPA@P@@@PPD
5412
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  2151
A@PDA@PDA@PDA@PD@PPAAPD@@@DA@PDA@PDA@PDA@PDA@PDAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTE@P@@@PTEAPTEAPTEAPTB@ HEAPDEAPD@@@DEAPTE
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  2152
APTEAPTE@ HBAPTAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTA@@@@@PTEAPTEAPTEAPTEAPTEAPDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  2153
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  2154
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2155
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2156
4090
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2157
right22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2158
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2159
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2160
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2161
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2162
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2163
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2164
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2165
     self right22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2166
     ImageEditor openOnClass:self andSelector:#right22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2167
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2168
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2169
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2170
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2171
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2172
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2173
        constantNamed:#'ToolbarIconLibrary class right22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2174
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2175
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUIUPUUUUUJUPUUUUUJ%P@@@@@J)PJ******PJ****** J******PJ*****)PEUUUUZ%PUUUUUJUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2176
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2177
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2178
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2179
save22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2180
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2181
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2182
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2183
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2184
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2185
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2186
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2187
     self save22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2188
     ImageEditor openOnClass:self andSelector:#save22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2189
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2190
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2191
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2192
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2193
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2194
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2195
        constantNamed:#'ToolbarIconLibrary class save22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2196
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2197
AL3L3L@PM3L3L0?PML3L3L=PM3L3L0=PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM@@@@@?PO??????PO??????PO??????P
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2198
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2199
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2200
5245
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2201
saveAsMethod22x22Icon
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2202
    "This resource specification was automatically generated
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2203
     by the ImageEditor of ST/X."
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2204
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2205
    "Do not manually edit this!! If it is corrupted,
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2206
     the ImageEditor may not be able to read the specification."
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2207
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2208
    "
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2209
     self saveAsMethod22x22Icon inspect
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2210
     ImageEditor openOnClass:self andSelector:#saveAsMethod22x22Icon
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2211
     Icon flushCachedIcons
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2212
    "
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2213
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2214
    <resource: #image>
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2215
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2216
    ^Icon
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2217
        constantNamed:#'ImageEditor class saveAsMethod22x22Icon'
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2218
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2219
@A@0LC@0LC@0@@DCD0LC@0LC@0@3LPLPLD@0LCP0LCLQ@1LCQ@LCQ@L@L1DCDCADPCQDLC@3LPLS@4QDQDPC@CL1@1@0QCQ@QC@0L3DCD0MD@0MD@0@3LPLP
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2220
LDP0LDP0LCL1@1LCQ@LCQ@L@L3DCDC@0LC@0LC@3LPLP@@@@@@@@@CL1@3L3L3L3L3L3L3DCL3L3L3L3L3L3LPL3L3L3L3L3L3L1@3L1DQDQDQDQL3DCL3D3
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2221
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]
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2222
!
91fa700e4b80 saveAs image
Claus Gittinger <cg@exept.de>
parents: 5143
diff changeset
  2223
4090
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2224
start22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2225
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2226
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2227
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2228
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2229
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2230
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2231
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2232
     self start22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2233
     ImageEditor openOnClass:self andSelector:#start22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2234
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2235
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2236
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2237
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2238
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2239
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2240
        constantNamed:#'ToolbarIconLibrary class start22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2241
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2242
@@@@@@@@@@@@@@@@@N8@@@@@@@@@@@@N<^@@@@@@@@@@@@;.;.;.;.@@@@@@C/G @@@@8^@@@@@N<^@@@@@A@@@@@@;18@@@@@D@@@@@C.;.;.; @P@@@@@N
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2243
<^@@@@@@@@@@@@;18@@@C!!G.@@@@C/G @@@@G>@@@@@N;.;.; @_8@@@@@;18@@@@A? @@@@C/G @@@@G>@@@@@N<^@@@@@_8@@@@@;.;.;.@A? @@@@C/G 
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2244
@@@@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:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2245
@@@AC@DAG DAG?<@G N@G N@G N@G?.@G N@G _@G _@G?_@G _@G _@G _@G?_@G ? G!!?0G!!?0G!!.PKQNPT(_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2246
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2247
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2248
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2249
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2250
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2251
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2252
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2253
stop22x22Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2254
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2255
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2256
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2257
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2258
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2259
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2260
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2261
     self stop22x22Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2262
     ImageEditor openOnClass:self andSelector:#stop22x22Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2263
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2264
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2265
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2266
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2267
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2268
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2269
        constantNamed:#'ToolbarIconLibrary class stop22x22Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2270
        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]
4090
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2271
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2272
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2273
up22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2274
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2275
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2276
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2277
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2278
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2279
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2280
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2281
     self up22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2282
     ImageEditor openOnClass:self andSelector:#up22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2283
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2284
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2285
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2286
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2287
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2288
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2289
        constantNamed:#'ToolbarIconLibrary class up22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2290
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2291
UUURUUUPUUUJ%UUPUUT*)UUPUUR**UUPUUJ**%UPUT***)UPUVU*%UUPUUT*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5T*%UUPWUT*%UUPWWT*%UUPWUT*%UUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2292
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]
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2293
!
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2294
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2295
upRight22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2296
    "This resource specification was automatically generated
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2297
     by the ImageEditor of ST/X."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2298
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2299
    "Do not manually edit this!! If it is corrupted,
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2300
     the ImageEditor may not be able to read the specification."
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2301
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2302
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2303
     self upRight22x22Icon inspect
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2304
     ImageEditor openOnClass:self andSelector:#upRight22x22Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2305
     Icon flushCachedIcons
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2306
    "
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2307
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2308
    <resource: #image>
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2309
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2310
    ^Icon
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2311
        constantNamed:#'ToolbarIconLibrary class upRight22x22Icon'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2312
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2313
UUUUT%UPUUUUT)UPUUUUT*UPP@@@@*%PR*****)PR******PR*****)PR*****%PR*UUU*UPR*UUT)UPR*UUT%UPR*UUTUUPR*UUUUUPR*UUUUUPR*UUUUUP
2a9d4c73fc5b toolbar icons moved from Icon
Claus Gittinger <cg@exept.de>
parents: 4088
diff changeset
  2314
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]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2315
! !
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2316
4907
13536c12d839 category
Claus Gittinger <cg@exept.de>
parents: 4688
diff changeset
  2317
!ToolbarIconLibrary class methodsFor:'image specs-24x24'!
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2318
4681
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2319
baseImage24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2320
    "This resource specification was automatically generated
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2321
     by the ImageEditor of ST/X."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2322
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2323
    "Do not manually edit this!! If it is corrupted,
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2324
     the ImageEditor may not be able to read the specification."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2325
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2326
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2327
     self baseImage24x24Icon inspect
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2328
     ImageEditor openOnClass:self andSelector:#baseImage24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2329
     Icon flushCachedIcons
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2330
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2331
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2332
    <resource: #image>
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2333
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2334
    ^Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2335
        constantNamed:#'ToolbarIconLibrary class baseImage24x24Icon'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2336
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2337
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2338
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@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2339
A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XF@@@@BY&H!!DQ&Y&XF@@@@BY&H!!DQ&Y&XF@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2340
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2341
!
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2342
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2343
baseMenu24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2344
    "This resource specification was automatically generated
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2345
     by the ImageEditor of ST/X."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2346
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2347
    "Do not manually edit this!! If it is corrupted,
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2348
     the ImageEditor may not be able to read the specification."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2349
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2350
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2351
     self baseMenu24x24Icon inspect
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2352
     ImageEditor openOnClass:self andSelector:#baseMenu24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2353
     Icon flushCachedIcons
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2354
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2355
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2356
    <resource: #image>
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2357
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2358
    ^Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2359
        constantNamed:#'ToolbarIconLibrary class baseMenu24x24Icon'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2360
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2361
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2362
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2363
@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R]2I7H'']2TE@@@@@RH"H"H"H"TE@@@@AUUUUUUUUUTE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2364
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2365
!
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2366
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2367
baseWindowSpec24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2368
    "This resource specification was automatically generated
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2369
     by the ImageEditor of ST/X."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2370
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2371
    "Do not manually edit this!! If it is corrupted,
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2372
     the ImageEditor may not be able to read the specification."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2373
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2374
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2375
     self baseWindowSpec24x24Icon inspect
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2376
     ImageEditor openOnClass:self andSelector:#baseWindowSpec24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2377
     Icon flushCachedIcons
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2378
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2379
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2380
    <resource: #image>
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2381
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2382
    ^Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2383
        constantNamed:#'ToolbarIconLibrary class baseWindowSpec24x24Icon'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2384
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2385
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2386
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2387
AUUUT T"H%H@@@@@ARH"T T"H%H@@@@@ARH"T T"H%H@@@@@AUUUT UUUUH@@@@@@"H"H H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2388
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2389
!
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2390
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2391
bugReporter24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2392
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2393
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2394
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2395
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2396
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2397
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2398
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2399
     self bugReporter24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2400
     ImageEditor openOnClass:self andSelector:#bugReporter24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2401
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2402
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2403
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2404
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2405
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2406
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2407
        constantNamed:#'ToolbarIconLibrary class bugReporter24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2408
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2409
@@@@@@@@@@@@@@@@@@@@@QDQDQDQDP@@@@@@@@@@@@@@@P@@@@@ADQDQDQDQ@P@@@@@@@@@@@@@A@P@@@@QDQDQDQDPA@P@@@@@@@@@@@@PA@P@@ADQDQDP@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2410
Q@PA@@@@AADQQ@QD@@P@@@@@ADQDQD@DP@@@@@@@ADEAPTPD@BH"H @@ADPTD@P@H"L3L2@@ADEA@"@"H3L3L3H@@@@BH3LBL3L3L3L @@@BH3LBL3L3L3L 
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2411
@@@@H3L@@@@@@@@@@@@BH3LBH3L3L3L @@@@H#HBH#L3L3H @@@@@@@@H"H"H"@@@@@@@@@@@@H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2412
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2413
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2414
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2415
changesBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2416
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2417
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2418
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2419
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2420
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2421
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2422
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2423
     self changesBrowser24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2424
     ImageEditor openOnClass:self andSelector:#changesBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2425
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2426
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2427
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2428
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2429
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2430
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2431
        constantNamed:#'ToolbarIconLibrary class changesBrowser24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2432
        ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2433
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C????@@@@@@@C@@@????3@@@@@@@3@@EUUUT3@@@@@@D3@AUUUUD3@A?5UUD0@AUUUUD0@A]7UUD@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2434
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]
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2435
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2436
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2437
dos24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2438
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2439
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2440
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2441
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2442
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2443
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2444
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2445
     self dos24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2446
     ImageEditor openOnClass:self andSelector:#dos24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2447
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2448
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2449
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2450
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2451
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2452
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2453
        constantNamed:#'ToolbarIconLibrary class dos24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2454
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2455
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH"H"H"H"H1@@@@LRP"H"H"H"H1@@@@LRIBH"H"H"H1@@@@LRH$H"
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2456
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@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2457
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2458
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2459
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2460
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2461
fileBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2462
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2463
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2464
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2465
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2466
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2467
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2468
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2469
     self fileBrowser24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2470
     ImageEditor openOnClass:self andSelector:#fileBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2471
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2472
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2473
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2474
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2475
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2476
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2477
        constantNamed:#'ToolbarIconLibrary class fileBrowser24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2478
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2479
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3@Y&Y&Y&Y&@@@@@@3@X@@@@@@F@@@@@@3@XN;.;.8F@@@@@@3@XN; @@@@@@@@@@3@XN; 
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2480
=/[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<@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2481
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2482
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2483
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2484
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2485
fileIn24x24Icon
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2486
    "This resource specification was automatically generated
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2487
     by the ImageEditor of ST/X."
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2488
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2489
    "Do not manually edit this!! If it is corrupted,
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2490
     the ImageEditor may not be able to read the specification."
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2491
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2492
    "
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2493
     self fileIn24x24Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2494
     ImageEditor openOnClass:self andSelector:#fileIn24x24Icon
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2495
    "
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2496
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2497
    <resource: #image>
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2498
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2499
    ^Icon
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2500
        constantNamed:#'ToolbarIconLibrary class fileIn24x24Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2501
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2502
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2503
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
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2504
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2505
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2506
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2507
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2508
imageEditor24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2509
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2510
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2511
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2512
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2513
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2514
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2515
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2516
     self imageEditor24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2517
     ImageEditor openOnClass:self andSelector:#imageEditor24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2518
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2519
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2520
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2521
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2522
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2523
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2524
        constantNamed:#'ToolbarIconLibrary class imageEditor24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2525
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3947
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2526
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2527
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@(@
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2528
A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFXI& BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFXI* @@@@@@@@@@@@@I* @@@@@@@@@@@@@I& @@@@@@@@
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2529
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2530
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2531
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2532
menuEditor24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2533
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2534
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2535
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2536
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2537
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2538
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2539
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2540
     self menuEditor24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2541
     ImageEditor openOnClass:self andSelector:#menuEditor24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2542
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2543
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2544
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2545
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2546
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2547
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2548
        constantNamed:#'ToolbarIconLibrary class menuEditor24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2549
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3947
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2550
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@QDQDQDQDQ@@@GA0@RH"H"H"H"TEAWA0@R\"H"H''H"TEAP@@@R]7\"]7\"TEAP@@@RH"H"H"
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2551
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\@
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2552
@QDQDQDQDQTEAP\@@RH"H"H"H"TEAP\@@R]2I7H'']2TE@CM0@RH"H"H"H"TE@C]0AUUUUUUUUUTE@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2553
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2554
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2555
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2556
newFileBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2557
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2558
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2559
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2560
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2561
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2562
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2563
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2564
     self newFileBrowser24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2565
     ImageEditor openOnClass:self andSelector:#newFileBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2566
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2567
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2568
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2569
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2570
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2571
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2572
        constantNamed:#'ToolbarIconLibrary class newFileBrowser24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2573
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2574
@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@@@@@@@@@@@ADAD@@@3@Y&Y&Y&@QDADP@@3@X@@@@@@P@@@P@@3@XN;.;.@QDADP@@3@XN; @@@ADAD@@@3@XN; 
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2575
=/[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<@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2576
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2577
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2578
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2579
4681
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2580
newImage24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2581
    "This resource specification was automatically generated
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2582
     by the ImageEditor of ST/X."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2583
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2584
    "Do not manually edit this!! If it is corrupted,
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2585
     the ImageEditor may not be able to read the specification."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2586
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2587
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2588
     self newImage24x24Icon inspect
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2589
     ImageEditor openOnClass:self andSelector:#newImage24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2590
     Icon flushCachedIcons
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2591
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2592
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2593
    <resource: #image>
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2594
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2595
    ^Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2596
        constantNamed:#'ToolbarIconLibrary class newImage24x24Icon'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2597
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2598
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2599
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@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2600
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$@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2601
@@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]
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2602
!
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2603
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2604
newMenu24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2605
    "This resource specification was automatically generated
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2606
     by the ImageEditor of ST/X."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2607
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2608
    "Do not manually edit this!! If it is corrupted,
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2609
     the ImageEditor may not be able to read the specification."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2610
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2611
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2612
     self newMenu24x24Icon inspect
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2613
     ImageEditor openOnClass:self andSelector:#newMenu24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2614
     Icon flushCachedIcons
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2615
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2616
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2617
    <resource: #image>
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2618
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2619
    ^Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2620
        constantNamed:#'ToolbarIconLibrary class newMenu24x24Icon'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2621
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2622
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2623
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2624
@QDQDQDQDQLE@0@C@RH"H"H"H"T5@0@0@R]2I7H'']2TC@0L@@RH"H"H"H"TEL3@@AUUUUUUUUUL3L3L3@@@@@@@@@@@@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2625
@@@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]
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2626
!
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2627
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2628
newSystemBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2629
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2630
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2631
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2632
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2633
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2634
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2635
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2636
     self newSystemBrowser24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2637
     ImageEditor openOnClass:self andSelector:#newSystemBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2638
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2639
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2640
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2641
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2642
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2643
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2644
        constantNamed:#'ToolbarIconLibrary class newSystemBrowser24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2645
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2646
@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&@@@@@@@@@@@@@FXFX@@FY&Y&Y#@@A&XFY @FQDQDQB@@A @@A @FQDQDQB@@A&XFY @CH"H"H"@@@FXFX@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2647
@@@@Y&@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"H 
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2648
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2649
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2650
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2651
4681
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2652
newWindowSpec24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2653
    "This resource specification was automatically generated
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2654
     by the ImageEditor of ST/X."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2655
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2656
    "Do not manually edit this!! If it is corrupted,
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2657
     the ImageEditor may not be able to read the specification."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2658
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2659
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2660
     self newWindowSpec24x24Icon inspect
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2661
     ImageEditor openOnClass:self andSelector:#newWindowSpec24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2662
     Icon flushCachedIcons
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2663
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2664
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2665
    <resource: #image>
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2666
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2667
    ^Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2668
        constantNamed:#'ToolbarIconLibrary class newWindowSpec24x24Icon'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2669
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2670
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2671
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2672
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@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2673
@@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]
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2674
!
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2675
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2676
new_24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2677
    "This resource specification was automatically generated
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2678
     by the ImageEditor of ST/X."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2679
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2680
    "Do not manually edit this!! If it is corrupted,
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2681
     the ImageEditor may not be able to read the specification."
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2682
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2683
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2684
     self new_24x24Icon inspect
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2685
     ImageEditor openOnClass:self andSelector:#new_24x24Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2686
     Icon flushCachedIcons
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2687
    "
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2688
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2689
    <resource: #image>
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2690
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2691
    ^Icon
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2692
        constantNamed:#'ToolbarIconLibrary class new_24x24Icon'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2693
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2694
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2695
@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2696
@@@@@@@@@@$FZP@I@@@@@@@@@@BVZPBP@@@@@@@@@@@IBP$@@@@@@@@@@@@F&Y@@@@@@@@@@@@&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2697
@@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]
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2698
!
243e679a3cd9 new icons
Claus Gittinger <cg@exept.de>
parents: 4094
diff changeset
  2699
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2700
sUnit24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2701
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2702
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2703
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2704
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2705
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2706
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2707
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2708
     self sUnit24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2709
     ImageEditor openOnClass:self andSelector:#sUnit24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2710
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2711
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2712
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2713
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2714
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2715
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2716
        constantNamed:#'ToolbarIconLibrary class sUnit24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2717
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3924
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  2718
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"H"H"H"H"L@@"H"H"H"H"H"H#L@@"H"H"H"H"H"H3L@@"H"H"H"H"H"L3L@@"H"H"H"H"HQ@3L@@"H"H"@@
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  2719
@BDP@3L@@"H"H ???1D@L3L@@"H"HO??<Q@CL3L@@"H"@Q??DP@CL3L@@"H"@AG1D@<CL3L@@"H"@@DQ@O<CL3L@@"H"C0@PC?<CL3L@@"H"C?@@??<CL3L@
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  2720
@"H"HO<O??@3L3L@@"H"L0???0L3L3L@@"H#L3@@@CL3L3L@@"H3L3L3L3L3L3L@@"L3L3L3L3L3L3L@@#L3L3L3L3L3L3L@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  2721
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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:'@@@@???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>???>@@@@@@@@') ; yourself); yourself]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2722
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2723
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2724
saveImage24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2725
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2726
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2727
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2728
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2729
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2730
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2731
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2732
     self saveImage24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2733
     ImageEditor openOnClass:self andSelector:#saveImage24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2734
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2735
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2736
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2737
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2738
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2739
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2740
        constantNamed:#'ToolbarIconLibrary class saveImage24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2741
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3924
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  2742
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DP@@@@@@@@@@@@@@DPL"H"H"H"H"H3D@DPL$QDQDQDQDH1D@DPL$EAQAQAEDH1D@DPL$EAQAPTQDH3D@DPL$EADQ
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  2743
PTQDH3D@DPL$EAQAPTDTH3D@DPL$EAQAPTPTH3D@DPL$EAQAPTPTH3D@DPL$EAQAQADTH3D@DPL$QDQDQDQDH3D@DPL"H"H"H"H"H3D@DPL3L3L3L3L3L3D@
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2744
DPL3DQDQDQDQL3D@DPL3D3L3L3D#L3D@DPL3DQ@3L3D"L3D@DPL3D"@3L3D"L3D@DPL3D@@3L3D"L3D@DSDQD"H"H"DQLQD@DP@@@@@@@@@@@@@@@@@@@@@@
3924
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  2745
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2746
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2747
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2748
shell24x24Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2749
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2750
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2751
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2752
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2753
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2754
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2755
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2756
     self shell24x24Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2757
     ImageEditor openOnClass:self andSelector:#shell24x24Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2758
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2759
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2760
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2761
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2762
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2763
        constantNamed:#'ToolbarIconLibrary class shell24x24Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2764
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2765
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH$H"H"H"H1@@@@LRIDP"H"H"H1@@@@LRP$IBH"H"H1@@@@LRP4H"
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2766
H"H"H1@@@@LRIDP"H"H"H1@@@@LRH4IBH"H"H1@@@@LRP$IBH"H"H1@@@@LRIDP"H"H"H1@@@@LRH$H"QDIDP1@@@@LSL3L3L3L3L1@@@@@QDQDQDQDQDQ@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2767
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2768
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2769
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2770
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2771
systemBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2772
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2773
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2774
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2775
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2776
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2777
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2778
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2779
     self systemBrowser24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2780
     ImageEditor openOnClass:self andSelector:#systemBrowser24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2781
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2782
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2783
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2784
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2785
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2786
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2787
        constantNamed:#'ToolbarIconLibrary class systemBrowser24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2788
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2789
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FY&Y&Y#@@@@@@@@@FQDQDQB@@@@@@@@@FQDQDQB@@@@@@@@@CH"H"H"@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2790
@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"H 
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2791
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2792
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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:'@@@@@@@@_? @_? @_? @_? @_? @_? @@ @@@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@') ; yourself); yourself]
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2793
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2794
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2795
uiPainter24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2796
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2797
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2798
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2799
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2800
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2801
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2802
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2803
     self uiPainter24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2804
     ImageEditor openOnClass:self andSelector:#uiPainter24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2805
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2806
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2807
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2808
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2809
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2810
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2811
        constantNamed:#'ToolbarIconLibrary class uiPainter24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2812
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3947
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2813
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BYBPADQDQDQDQDP@BYBP@@@@@@@@@@@@BYBPAUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2814
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@H&PAUUUT T"H%H@@@@@AUUUT T"H%H@@@$@
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2815
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@@@@@@@@
4a022e4f5318 *** empty log message ***
martin
parents: 3924
diff changeset
  2816
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2817
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2818
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2819
workspace24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2820
    "This resource specification was automatically generated
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2821
     by the ImageEditor of ST/X."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2822
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2823
    "Do not manually edit this!! If it is corrupted,
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2824
     the ImageEditor may not be able to read the specification."
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2825
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2826
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2827
     self workspace24x24Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2828
     ImageEditor openOnClass:self andSelector:#workspace24x24Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2829
     Icon flushCachedIcons
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2830
    "
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2831
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2832
    <resource: #image>
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2833
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2834
    ^Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2835
        constantNamed:#'ToolbarIconLibrary class workspace24x24Icon'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2836
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2837
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C]7]7]7]7]7]7]7P@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@UTEUUUPUPTQDQ@ @UTEUUUP
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2838
T@@QDQ@ @P@E@@UPUPTQDQ@ @PTEAPUPUPTQDQ@ @P@E@@UPUP@QDQ@ @QDQDQDQDQEADQ@ @QDQDQDQDQEDDQ@ @QDQDQDQDQEDPQ@ @QDQDQDQDQEDDQ@ 
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2839
@QDQDQDQDQDQPQ@ @QDQDQDQDQDQPQ@ @QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@2H"H"H"H"H"H#@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2840
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@????????????????????????????????????????????????????????????????????????????@@@@@@@@@@@@') ; yourself); yourself]
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2841
! !
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2842
4907
13536c12d839 category
Claus Gittinger <cg@exept.de>
parents: 4688
diff changeset
  2843
!ToolbarIconLibrary class methodsFor:'image specs-28x28'!
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2844
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2845
bug28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2846
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2847
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2848
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2849
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2850
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2851
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2852
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2853
     self bug28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2854
     ImageEditor openOnClass:self andSelector:#bug28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2855
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2856
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2857
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2858
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2859
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2860
        constantNamed:#'ToolbarIconLibrary class bug28x28Icon'
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2861
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2862
UUUUUUUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O?0@@@@@@?*+@@@@C3>**,@@@O*N***
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2863
0@@C:#***,@@@N(@@@@@@@O*O***0@@@>3>**<@@@@@O??0@@@@@@C?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2864
@@@@@@@@@@@@@@@@@@@@@@@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:'
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2865
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0L@@@#F0@@F_1@@@/>@@A/?0@@??>@G??? BG??8@A??>@G??? @???8@@[?<@@@/>@@@Y?D@@H1,@@@0L@@@@
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2866
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2867
!
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2868
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2869
bugReporter28x28Icon
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2870
    "This resource specification was automatically generated
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2871
     by the ImageEditor of ST/X."
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2872
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2873
    "Do not manually edit this!! If it is corrupted,
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2874
     the ImageEditor may not be able to read the specification."
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2875
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2876
    "
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2877
     self bugReporter28x28Icon inspect
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2878
     ImageEditor openOnClass:self andSelector:#bugReporter28x28Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2879
     Icon flushCachedIcons
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2880
    "
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2881
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2882
    <resource: #image>
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2883
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2884
    ^Icon
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2885
        constantNamed:#'ToolbarIconLibrary class bugReporter28x28Icon'
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2886
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2887
@@@@@@@@@@@@@@@@@@@@@@@@@@@EUUUUUUUU@@@@@@@@@@@@@@@@@@T@@@@@@@@EUUUUUUUUAP@@@@@@@@@@@@@@@@TE@@@@@@@ADQDQDQDQAPT@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2888
@@@@@@DEAP@@@@@ADQDQDQDQ@PTE@@@@@@@@@@@@@@DAAP@@@@@DQDQDQDQD@PDE@@@@@@@@@@@@@@PA@P@@@@@DQDQDQ@ADA@D@@@@@@@PQDTPDQ@@D@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2889
@@@@ADQDQD@DP@@@@@@@@@@DPTEAQ@P@H"H"@@@@@@QDEA@D@BH#L3L @@@@ADEA@"@"H3L3L3H@@@@@@@H#L0H3L3L3L2@@@@@@@"L3@#L3L3L3H@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2890
H3L@@@@@@@@@@@@@@@H#L0H#L3L3L2@@@@@@@BH2@"H3L3L2H@@@@@@@@@@@H"H"H"@@@@@@@@@@@@@@@"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2891
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2892
@@??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/
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  2893
?0@@B?8@@A''<P@@#F0@@C@0@@@@@@@@a') ; yourself); yourself]
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2894
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2895
3899
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2896
bugReporterIcon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2897
    ^ self bugReporter28x28Icon
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2898
!
6e28cb24ac05 new, smaller icons
Claus Gittinger <cg@exept.de>
parents: 3889
diff changeset
  2899
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2900
changesBrowser28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2901
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2902
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2903
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2904
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2905
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2906
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2907
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2908
     self changesBrowser28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2909
     ImageEditor openOnClass:self andSelector:#changesBrowser28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2910
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2911
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2912
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2913
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2914
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2915
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2916
        constantNamed:#'ToolbarIconLibrary class changesBrowser28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2917
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2918
@@@@@@@@@@@@@B****@@@@@@@@@ @@@B****H@@@@@@@@"@@@C????H @@@@@@@2H@@C????L"@@@@@@@3H@@AUUUUL2@@@@@@@SL@@AUUUUD3@@@_=UUQL@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2919
@@EUUUTS@@@A]7UUD@@@@U7]5Q@@@@E7]5T@@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH@@@@@@@@LB@L@@@@@@@@@@@@@@@@J@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2920
@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2921
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O??>@C??>@@??? @O?? @C??8@@??8@@O?>@@@@@@@@@@@@@Z.$7LH+-
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2922
YDBJ+TQ@#.=WHH*+UABJ*5PPZ*$7X@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2923
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  2924
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2925
copy28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2926
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2927
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2928
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2929
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2930
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2931
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2932
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2933
     self copy28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2934
     ImageEditor openOnClass:self andSelector:#copy28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2935
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2936
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2937
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2938
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2939
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2940
        constantNamed:#'ToolbarIconLibrary class copy28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2941
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2942
@@@@@@@@@@@@@@@@@@@@@@EUUUU\@@@A????>@@@@_???? @@@G????8@@@A????>@@@@_???? @@@@@@??8AUUUUWO?>@_????#?? G????8??8A????>O?
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2943
>@_????#?? G????8??8A????>O?>@_????#?? G????8??8A????>O?>@_????"** G????8@@@A????>@@@@_???? @@@G????8@@@A????>@@@@_???? 
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2944
@@@N****(@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2945
@@@@@@@???@@O??0@C??<@@???@@O??0@C??<@@???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_?? @G??
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2946
8@A??>@@_?? @G??8@A??>@@_?? @@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2947
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2948
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2949
cut28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2950
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2951
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2952
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2953
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2954
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2955
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2956
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2957
     self cut28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2958
     ImageEditor openOnClass:self andSelector:#cut28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2959
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2960
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2961
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2962
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2963
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2964
        constantNamed:#'ToolbarIconLibrary class cut28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2965
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2966
@@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDS@@@@@@@SL3L3L3L<L3H@@@0@@AL3L3L3L303L @@C@@@D3L3L3L3OLL2@@CL@@@SL3L3L3L303H@@L@@@AL3L3L3
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2967
L3OLL @L0@@@D3L3L3L3L302@@0@@@@SL3L3L3L3OLH@3@@@@AL3L3L3L3L<0 CL@@@@D3L3L3L3L3OB@L@@@@@SL3L3L3L3L<H@0@@@@AL3L3L3L3L33L3@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2968
@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L3OL0@@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L33@3@@@@@L"H"
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2969
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@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2970
@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2971
_??8@G??>@A???!!@_??8PG??>LA???"@_??9 G??>PA???,@_??;@G??> A???(@_??>@G???@A???0@_??<@G???@A???0@_??>@G???0A???'' @@R@$@@D
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2972
 I@@AHBP@@R@$@@D I@@@0A @@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2973
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2974
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2975
delete28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2976
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2977
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2978
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2979
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2980
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2981
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2982
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2983
     self delete28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2984
     ImageEditor openOnClass:self andSelector:#delete28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2985
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2986
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2987
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2988
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2989
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2990
        constantNamed:#'ToolbarIconLibrary class delete28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2991
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2992
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDQL@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3H@@@@@@@D3L3L3
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2993
L3L3L @@@B@@@SL3L3L3L3L2@@@B@@@AL3L3L3L3L3H@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3@@@@@ @@D3L3L3L3L0@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2994
@@@@@SL3L3L3L3@P@@@@H@@AL3L3L3L3LADSL3H @@D3L3L3L3L0DQL3L"@@@SL3L3L3L3@Q@3L0H@@AL3L3L3L3LADC@3@ @@D3L3L3L3L0DPLCLB@@@2H"
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2995
H"H"H"@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2996
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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2997
@@@@@C??>@@??? @O??8PC??>D@???!!@O??8XC??>F@???  O??8HC??>B@????0O?? LC????@????0O???<C????@????0O???<C????@????0@@A?<@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2998
_?@@@G?0@@A?<@@@_?@@@G?0@@@_0@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  2999
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3000
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3001
dos28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3002
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3003
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3004
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3005
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3006
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3007
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3008
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3009
     self dos28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3010
     ImageEditor openOnClass:self andSelector:#dos28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3011
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3012
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3013
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3014
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3015
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3016
        constantNamed:#'ToolbarIconLibrary class dos28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3017
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3018
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H"H"H @#L3L3L3L3L3L3L3L3@BMDQDQDQDQDQDQDQBL@H4QDQDQDQDQDQDQDH0@#QDQDQD
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3019
QDQDQDQDP#@BMDEDQDQDQDQDQDQBL@H4QAQDQDQDQDQDQDH0@#QDPTQDQDQDQDQDP#@BMDQDEDQDQDQDQDQBL@H4QDEDQDQDQDQDQDH0@#QDEDQDQDQDQDQD
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3020
P#@BMDEDQADQHQDTDQEBL@H4QDQDQDQDQDQDQDH0@#QDQDQDQDQDQDQDP#@BL"H"H"H"H"H"H"H"L@@3L3L3L3L3L3L3L3L0@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3021
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3022
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3023
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@@P@@@@D@@@@GLX@@BT
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3024
(@@@%I@@@IRH@@A3L@@@@@@@@@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3025
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3026
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3027
extract28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3028
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3029
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3030
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3031
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3032
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3033
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3034
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3035
     self extract28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3036
     ImageEditor openOnClass:self andSelector:#extract28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3037
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3038
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3039
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3040
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3041
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3042
        constantNamed:#'ToolbarIconLibrary class extract28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3043
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3044
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@MDP4QC@@@@@@UUTE@@@3L3L3L@@B@AAUUPD@@CQDMDP0
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3045
@@H DEUU@P@@L3L3L2H"H"HPUUTA@@@4QCQDH"H"H"@@@@D@@CL3L3L"H"H"DQDQDP@@MDP4QC@@@"@Q@@@A@@@3L3L3L@@B@AD@UPD@@CQDMDP0@@@@DPAU
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3046
@P@@L3L3L3@@@@@@@@@@@@@4QCQDL@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3047
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3048
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3049
@@@@@@@@@@A?<@@@_?A?8G?0_>A?<W? _?G?8G???>A???? _???8G?1?>A?<W? _?A?8G?0O>A?<@@@_?@@@G?0@@@@@@@@@@@@@@@@@@@@D@A@MED3PD*:
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3050
UNA9D%Q@P)ITPCQZL6@@@@@@@@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3051
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3052
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3053
fileBrowser28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3054
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3055
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3056
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3057
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3058
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3059
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3060
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3061
     self fileBrowser28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3062
     ImageEditor openOnClass:self andSelector:#fileBrowser28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3063
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3064
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3065
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3066
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3067
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3068
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3069
        constantNamed:#'ToolbarIconLibrary class fileBrowser28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3070
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3071
@@@@@@@@@@@@@@@@@@@@@@CLA&Y&Y&Y&X@@@@@@@@L0F@@@@@@A @@@@@@@@3@XN;.;.8F@@@@@@@@CLA ;.@@@@@@@@@@@@@L0FC.8O[6=/[0@@@@@@3@X@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3072
; [6=/[6@@@@@@CLA DNC6<@@F<@@@@@@L0F@A@F= [0= @@@@@@3@X@@P=/[6=/@@@@@@CLA @@A/[6=/X@@@@@@L0FC0@O[6=/[0@@@@@@3@XF<@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3073
@@@@@@CLA = @@@@@@@@@@@@@L0FA/[6=/A @@@@@@@@3@XO[6=/XF@@@@@@@@CLA @@@@@@X@@@@@@@@L0FY&Y&Y&Y @@@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3074
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3075
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3076
A??<@@_??@@G??0@A??<@@_??8@G??>@A??? @_??8@G??>@A??? @_??8@G??>@A??? @_??@@G??0@A??<@@_??@@G??0@@??<@@G??@@@@@@@G.P=0AAD
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3077
HP@PQBD@GDP8 AADHD@PQBA@DN^=0@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3078
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3079
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3080
fileIn28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3081
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3082
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3083
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3084
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3085
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3086
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3087
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3088
     self fileIn28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3089
     ImageEditor openOnClass:self andSelector:#fileIn28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3090
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3091
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3092
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3093
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3094
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3095
        constantNamed:#'ToolbarIconLibrary class fileIn28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3096
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3097
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y&@@@FY&A @@@FL3L&Y&X@@PY&XA@@@@X3L2Y&Y @AA&Y D@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3098
@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
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3099
P&@@@@@@@@@@@FY"YDQBX@@@@F@@@@@@Y&H"H"I @@@@@@@@@@A&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3100
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3101
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3102
@@@@@@@@@@@@@_?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
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3103
EH@]W!!R@BU@T @%LEH@@@@@@@@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3104
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3105
3924
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3106
garbageCollect24x24Icon
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3107
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3108
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3109
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3110
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3111
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3112
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3113
    "
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3114
     self garbageCollect28x28Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3115
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3116
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3117
    "
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3118
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3119
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3120
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3121
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3122
        constantNamed:#'ToolbarIconLibrary class garbageCollect24x24Icon'
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3123
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3124
@@@@@@@@@@@@@ADQ@@@@@@@@@@@@@ADQDQ@@@K.;,QF1DQDQDQ@@B;.;.1.0@@DQDQ@@.;@@.;.1@@@ADQ@@.0@@F;.1@2@ADQ@@.0@@.;.1DCHADQ@K.;@@
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3125
DQDQDPL DQB0.0,@DQDP@@@0DQ,K@KB0DQ@BH"H@DQ@@@@@@DQ@P@@@0DP@@@@8N@@@QDSL0D@@@C.;.8@@PL3@ @@@@@NC @@@PLC@ @@@@;.;.@@@PLC@ 
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3126
@@@@C 8@@@@PLC@ @@B (@@AD@@PLC@ @J*** CA0@@PLC@ @@(J@L3L3@@PLC@ B***(@0L@Q@SLCL @JB CL3L0Q@CH"H@@ADQDLCADQDP@@@Q@ADQD@@@
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3127
@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]
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3128
!
Claus Gittinger <cg@exept.de>
parents: 3899
diff changeset
  3129
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3130
garbageCollect28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3131
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3132
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3133
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3134
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3135
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3136
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3137
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3138
     self garbageCollect28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3139
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3140
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3141
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3142
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3143
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3144
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3145
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3146
        constantNamed:#'ToolbarIconLibrary class garbageCollect28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3147
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3148
DQD@@@.;.1D[DQDQD@@QDP@@.;.;,[,@@ADP@ADQ@@.;@@.;.1@@@A@@DQD@B;@@@[.;DCH@D@@QDP@K,@@K.;,Q@2@P@ADQ@K.;@@DQDQDPL @@DQDKB;B0
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3149
@QDQ@@@C@@@QD[B0B0,ADP@"H"@@@ADQ@@@@@@DQ@P@@@0@@DQ@@@@C 8@@ADQL3@@@Q@@@@;.;.@@DCL0H@@@@@@@@NC @@@PLC@ @@@@@@C.;.8@@A@0LB
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3150
@@@@@@@@8N@@@@DC@0H@@@@@B (@@AD@@PLC@ @@@@****@LG@@A@0LB@@@@@JB CL3L0@DC@0H@@@B***(@0L@Q@SLCL @@@@(J@L3L3AD@L"H @@@@@QDQ
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3151
C@0QDQD@@@DP@@@ADQD@@@@QD@@@@@@@@ @B@ @B@@HB@ H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@H@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3152
@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3153
@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
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3154
UDAEUUQ@U7]5\EUUUTAUUUU@]U]W\@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3155
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3156
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3157
help28x28Icon1
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3158
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3159
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3160
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3161
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3162
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3163
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3164
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3165
     self help28x28Icon1 inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3166
     ImageEditor openOnClass:self andSelector:#help28x28Icon1
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3167
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3168
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3169
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3170
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3171
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3172
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3173
        constantNamed:#'ToolbarIconLibrary class help28x28Icon1'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3174
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3175
@@@@@@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!!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3176
P@@@@@.8!!T@@@@@+.1P@@@@@/.1P@@@@@N.0P@@@@@N>2D@@@@@B:8!!@@@@@@;8(P@@@@@K+H@@@@@@@@BA@@@@@@J*HP@@@@@@@JD@@@@@C/"!!@@@@@@.,(
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3177
@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3178
@@?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@@@_
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3179
>@@@O? @@C?8@@@?<@@@O>@@@C?@@@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3180
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3181
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3182
help28x28Icon2
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3183
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3184
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3185
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3186
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3187
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3188
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3189
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3190
     self help28x28Icon2 inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3191
     ImageEditor openOnClass:self andSelector:#help28x28Icon2
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3192
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3193
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3194
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3195
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3196
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3197
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3198
        constantNamed:#'ToolbarIconLibrary class help28x28Icon2'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3199
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3200
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@3H@@@@@@@@@@@@@@@@CL2@@@@@@@@@@@@@@@@L3L @@@@@@@@@@@@@@@3L3@@@@@@@@@@@@@BLCL3
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3201
L0@@@@L3@@@@@CL0L3L3@@H3L3L0@@A@L3@3L3LBH#L3L3A@@D@3LCL3L0H"L3L3LD@@PCL0L3L3@"D3L1L0P@A@L3@3L3LBH!!L1L3A@@D@3LCL3L0H"HQL3
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3202
LD@@PCL0L3L3@"H#D3L0P@A@L3@3L3LBH"D1L3A@A@L3LBL3L0H"D3LSLD@D@3L0H#L3@"D#L3D0P@PCL3LBH#LBHRL3L3A@A@L3L3@"H0H"H3L3LD@D@3L3
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3203
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
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3204
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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3205
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3206
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3207
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3208
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3209
help28x28Icon3
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3210
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3211
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3212
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3213
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3214
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3215
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3216
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3217
     self help28x28Icon3 inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3218
     ImageEditor openOnClass:self andSelector:#help28x28Icon3
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3219
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3220
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3221
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3222
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3223
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3224
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3225
        constantNamed:#'ToolbarIconLibrary class help28x28Icon3'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3226
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3227
@@@@@@@@@@@@0@@@@@@@@E0@@@@@@@AW@@@@@@@@U\@@@@@@@EU@@@@@@CQUT@@U@@ATUU@5UP@HUEUS=UWHBEQUT?UUR@!!TUUO5UT HUEUS=UUHBEQUT?5U
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3228
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
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3229
 @@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3230
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3231
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3232
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3233
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3234
history28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3235
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3236
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3237
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3238
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3239
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3240
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3241
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3242
     self history28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3243
     ImageEditor openOnClass:self andSelector:#history28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3244
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3245
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3246
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3247
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3248
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3249
        constantNamed:#'ToolbarIconLibrary class history28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3250
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3251
@@@@@@@@@0@@@@@@@@@B**(@@@@@@%YV@@@@@@J**"@@@@@BU%X @@@@@***H @@@@IVU"H@@@@B**("H@@@@%YVH"@@@@J**"H @@@@@@@"H@@@@B**("@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3252
@@@@@@H @@@@@***H@@@@@@@@B@@@@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3253
@@@@@@@@@@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3254
@@@@@C?8@@@?>@@@O?8@@C?>@@@??8@@O?>@@C??8@@??>@@O?? @C??8@@??>@@C?? @@??8@@C?>@@@?? @@C?8@@@?>@@@@@@@H@H@@BDB@@@<M3IHITI
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3255
KRBT"R$ %D$)8IVD2B@@@@G @@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3256
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3257
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3258
home28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3259
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3260
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3261
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3262
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3263
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3264
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3265
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3266
     self home28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3267
     ImageEditor openOnClass:self andSelector:#home28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3268
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3269
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3270
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3271
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3272
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3273
        constantNamed:#'ToolbarIconLibrary class home28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3274
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3275
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3276
@@@@@@@@@@DA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HCA@H@@@@@@@@@@@@@@@@@@@@@@@@@A@D@@@H@@0LD@ @@@@@@@@@@@@@@@@@@@@@@@@HA@@H@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3277
@0TEAPPA@@@@@@@@@@@@@@@@@@@@@@@D@PH@@0XFA XGB@D@@@@@@@@@@@@@@@@@@@@@BP$@@0PDA@PDA@XD@P@@@@@@@@@@@@@@@@@@@@H@@0PDAP(CAPPD
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3278
A PA@@@@@@@@@@@@@@@@@@H@@0PDAP(@@@LEA@PDA@D@@@@@@@@@@@@@@@H@APPDAP@@@@@@@@TDA@XD@P@@@@@@@@@@@@HCA0PDAP@@@@@@@@@@APPDA@PA
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3279
@@@@@@@@@@HCAPPDAPL@@@@@@@@@@@LEA@PFA@D@@@@@@@@@@ HKA L@@@@LCP8O@@@@APXB@ D@@@@@@@@@@@@@@P\C@@@MDADRD0<@@@LF@ @@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3280
@@@@@@HG@0@@EATVE1\N@@@CA H@@@@@@@@@@@@@@@@AA0L@@A QFQ([C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@XE!!0]F08@@@LG@ @@@@@@@@@@@@@@@@DG
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3281
@0@@FAHWGQ,N@@@CA0H@@@@@@@@@@@@@@@@AA0L@@A ^E14[C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@_GA4 F08@@@LG@ @@@@@@@@@@@@@@@@DG@0@@G2D[
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3282
F2HN@@@CA0H@@@@@@@@@@@@@@@@AA0TC@1<"H"H"C LCARLB@@@@@@@@@@@@@@@@C0DA@PDA@PDA@PDA@PDAC0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3283
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3284
@@@@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?
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3285
?@<C??0O@??<C0@@@@<@@@@O@@@@C0@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3286
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3287
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3288
imageEditor28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3289
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3290
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3291
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3292
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3293
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3294
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3295
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3296
     self imageEditor28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3297
     ImageEditor openOnClass:self andSelector:#imageEditor28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3298
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3299
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3300
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3301
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3302
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3303
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3304
        constantNamed:#'ToolbarIconLibrary class imageEditor28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3305
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3306
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"HDQEUVY @@@@@BH"H3L QDUUY&@@@@@@HA@#L2ADQUU&X@@@@@@"H"H"HH
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3307
"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@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3308
@@@BL#L3L "H&Y]7@@@@@@H2L3L2BH"Y%7\@@@@@@"H"H"HBH"H"H @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3309
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0@0@0L@L@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3310
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3311
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@;[7/@D>%
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3312
J@AJ)P @RK5.@D"%J@AH)R @:JW/@@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3313
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3314
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3315
menuEditor28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3316
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3317
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3318
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3319
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3320
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3321
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3322
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3323
     self menuEditor28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3324
     ImageEditor openOnClass:self andSelector:#menuEditor28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3325
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3326
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3327
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3328
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3329
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3330
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3331
        constantNamed:#'ToolbarIconLibrary class menuEditor28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3332
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3333
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@QH"H DQHQD"H @@@@@ATBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3334
IRT%IP@@@@@BUQIU@UIRT%IR@@@@@@IRHBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUQIU@RT%IRT%@@@@@@IRHBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3335
@@@BUQIU@UIRT%IR@@@@@@H"HBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3336
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APT@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3337
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3338
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@6=D$@O(Y
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3339
I@B*GRP@"9T$@H(WI@BJD2P@"=D<@@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3340
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3341
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3342
paste28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3343
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3344
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3345
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3346
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3347
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3348
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3349
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3350
     self paste28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3351
     ImageEditor openOnClass:self andSelector:#paste28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3352
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3353
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3354
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3355
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3356
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3357
        constantNamed:#'ToolbarIconLibrary class paste28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3358
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3359
@@@@@@@@@@@!!DR@@@@@@@@@@@@@@@BDQH@@@@@@@@@@@@@@@DQDP@@@@@@@@@@@@@AD"H"D@@@@@@@@@ADQBDQDQDRQDP@@@@@@DQDHQDQDQIDQ@@@@@@@QD
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3360
QDQDQDQDQD@@@@@@ADQDQDQDQDQDP@@@@@@@@@@@@@ADQDQ@@DQDQDQDQDQDLDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQD
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3361
QD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3362
L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L 
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3363
@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3364
@@C8@@@@>@@@@O @@O??<@C???@@???0@O??<@C???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G??
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3365
??A????0_???<G????A???@@_??0@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3366
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3367
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3368
reloadFromFile28x22Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3369
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3370
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3371
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3372
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3373
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3374
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3375
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3376
     self reloadFromFile28x22Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3377
     ImageEditor openOnClass:self andSelector:#reloadFromFile28x22Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3378
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3379
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3380
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3381
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3382
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3383
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3384
        constantNamed:#'ToolbarIconLibrary class reloadFromFile28x22Icon'
5412
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3385
        ifAbsentPut:[(Depth8Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3386
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5412
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3387
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3388
@@@@@@@E@PDAAPDA@PT@@@@@@ @C@0LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@H@@0LC@0@B@@@@@@PD@@TA@PDE@PDAAP@@@@@B@@LC@0L@A@PDA@PDA@PE
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3389
APTEAPTEAPT@@@@@@ @@@@@@@@HDA@PDA@PDA@DA@PTA@PDE@@@@@@HB@ HB@ HDA@PDA@PDA@TEAPTEAPTEAP@@@@@B@ @@@@@@@ @@@@@DA@@E@PDAAPDA
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3390
@PT@@@@@@ H@@@LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@HB@@@C@0@B@@@@@@@@@@TA@PDE@PDAAP@@@@@@@@@@@@@@@@@@@@@@@@@EAPTEAPTEAPT@@@@@
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3391
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3392
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3393
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3394
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3395
sUnit28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3396
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3397
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3398
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3399
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3400
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3401
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3402
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3403
     self sUnit28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3404
     ImageEditor openOnClass:self andSelector:#sUnit28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3405
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3406
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3407
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3408
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3409
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3410
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3411
        constantNamed:#'ToolbarIconLibrary class sUnit28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3412
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3413
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O??C???????C?<O?0@@??<O??????<O?0??@@@@@@@@@@@@@@@@@@@@@BH"H"H"
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3414
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
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3415
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#
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3416
L3C???@3L3L3@@@"H#L3L0@@@3L3L3L@@BH#L3L3L3L3L3L3L0@@H#L3L3L3L3L3L3L3@@@#L3L3L3L3L3L3L3L@@CL3L3L3L3L3L3L3L0@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3417
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3418
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3419
?>A???? _???8G???>@@@@@@@@@@@@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3420
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3421
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3422
saveImage28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3423
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3424
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3425
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3426
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3427
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3428
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3429
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3430
     self saveImage28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3431
     ImageEditor openOnClass:self andSelector:#saveImage28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3432
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3433
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3434
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3435
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3436
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3437
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3438
        constantNamed:#'ToolbarIconLibrary class saveImage28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3439
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3440
UPSL3L0A@ET7L3L0?PAUML3L3OT@US\3L3C5@ET43L3L?PAUM3L3LO4@USSL3L3=@ET7L3L0?PAUML3L3O4@US\3L3C=@ET43L3L?PAUM@@@@O4@US?????=
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3441
@ET?UUUU?PAUO7??6?4@US=T?=+=@ET?ZO?Z?PAUO4C?6/4@U]U**)WU@ET@@@@@@@AUUUUUUUUU%Y%UUUTE%%UUUUTU)UEUUUUEUUUUUUVYUUTEUTUUUUDU
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3442
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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3443
C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C??>@@@@@@@@@@@@;*9R<H*(
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3444
W)BJ*E:@S.9R,B)HT)@*REJP:$9R<@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3445
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3446
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3447
saveToFile28x22Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3448
    "This resource specification was automatically generated
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3449
     by the ImageEditor of ST/X."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3450
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3451
    "Do not manually edit this!! If it is corrupted,
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3452
     the ImageEditor may not be able to read the specification."
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3453
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3454
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3455
     self saveToFile28x22Icon inspect
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3456
     ImageEditor openOnClass:self andSelector:#saveToFile28x22Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3457
     Icon flushCachedIcons
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3458
    "
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3459
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3460
    <resource: #image>
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3461
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3462
    ^Icon
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3463
        constantNamed:#'ToolbarIconLibrary class saveToFile28x22Icon'
5412
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3464
        ifAbsentPut:[(Depth4Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3465
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3466
@@@@@EUUAP@@L3L3L3@@@ @PUUTA@@@4QCQDL@@BHAAUUPD@@CL3L3L"H"H"DEUU@P@@MDP4QCH"H"H @@@A@@@3L3L3H"H"H!!DQDQD@@CQDMDP0@@H DP@@
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3467
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f90f3404359d icons must be language independent
Claus Gittinger <cg@exept.de>
parents: 5397
diff changeset
  3468
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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]
4067
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3469
!
6db3fb4ae939 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  3470
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3471
search28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3472
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3473
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3474
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3475
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3476
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3477
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3478
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3479
     self search28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3480
     ImageEditor openOnClass:self andSelector:#search28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3481
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3482
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3483
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3484
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3485
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3486
        constantNamed:#'ToolbarIconLibrary class search28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3487
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3488
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@J @@@@H@@B(@@@@B@@@*@@@@@@@@@@@@@@@@@@@@@@@H@@B@@@@@B@@@ @@@@@ @@H@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3489
@@AT@D@P@@@@U@B@D@@@@EP@ A@@@@AT@H@P@@@@*@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@P@@H@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3490
@@@@@@@@@@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3491
@@@@@@@@@@@@@@@@@_A<@@G0_@@A<G0@@_A<@@G0_@@O>?8@C?/>@@?;? @O>?8@G???0O???>C???? ????8O???>C???? ??/?8O?;?>C?>?? ?8@?8O>@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3492
O>C? C? ?8@?8O>@O>@@@@@@@@@@@@@a') ; yourself); yourself]
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3493
!
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3494
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3495
shell28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3496
    "This resource specification was automatically generated
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3497
     by the ImageEditor of ST/X."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3498
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3499
    "Do not manually edit this!! If it is corrupted,
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3500
     the ImageEditor may not be able to read the specification."
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3501
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3502
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3503
     self shell28x28Icon inspect
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3504
     ImageEditor openOnClass:self andSelector:#shell28x28Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3505
    "
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3506
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3507
    <resource: #image>
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3508
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3509
    ^Icon
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3510
        constantNamed:#'ToolbarIconLibrary class shell28x28Icon'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3511
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3512
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3L3L3L0@1DQDQDQDQDQDQDQDQ@CD"H"H"H"H"H"H"H#D@LRH"H"H"H"H"H"H"LP@1H"P"H"
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3513
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"
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3514
H1@CD"QDH"H"H"H"H"H#D@LRH$H"QDP$QDIDQBLP@1H"H"H"H"H"H"H"H1@CD3L3L3L3L3L3L3L3D@@QDQDQDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3515
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3516
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3517
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@A@E@@@PAP@@7&T@@QJ
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3518
U@@BR=P@@T(T@@YI%@@@@@@@@@@@@@@a') ; yourself); yourself]
3829
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3519
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3520
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3521
systemBrowserClassHistory28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3522
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3523
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3524
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3525
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3526
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3527
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3528
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3529
     self systemBrowserClassHistory28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3530
     ImageEditor openOnClass:self andSelector:#systemBrowserClassHistory28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3531
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3532
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3533
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3534
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3535
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3536
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3537
        constantNamed:#'ToolbarIconLibrary class systemBrowserClassHistory28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3538
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3539
@@@@@@@@@@@@@@@@@@@ADQDQDQG0@@@@@@@@@@D"H"H"H.@@@@@@@@@@@RH"H"H"8@@@@@@@@@@O;.;.;.; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3540
@@@@@@@@@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@SL@@CL>@@@@@@@@@@@O; @@;.8@@@@@8@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3541
@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@VX@@FY.@@@@@@@@@@@O8@@@C.8@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3542
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @@@@8@8@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3543
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3544
??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
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3545
JUBUBR%P=H$/TIQIJRBTRR$ %\'')P@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3546
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3547
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3548
uiPainter28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3549
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3550
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3551
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3552
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3553
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3554
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3555
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3556
     self uiPainter28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3557
     ImageEditor openOnClass:self andSelector:#uiPainter28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3558
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3559
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3560
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3561
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3562
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3563
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3564
        constantNamed:#'ToolbarIconLibrary class uiPainter28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3565
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3566
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@3H"H DQHQD"H @@@@@CLBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3567
IRT%IP@@@@@BUSMU@UIRT%IR@@@@@@IRLBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUSMU@RT%IRT%@@@@@@IRLBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3568
@@@BUSMU@UIRT%IR@@@@@@H"LBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3569
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3570
@@@@@@@@@@@@@@@@@@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3571
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''8???90O??>TC???  ???8HO??>A#??? X???8@O??>@C??? @???8@@@@@@@@@@@@>QN@@H$Q
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3572
@@BADP@@.QD@@H$Q@@BIDP@@>_N@@@@a') ; yourself); yourself]
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3573
!
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3574
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3575
workspace28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3576
    "This resource specification was automatically generated
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3577
     by the ImageEditor of ST/X."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3578
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3579
    "Do not manually edit this!! If it is corrupted,
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3580
     the ImageEditor may not be able to read the specification."
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3581
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3582
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3583
     self workspace28x28Icon inspect
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3584
     ImageEditor openOnClass:self andSelector:#workspace28x28Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3585
     Icon flushCachedIcons
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3586
    "
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3587
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3588
    <resource: #image>
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3589
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3590
    ^Icon
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3591
        constantNamed:#'ToolbarIconLibrary class workspace28x28Icon'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3592
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3593
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@@@AUPUUUUAUAQDQDB@@@@EUAUUUTE@@DQDPH@@@@P@E@@UP
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3594
UPTQDQ@ @@@AAPTEAUAUAQDQDB@@@@D@AP@ETET@DQDPH@@@@QDQDQDQDQEADQ@ @@@ADQDQDQDQDTPQDB@@@@DQDQDQDQDQQDDPH@@@@QDQDQDQDQEDDQ@ 
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3595
@@@ADQDQDQDQDQEADB@@@@DQDQDQDQDQDTDPH@@@@QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@@@@@@L"H"H"H"H"H"H0L@@@@@@@@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3596
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3597
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3598
????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@@@@@@@@@@@@ //R@HJJ
657f0485b6d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3828
diff changeset
  3599
T BB"%P@$(/X@IJJU@BR"%H@[O)R@@@a') ; yourself); yourself]
3409
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  3600
! !
18c9905b853b checkin from browser
penk
parents: 3310
diff changeset
  3601
4907
13536c12d839 category
Claus Gittinger <cg@exept.de>
parents: 4688
diff changeset
  3602
!ToolbarIconLibrary class methodsFor:'image specs-28x28-XP'!
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3603
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3604
eraseXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3605
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3606
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3607
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3608
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3609
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3610
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3611
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3612
     self eraseXP28x28Icon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3613
     ImageEditor openOnClass:self andSelector:#eraseXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3614
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3615
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3616
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3617
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3618
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3619
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3620
        constantNamed:#'ToolbarIconLibrary class eraseXP28x28Icon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3621
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3622
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3623
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GNB!!GL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A="H"F[0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^(VE!!XM/@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3624
@@@@@@@@@@@@@@@@@@@@@@@@@@A8^7-;_F<@@@@@@@@@@@@@ H%3@@@@@@@@@@@@@GQ5]WU6ZP@@@@@@@@A%_8^B@@@@@@@@@@@@@@@@[WA0\GE)@@@@@@A)
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3625
_(E9@@@@@@@@@@@@@@@@@@A$Y&Y&Y5(@@@A.]7]2@@@@@@@@@@@@@@@@@@@@@E%GQ4]HV A([F1-@@@@@@@@@@@@@@@@@@@@@@@@R3(:N#-IVE!!$@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3626
@@@@@@@@@@@@@@@@@@ALLB</K3)J@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C\(JB *SP@@@@@@@@@@@@@@@@@@@@@@@@@@S2,%IRD!!HRX?@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3627
@@@@@@@@O"H\GA04H1,[GS8@@@@@@@@@@@@@@@@@@@@@LQ(WE1\5@@@_E!!XXO @@@@@@@@@@@@@@@@@@IALSD1L-@@@@@B@SD1T=@@@@@@@@@@@@@@@@E@4M
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3628
CP4-@@@@@@@@G!!DQD#0@@@@@@@@@@@@@B0$IBP,2@@@@@@@@@@@,C 8PO@@@@@@@@@@@K PDA@\6@@@@@@@@@@@@@B\JB <8@@@@@@@@@@@B@@H3@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3629
@@@@@@@@K XCA#X@@@@@@@@@NR$9@@@@@@@@@@@@@@@@@@@8APDH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CXLFP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3630
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3631
@@@@@@@@@@@@@@@@@@@@@A8@@@@_@@@@G8@@@@?@C @G8C0@@?A8@@G8<@@@?^@@@G?@@@@? @@@G8@@@G?@@@C?8@@A>_@@@?C8@@_ _@@O0C8@G8@_@@<@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3632
C8@N@@^@@@@C @@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3633
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3634
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3635
redoXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3636
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3637
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3638
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3639
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3640
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3641
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3642
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3643
     self redoXP28x28Icon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3644
     ImageEditor openOnClass:self andSelector:#redoXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3645
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3646
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3647
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3648
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3649
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3650
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3651
        constantNamed:#'ToolbarIconLibrary class redoXP28x28Icon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3652
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3653
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3654
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[E1QR5Q][P@@@@@@@@@@@@@@@@@@@@@@@@@@WC8RG2<!!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3655
FTAX[P@@@@@@VDIFX0@@@@@@@@@@W@HXHBT(KS@2F$U''@@@@@C-RT40@@@@@@@@@ZC<XF1 PC1P''K#D.A%,@@@@:ST=J@@@@@@@@@E@QF1 BU6IYQA@,K2<L
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3656
V0@@NT]IR @@@@@@@@@?F1,GV0@@@@AV@2H.LP9[@@,8PT(@@@@@@@A(AQ,[P0@@@@@@@FH>GR,/CU,JM#]J@@@@@@@@XP,[F4,@@@@@@@@@YS8\JB4MBCP5
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3657
R @@@@@@@FPGF1-H@@@@@@@@@@A&O!!,%J"\1L4(@@@@@@@@@@Q,[AV(@@@@@ZVI"XU$@E2P&KB=J@@@@@@@@@D8VF0=T@@@@YS<KB0,KB1T\HRT)R @@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3658
@@A[A1,[@V(@@EXQF1,[F1,[F1,^H4(@@@@@@@@@@DLVF1MK@@A_AALSD1LSD1LSD1MJ@@@@@@@@@@A^AQ,[BUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D(Q
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3659
F1,BV @@@@@@@@@@@@@@@@@@@@@@@@@@@@A+OQX[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@BFA,X@%(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V HXF05P
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3660
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!!EHZ0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E(<Z0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3661
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3662
@@@@@@@@@@@@@@@@@@@@@@@@@@@A?@@@@?<G @_?!!8@O?<^@C??'' @>G=8@_@?>@G0G? A<@?8@O!!?>@C8?? @?O?8@G3?>@A>@@@@O0@@@C>@@@@_0@@@C<
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3663
@@@@_@@@@C @@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3664
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3665
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3666
searchXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3667
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3668
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3669
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3670
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3671
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3672
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3673
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3674
     self searchXP28x28Icon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3675
     ImageEditor openOnClass:self andSelector:#searchXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3676
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3677
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3678
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3679
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3680
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3681
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3682
        constantNamed:#'ToolbarIconLibrary class searchXP28x28Icon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3683
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3684
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@MCP4MCP@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3685
@@@@@@@@@ELMN D;OE$MX@@@@@@@@@@@@@@@@@@@@@@@@F4.HAXIPCL2S@P5@@@@@@@@@@@@@@@@@@@@@F4RW6<7IQM@ERL/N3T@@@@@@@@@@@@@@@@@@DP!!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3686
B6=/I2L1ZSDSP@T:M @@@@@@@@@@@@@@@@@$V3]/F3MNS$9NS$A@RVX@@@@@@@@@@@@@@@ARY0\YI1\1H1M@EQU@ESH^T @@@@@@@@@@@@@@QBE@PBMNH1TU
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3687
Z6-+Z1T#KDP@@@@@@@@@@@@@@DP!!ET9)O$@UZ1$YFQ%+Z1AD@@@@@@@@@@@@@@ADHT@#LD8"Z1$7M3\(FRTPQ@@@@@@@@@@@@@@@Q@!!*PCD#EV,(M1,[M1%]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3688
@TP@@@@@@@@@@@@@@FAPWD@>H1TYJC]/[6<(EB5 @@@@@@@@@@@@@@@@[U 2IQL"Z2 7F6=/JQ=B@@@@@@@@@@@@@@@@F$PQVF(UEV,YFR [CV]K@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3689
@@@@@@@@A L=UFMXZD<UFV-]MF]ZX@@@@@@@@@@@@@@@SS!!GNR(?I#0BYU]AY1 &M @@@@@@@@@@@@@@SR-GG@9$T @@B"Y,[#UR@@@@@@@@@@@@@@@@SR-G
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3690
GA5JW @@@@@@@@@@@@@@@@@@@@@@@@@@SPAGGA5VF@@@@@@@@@@@@@@@@@@@@@@@@@@@SPAGGA5JTP@@@@@@@@@@@@@@@@@@@@@@@@@@SPAGGA5JTP@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3691
@@@@@@@@@@@@@@@@@@@@@@=GGA5JP0@@@@@@@@@@@@@@@@@@@@@@@@@@@@AUXQ5JTP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O4!!"F@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3692
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[248 192 88 120 128 168 128 144 184 240 200 136 144 144 184 152 192 232 248 208 152 184 216 232 152 160 208 192 232 248 200 200 208 200 216 232 240 240 224 232 232 240 168 104 80 184 168 136 136 152 184 144 152 184 152 160 192 184 240 248 176 208 224 200 248 248 176 208 232 176 216 248 168 168 200 216 248 248 240 232 216 240 248 248 216 128 56 168 104 88 120 120 168 136 144 184 144 160 200 152 160 200 192 248 248 184 232 248 176 184 208 200 240 248 192 192 208 200 232 248 224 248 248 224 232 240 144 136 136 248 184 88 128 136 176 136 136 176 136 136 184 144 184 232 160 216 248 168 216 248 168 208 240 184 224 248 184 200 224 208 208 216 232 232 224 232 248 248 248 184 80 200 136 88 128 128 168 128 136 184 144 152 192 200 200 184 176 232 248 200 200 192 192 240 248 160 176 208 208 208 208 168 160 192 216 216 224 240 240 232 0 0 0 248 168 72 160 152 152 136 168 208 160 128 144 160 168 192 144 160 208 248 200 144 176 224 248 184 224 240 176 176 208 168 160 200 224 224 224 224 224 232 144 152 160 168 168 160 152 128 144 144 160 192 136 152 200 152 152 192 168 168 192 168 184 216 160 184 224 200 232 240 176 168 200 208 224 232 232 232 232 136 112 96 136 120 128 128 136 168 160 144 152 136 152 192 160 160 184 160 168 200 160 192 224 160 208 248 176 216 240 208 248 248 200 208 216 200 200 216 208 208 224 248 248 248]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3693
@@@@@@@@@@@@@_@@@@_<@@@O? @@G?<@@C?? @@??8@@_??@@G??0@A??<@@_??@@G??0@A??<@@O?>@@G??@@C??0@A??8@@?''8@@_0@@@O8@@@G<@@@C>@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3694
@@@?@@@@O @@@C0@@@@@@@@@@@@@@@@a') ; yourself); yourself]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3695
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3696
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3697
undoXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3698
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3699
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3700
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3701
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3702
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3703
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3704
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3705
     self undoXP28x28Icon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3706
     ImageEditor openOnClass:self andSelector:#undoXP28x28Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3707
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3708
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3709
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3710
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3711
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3712
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3713
        constantNamed:#'ToolbarIconLibrary class undoXP28x28Icon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3714
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3715
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3716
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F5]UD-QWF0@@@@@@@@@@@@@X4YBV@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3717
[U!!@FRD/G1H>W@@@@@@@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@@@@@@AJS44:@@@@V0X.LR8''E@<PFA,XO6 @@@@@@@@@R$%GNP@@V00/K20PQE%"
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3718
U0HXF1EP@@@@@@@@@D)AN@,@V081K"HCU @@@@A[A1,[O0@@@@@@@@AJM3XJV04/J14>X @@@@@@@DL[F0U(@@@@@@@@R#T4B@4-JA0>YP@@@@@@@@AKF1,K
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3719
XP@@@@@@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A6P@@@@@@@AJK20&IA\@VVE"X&$@@@@@Z T[F0D@@@@@@@@@R"$%HQ0UB0,KB0,?YP@@@EPOF1YN@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3720
@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@@@@@@AJD1LSD1LSD1LSD0Q_@@AKD1,VP0@@@@@@@@@@@@@@@@@@@@@@@@@@@@AUBQ,[AU8@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3721
@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [E#5+@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [F@I @@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3722
T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F-HDPIZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Z31Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3723
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3724
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? @G ?<@A8_? @^O?<@G''??@A;>G0@_?@>@G? O A?0C8@_?!!<@G?<_@A??O0@_?38@@@A>@@@@?@@@@_0@@@O8@@@C
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3725
<@@@@>@@@@G@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3726
! !
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3727
4907
13536c12d839 category
Claus Gittinger <cg@exept.de>
parents: 4688
diff changeset
  3728
!ToolbarIconLibrary class methodsFor:'image specs-misc'!
3500
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3729
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3730
DirectoryUp22x22Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3731
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3732
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3733
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3734
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3735
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3736
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3737
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3738
     self DirectoryUp22x22Icon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3739
     ImageEditor openOnClass:self andSelector:#DirectoryUp22x22Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3740
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3741
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3742
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3743
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3744
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3745
        constantNamed:#'ToolbarIconLibrary class DirectoryUp22x22Icon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3746
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3747
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3748
@@@@@@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3749
@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3750
@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@ HB@ HB@ HB
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3751
@ @@@@@@@@@B@ HB@@LC@0L@@@HB@ HB@ HB@ H@@@@@@@@@@ HB@ @C@0LC@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3752
@@@B@ HB@@LC@0LC@0LC@0LC@0L@@@H@@@@@@@@@@ HB@ @C@0LC@0LC@0LC@0LC@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@@@@B@ HB
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3753
@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@ HB@ @@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3754
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3755
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3756
@@@@@@@0@@@@^@@@@O0@@@G>@@@C?0@@A?>@@@??0@@_?>@@G?8@@C???>@???? O???8C???>@???? O???8C???>@???? O???8C???>@???? O???8C??
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3757
?>@???? @@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3758
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3759
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3760
hideToolbar24x8Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3761
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3762
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3763
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3764
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3765
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3766
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3767
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3768
     self hideToolbar24x8Icon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3769
     ImageEditor openOnClass:self andSelector:#hideToolbar24x8Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3770
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3771
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3772
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3773
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3774
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3775
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3776
        constantNamed:#'ToolbarIconLibrary class hideToolbar24x8Icon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3777
        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]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3778
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3779
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3780
hideToolbar8x24Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3781
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3782
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3783
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3784
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3785
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3786
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3787
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3788
     self hideToolbar8x24Icon inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3789
     ImageEditor openOnClass:self andSelector:#hideToolbar8x24Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3790
     Icon flushCachedIcons
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3791
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3792
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3793
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3794
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3795
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3796
        constantNamed:#'ToolbarIconLibrary class hideToolbar8x24Icon'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3797
        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]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3798
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3799
3500
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3800
hideToolbarIcon
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3801
    "This resource specification was automatically generated
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3802
     by the ImageEditor of ST/X."
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3803
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3804
    "Do not manually edit this!! If it is corrupted,
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3805
     the ImageEditor may not be able to read the specification."
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3806
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3807
    "
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3808
     self hideToolbarIcon inspect
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3809
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3810
    "
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3811
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3812
    <resource: #image>
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3813
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3814
    ^Icon
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3815
        constantNamed:#'ToolbarIconLibrary class hideToolbarIcon'
3810
d059b19ad1de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3792
diff changeset
  3816
        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]
3854
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3817
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3818
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3819
hideToolbarIconH14
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3820
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3821
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3822
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3823
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3824
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3825
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3826
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3827
     self hideToolbarIconH14 inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3828
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH14
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3829
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3830
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3831
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3832
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3833
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3834
        constantNamed:#'ToolbarIconLibrary class hideToolbarIconH14'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3835
        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]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3836
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3837
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3838
hideToolbarIconH20
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3839
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3840
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3841
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3842
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3843
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3844
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3845
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3846
     self hideToolbarIconH20 inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3847
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH20
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3848
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3849
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3850
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3851
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3852
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3853
        constantNamed:#'ToolbarIconLibrary class hideToolbarIconH20'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3854
        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]
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3855
!
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3856
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3857
hideToolbarIconH26
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3858
    "This resource specification was automatically generated
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3859
     by the ImageEditor of ST/X."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3860
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3861
    "Do not manually edit this!! If it is corrupted,
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3862
     the ImageEditor may not be able to read the specification."
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3863
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3864
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3865
     self hideToolbarIconH26 inspect
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3866
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH26
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3867
    "
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3868
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3869
    <resource: #image>
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3870
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3871
    ^Icon
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3872
        constantNamed:#'ToolbarIconLibrary class hideToolbarIconH26'
76fd0fb3489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3851
diff changeset
  3873
        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]
3500
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3874
! !
d90745d28e47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3494
diff changeset
  3875
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3876
!ToolbarIconLibrary class methodsFor:'documentation'!
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3877
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3878
version
5416
8eb8797f427c add save as icon for FileBrowserV2 TextEditor
penk
parents: 5412
diff changeset
  3879
    ^ '$Header: /cvs/stx/stx/libtool/Attic/ToolbarIconLibrary.st,v 1.34 2004-01-09 10:42:05 penk Exp $'
3310
3e534b3b2fed initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3880
! !