GenericToolbarIconLibrary.st
author Claus Gittinger <cg@exept.de>
Fri, 19 Oct 2007 13:22:05 +0200
changeset 3506 1eec20658352
parent 3497 ded3599c4711
child 3533 85c56573dac9
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2001 by eXept Software AG
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
Object subclass:#GenericToolbarIconLibrary
3086
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    15
	instanceVariableNames:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    16
	classVariableNames:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    17
	poolDictionaries:''
b62add568c38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3085
diff changeset
    18
	category:'Interface-Smalltalk'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2001 by eXept Software AG
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    A common place to keep commonly used icons.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    (also: VW compatibility)
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    41
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    42
    Notice: now, ToolbarIconLibrary is a reference to the actual IconLibrary,
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    43
    which will refer to either this class (GenericToolbarIconLibrary) or
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    44
    one of its subclasses (especially: XPToolbarIconLibrary).
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    45
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    46
    The iconLibrary class is specified in the styleSheet (see mswindowsXP.style
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    47
    as an example).
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    51
!GenericToolbarIconLibrary class methodsFor:'class initialization'!
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    52
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    53
initialize
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    54
    ToolbarIconLibrary isNil ifTrue:[
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    55
        ToolbarIconLibrary := self
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    56
    ]
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    57
! !
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    58
3322
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    59
!GenericToolbarIconLibrary class methodsFor:'image specs'!
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    60
3448
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    61
debug22x22Icon
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    62
    "This resource specification was automatically generated
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    63
     by the ImageEditor of ST/X."
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    64
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    65
    "Do not manually edit this!! If it is corrupted,
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    66
     the ImageEditor may not be able to read the specification."
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    67
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    68
    "
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    69
     self debug22x22Icon inspect
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    70
     ImageEditor openOnClass:self andSelector:#debug22x22Icon
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    71
     Icon flushCachedIcons
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    72
    "
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    73
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    74
    <resource: #image>
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    75
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    76
    ^Icon
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    77
        constantNamed:#'GenericToolbarIconLibrary class debug22x22Icon'
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    78
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    79
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    80
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ HB@ @@@@@@@@@@@@@@@@@@@ HBAPTEAPTB@@@@@@@@
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    81
@@@B@ @B@ HEAPTEAPTEAPH@@@@@@@HBAPTE@@HEAPTEAPTEAPTE@ @@@@@B@ TEAP@BAPTEAPTEAPTEAPH@@@@@@@HEAPT@@@@@@@@@@@@@@@@@@@@@@@HB
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    82
APTE@@HBAPTEAPTEAPTE@ @@@@@@@ HB@ @B@ TEAPTEAPTE@ H@@@@@@@@@@@@@@@HBAPTEAPTE@ @@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    83
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    84
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 127 127 127 128 0 0 161 161 165 194 194 194 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@L? @E?0@??8Q??<O??<C??<C??<O??<S??<@??8@G?0@L? @Q#X@FA @@@@@@@@@@@@') ; yourself); yourself]
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    85
!
ffacb8b40786 icon masks
Claus Gittinger <cg@exept.de>
parents: 3446
diff changeset
    86
3322
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    87
sUnit24x24BaseIcon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    88
    "This resource specification was automatically generated
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    89
     by the ImageEditor of ST/X."
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    90
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    91
    "Do not manually edit this!! If it is corrupted,
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    92
     the ImageEditor may not be able to read the specification."
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    93
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    94
    "
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    95
     self sUnit24x24BaseIcon inspect
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    96
     ImageEditor openOnClass:self andSelector:#sUnit24x24BaseIcon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    97
     Icon flushCachedIcons
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    98
    "
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
    99
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   100
    <resource: #image>
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   101
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   102
    ^Icon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   103
        constantNamed:#'GenericToolbarIconLibrary class sUnit24x24BaseIcon'
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   104
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   105
@@@@@@@@@@@@@@@BH"H"H"H"H"H"H@H"H"H"H"H"H"H0@"H"H"H"H"H"H3@BH"H"H"H"H"H3L@H"H"H"H"H"H3L0@"H"H"H"H"H3L3@BH"H"H"H"H3L3L@H"
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   106
H"H"H"H3L3L0@"H"H"H"H3L3L3@BH"H"H"H3L3L3L@H"H"H"H3L3L3L0@"H"H"H3L3L3L3@BH"H"H3L3L3L3L@H"H"H3L3L3L3L0@"H"H3L3L3L3L3@BH"H3
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   107
L3L3L3L3L@H"H3L3L3L3L3L0@"H3L3L3L3L3L3@BH3L3L3L3L3L3L@H3L3L3L3L3L3L0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   108
!
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   109
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   110
sUnit24x24DebugIcon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   111
    "This resource specification was automatically generated
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   112
     by the ImageEditor of ST/X."
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   113
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   114
    "Do not manually edit this!! If it is corrupted,
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   115
     the ImageEditor may not be able to read the specification."
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   116
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   117
    "
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   118
     self sUnit24x24DebugIcon inspect
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   119
     ImageEditor openOnClass:self andSelector:#sUnit24x24DebugIcon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   120
     Icon flushCachedIcons
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   121
    "
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   122
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   123
    <resource: #image>
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   124
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   125
    ^Icon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   126
        constantNamed:#'GenericToolbarIconLibrary class sUnit24x24DebugIcon'
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   127
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   128
@@@@@@@@@@@@@@@@@@@@@@@@A0XB@@@LC@0LC@0LC@0LC@(LC@0LA0@@A0\@C@0LC@0LC@0JB 0BC@0LA0@@A0\@@@0LC@0LC@0LC@0BB 0EAPTEA@\@A @L
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   129
C@0LC@TKC@0L@ (LAP(JAPL@A X@C@0LC@0EAP0LC@,@A@(KB0(EAPD@@@0LC@0LC@@EC@0E@0@EB0,KB TA@@@LC@0LC@0L@@@EAPTE@@TKB0(E@P@@C@0L
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   130
C@0LC@TEB (J@0H@AP(E@PD@@@0KC@0LC@TEB ,KAPTJAPLC@PDA@@@LC@0L@0TEB ,KAPTKB0(E@@DF@@@@B0@@@0TEB ,KAPTKB0,JAPHB@@D@@@@KB0LC
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   131
B ,KAPTKB0,KB LG@PDA@@@KB0,EAP,KAPXKB0,KB T@@@XA@P@@B0,KAPTKAPTKB0,KB0(E@@@@@@D@@@,LB0,HAPTKB0,KB0(E@@\A@PHA@@@LC@0LA PJ
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   132
B0,KB0(E@@\A@PDA@P@@C@0LC@DAB@TEAPTE@@@G@PDA@PD@@@0LC@DA@PDFA XFA X@@PDA@PDA@@@LC@DA@PDA@PDA@PDF@@DA@PDA@P@@C@DA@PDA@PDA
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   133
@PDF@@DA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 255 0 44 44 44 52 0 0 100 72 72 108 0 0 110 110 110 148 148 148 152 49 49 208 208 208 209 0 0 248 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???8???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   134
!
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   135
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   136
sUnit24x24Icon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   137
    "This resource specification was automatically generated
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   138
     by the ImageEditor of ST/X."
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   139
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   140
    "Do not manually edit this!! If it is corrupted,
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   141
     the ImageEditor may not be able to read the specification."
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   142
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   143
    "
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   144
     self sUnit24x24Icon inspect
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   145
     ImageEditor openOnClass:self andSelector:#sUnit24x24Icon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   146
     Icon flushCachedIcons
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   147
    "
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   148
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   149
    <resource: #image>
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   150
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   151
    ^Icon
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   152
        constantNamed:#'GenericToolbarIconLibrary class sUnit24x24Icon'
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   153
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   154
@@@@@@@@@@@@@@@BH"H"H"H"H"H"H@H"H"H"H"H"H"H0@"H"H"H"H"H"H3@BH"H"H"H"H"H3L@H"H"H"H"H!!DCL0@"H"H @@@!!D@L3@BH"H ???1D@L3L@H"
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   155
HQ???1D@L3L0@"H D_?1D@@3L3@BH"@AG1D@<CL3L@H"H@@QD@?0L3L0@"H <@D@??@3L3@BH"C?@@??<CL3L@H"H ?0??<CL3L0@"H"HO??<CL3L3@BH"H3
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   156
@@@CL3L3L@H"H3L3L3L3L3L0@"H3L3L3L3L3L3@BH3L3L3L3L3L3L@H3L3L3L3L3L3L0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<') ; yourself); yourself]
3454
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   157
!
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   158
3497
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   159
smallBugIcon
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   160
    "This resource specification was automatically generated
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   161
     by the ImageEditor of ST/X."
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   162
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   163
    "Do not manually edit this!! If it is corrupted,
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   164
     the ImageEditor may not be able to read the specification."
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   165
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   166
    "
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   167
     self smallBugIcon inspect
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   168
     ImageEditor openOnClass:self andSelector:#smallBugIcon
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   169
     Icon flushCachedIcons
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   170
    "
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   171
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   172
    <resource: #image>
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   173
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   174
    ^Icon
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   175
        constantNamed:#'GenericToolbarIconLibrary class smallBugIcon'
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   176
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   177
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@3@@@@@@@@@@@3LS@@@@@@@@@@LSL2@@
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   178
@@@@@@@3LSL @@@@@@@@D3L2@@@@@@@@@CLSH @@@@@@@@@BH @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   179
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 128 0 0 248 0 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   180
@@@@@@@@@@@@@@@@@@#@@B_ @A? @O?@@C?@@G?@@G> @G>@@C=@@A4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   181
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   182
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   183
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   184
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   185
!
ded3599c4711 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   186
3454
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   187
smiley_veryAngry
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   188
    "This resource specification was automatically generated
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   189
     by the ImageEditor of ST/X."
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   190
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   191
    "Do not manually edit this!! If it is corrupted,
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   192
     the ImageEditor may not be able to read the specification."
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   193
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   194
    "
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   195
     self smiley_veryAngry inspect
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   196
     ImageEditor openOnClass:self andSelector:#smiley_veryAngry
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   197
     Icon flushCachedIcons
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   198
    "
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   199
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   200
    <resource: #image>
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   201
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   202
    ^Icon
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   203
        constantNamed:#'GenericToolbarIconLibrary class smiley_veryAngry'
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   204
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   205
3L3L3L3L3L3K/L2;.;3L.<,[.9X36;,[27(&H$QM6''/K(+IDQDR=*<V3HDQDPD6526I@ADP@SZ/KL  @P@ M><,4BHQD"@7;22Q@ADP@S_/K5DQDQDS-*<2=
a98096f1f132 removeTabIcon
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
   206
Q@@@AM6<3K7PQDS 6+3L2=7]7]6+3L3L.???*;3L3L3L.;.<3L0b') ; colorMapFromArray:#[0 0 0 254 42 0 255 253 19 255 254 147 255 234 0 150 150 150 255 255 199 254 109 3 255 0 0 255 255 235 254 157 0 69 69 69 248 244 251 255 201 0 255 229 0 255 180 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A#87??_?=??7??_?=??7??_?=??3?>O?8_?@?8@>@b') ; yourself); yourself]
3322
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   207
! !
898390ffc602 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3299
diff changeset
   208
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   209
!GenericToolbarIconLibrary class methodsFor:'image specs-12x12'!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   210
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   211
padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   212
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   213
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   214
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   215
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   216
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   217
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   218
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   219
     self padLockBlack12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   220
     ImageEditor openOnClass:self andSelector:#padLockBlack12x12Icon
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   221
     Icon flushCachedIcons
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   222
    "
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   223
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   224
    <resource: #image>
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   225
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   226
    ^Icon
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   227
        constantNamed:#'SystemBrowser class padLockBlack12x12Icon'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   228
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 63 63 63 127 127 127 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   229
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   230
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   231
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   232
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   233
padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   234
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   235
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   236
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   237
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   238
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   239
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   240
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   241
     self padLockBlue12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   242
     ImageEditor openOnClass:self andSelector:#padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   243
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   244
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   245
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   246
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   247
    ^Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   248
        constantNamed:#'SystemBrowser padLockBlue12x12Icon'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   249
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 128 255 212 212 255 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   250
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   251
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   252
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   253
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   254
padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   255
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   256
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   257
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   258
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   259
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   260
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   261
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   262
     self padLockGray12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   263
     ImageEditor openOnClass:self andSelector:#padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   264
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   265
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   266
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   267
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   268
    ^Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   269
        constantNamed:#'SystemBrowser padLockGray12x12Icon'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   270
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 128 128 212 212 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   271
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   272
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   273
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   274
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   275
padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   276
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   277
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   278
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   279
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   280
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   281
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   282
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   283
     self padLockGreen12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   284
     ImageEditor openOnClass:self andSelector:#padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   285
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   286
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   287
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   288
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   289
    ^Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   290
        constantNamed:#'SystemBrowser padLockGreen12x12Icon'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   291
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 128 255 128 212 255 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   292
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   293
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   294
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   295
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   296
padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   297
    "This resource specification was automatically generated
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   298
     by the ImageEditor of ST/X."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   299
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   300
    "Do not manually edit this!! If it is corrupted,
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   301
     the ImageEditor may not be able to read the specification."
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   302
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   303
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   304
     self padLockRed12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   305
     ImageEditor openOnClass:self andSelector:#padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   306
     Icon flushCachedIcons
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   307
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   308
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   309
    <resource: #image>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   310
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   311
    ^Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   312
        constantNamed:#'GenericToolbarIconLibrary class padLockRed12x12Icon'
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
   313
        ifAbsentPut:[(Depth2Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????') ; colorMapFromArray:#[0 0 0 255 128 128 255 212 212 255 255 255]; mask:((Depth1Image new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   314
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   315
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   316
! !
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   317
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
   318
!GenericToolbarIconLibrary class methodsFor:'image specs-15x15'!
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   319
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   320
smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   321
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   322
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   323
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   324
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   325
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   326
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   327
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   328
     self smiley_angry inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   329
     ImageEditor openOnClass:self andSelector:#smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   330
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   331
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   332
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   333
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   334
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   335
    ^Icon
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   336
        constantNamed:#'GenericToolbarIconLibrary class smiley_angry'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   337
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   338
C 8NC @FA XHB@@NC 8NC 8N@@LC@0,KB0,@C 8NC 8DAP\GA0\G@0,L@@8NC XEA0\IBP,G@ $IC@@NC PKA0\CB0$JBP(EAP4NA HG@0LC@@TI@ @KB00H
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   339
B@,C@0LE@@,CB0@AB0DHB@,C@0LCAPLGA0DEAP(HB@,GA0LCAPTKB0DEAP(HB@DGA0LJ@@4MCP@L@P0HC 4KA0,@B TAB 0@C@XNC  AA0TEB0,EAPDLC@ N
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   340
C 8M@PTKB0TE@P0LA 8NC 8NB@4L@P(LC@XHC 8NC 8NC 8HB@ HB@8NC 8N') ; colorMapFromArray:#[0 0 0 255 28 4 255 32 8 255 92 76 109 8 0 255 48 24 72 4 0 255 108 92 44 4 0 89 60 56 255 24 0 255 68 48 208 24 0 85 8 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   341
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   342
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   343
smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   344
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   345
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   346
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   347
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   348
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   349
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   350
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   351
     self smiley_biggrin inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   352
     ImageEditor openOnClass:self andSelector:#smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   353
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   354
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   355
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   356
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   357
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   358
    ^Icon
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   359
        constantNamed:#'GenericToolbarIconLibrary class smiley_biggrin'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   360
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   361
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   362
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@@@@@@@@@@@@@PD@@@DA@@HB@ HB@ H@@PD@@ @A@P@B@ HB@ @A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   363
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 0 255 0 255 255 255]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   364
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   365
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   366
smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   367
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   368
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   369
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   370
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   371
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   372
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   373
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   374
     self smiley_cool inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   375
     ImageEditor openOnClass:self andSelector:#smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   376
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   377
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   378
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   379
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   380
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   381
    ^Icon
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   382
        constantNamed:#'GenericToolbarIconLibrary class smiley_cool'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   383
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   384
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@@@@@@@@@H@@@@@@@@@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   385
@@HB@@@@@@@@@@@@@ H@@@HB@ @@@ HB@@@B@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@@B@ @B@ HB@ @B@ @@@@@B@ H@@@@@@@HB@ @@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   386
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 0 255 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   387
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   388
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   389
smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   390
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   391
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   392
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   393
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   394
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   395
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   396
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   397
     self smiley_eek inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   398
     ImageEditor openOnClass:self andSelector:#smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   399
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   400
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   401
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   402
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   403
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   404
    ^Icon
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   405
        constantNamed:#'GenericToolbarIconLibrary class smiley_eek'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   406
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   407
@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@0@@@@@@@@@@@0LC@0LC@0LC@@@@@@@C@0LC@0LC@0LC@0@@@@@C@0LC@0LC@0LC@0@@@@LC@0@@@0LC@@@C@0L@
3299
f51355adc4b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3271
diff changeset
   408
@@LC@0HB@0LC@ HC@0L@@@LC@0LC@0LC@0LC@0L@@@LC@0LC@0LC@0LC@0L@@@LC@0LC@0LC@0LC@0L@@@@C@0LC@0@C@0LC@0@@@@@C@0LC@@@@@0LC@0@@
f51355adc4b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3271
diff changeset
   409
@@@@@0LC@0@C@0LC@@@@@@@@@@@C@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 48 48 48 255 157 167]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   410
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   411
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   412
smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   413
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   414
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   415
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   416
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   417
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   418
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   419
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   420
     self smiley_frown inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   421
     ImageEditor openOnClass:self andSelector:#smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   422
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   423
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   424
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   425
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   426
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   427
    ^Icon
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   428
        constantNamed:#'GenericToolbarIconLibrary class smiley_frown'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   429
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   430
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ HB@ HB@ HB@ @@@@HB@ @@@ HB@@@B@ H@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   431
@@HB@ @@@ HB@@@B@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ H@@@@@@@HB@ H@@@@B@ @B@ HB@ @B@ @@@@@B@ HB@ HB@ HB@ @@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   432
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 255 163 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   433
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   434
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   435
smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   436
    "This resource specification was automatically generated
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   437
     by the ImageEditor of ST/X."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   438
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   439
    "Do not manually edit this!! If it is corrupted,
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   440
     the ImageEditor may not be able to read the specification."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   441
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   442
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   443
     self smiley_mhmh inspect
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   444
     ImageEditor openOnClass:self andSelector:#smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   445
     Icon flushCachedIcons
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   446
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   447
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   448
    <resource: #image>
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   449
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   450
    ^Icon
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   451
        constantNamed:#'GenericToolbarIconLibrary class smiley_mhmh'
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   452
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   453
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@HB@ @@@ HB@@@B@ H@
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   454
@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ H@@@@B@ HB@ HB@ HB@ @@@@@B@ H@@@@@@@HB@ @@
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   455
@@@@@ HB@ HB@ HB@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 0 255 222 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   456
!
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
   457
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   458
smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   459
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   460
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   461
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   462
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   463
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   464
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   465
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   466
     self smiley_ok inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   467
     ImageEditor openOnClass:self andSelector:#smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   468
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   469
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   470
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   471
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   472
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   473
    ^Icon
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   474
        constantNamed:#'GenericToolbarIconLibrary class smiley_ok'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   475
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   476
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   477
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@ @A@PDA@PDA@P@A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   478
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 255 255 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   479
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   480
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   481
smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   482
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   483
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   484
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   485
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   486
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   487
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   488
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   489
     self smiley_smile inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   490
     ImageEditor openOnClass:self andSelector:#smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   491
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   492
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   493
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   494
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   495
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   496
    ^Icon
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   497
        constantNamed:#'GenericToolbarIconLibrary class smiley_smile'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   498
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   499
@ HB@ H@@@@@@@HB@ HB@ HB@@@A@PDA@P@@@ HB@ H@@PDA@PDA@PDA@@HB@ @A@PDA@PDA@PDA@P@B@ @A@P@@@PDA@@@A@P@B@@DA@P@@@PDA@@@A@PD@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   500
@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@PDA@PDA@PDA@PD@@@DA@@DA@PDA@PD@@PD@@ @A@P@A@PDA@P@A@P@B@ @A@PD@@@@@@@DA@P@B
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   501
@ H@@PDA@PDA@PDA@@HB@ HB@@@A@PDA@P@@@ HB@ HB@ H@@@@@@@HB@ HB') ; colorMapFromArray:#[0 0 0 255 255 0 0 0 0]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@_<C?8_?1??O?>??;??/?>??9??G?<O? _<@_@') ; yourself); yourself]
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   502
! !
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
   503
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   504
!GenericToolbarIconLibrary class methodsFor:'image specs-16x16'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   505
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   506
back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   507
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   508
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   509
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   510
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   511
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   512
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   513
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   514
     self back16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   515
     ImageEditor openOnClass:self andSelector:#back16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   516
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   517
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   518
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   519
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   520
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   521
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   522
        constantNamed:#'ToolbarIconLibrary class back16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   523
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   524
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@PX@@@@@@@@@@@@@@@@@@PXE@@@@@@@@@@@@@@@@@PXEAP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   525
@@@@@@@@@@@@@PXEAPTF@ HBA @@@@@@@PXEAPTEAPTEAPP@@@@@@ XEAPTEAPTEAPTD@@@@@@@CA@TEAPTEAPTEA@@@@@@@@@LDAPTEA@PDA@P@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   526
@0PEAP@@@@@@@@@@@@@@@@@CA@T@@@@@@@@@@@@@@@@@@@LD@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 192 255 255 0 64 64 0 128 128 0 192 192 0 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A @N@A8@O A?<O?1??O?<_?0??A?<C8@G @N@@X@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   527
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   528
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   529
bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   530
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   531
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   532
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   534
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   535
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   536
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   537
     self bottom16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   538
     ImageEditor openOnClass:self andSelector:#bottom16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   539
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   540
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   541
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   542
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   543
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   544
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   545
        constantNamed:#'ToolbarIconLibrary class bottom16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   546
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   547
@@@@@@@@@@@@@DQDQD@@@@@@QUY"P@@@@@AEH"M@@@@@@DT"H4@@@@@@Q"H#P@@@QDQAH"MDQDAFD"H"H"H0P@Q!!H"H"H0P@@DXRH"H0P@@@AFD"H0P@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   548
Q!!H0P@@@@@@DX0P@@@@@@@A@P@@@@@QDQDQDQDP@ADQDQDQDQ@@b') ; colorMapFromArray:#[0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C G?<_?0b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   549
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   550
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   551
centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   552
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   553
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   554
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   555
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   556
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   557
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   558
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   559
     self centerAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   560
     ImageEditor openOnClass:self andSelector:#centerAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   561
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   562
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   563
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   564
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   565
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   566
        constantNamed:#'ToolbarIconLibrary class centerAdjust16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   567
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   568
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   570
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   571
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   572
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   573
configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   574
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   575
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   577
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   578
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   579
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   580
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   581
     self configure16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   582
     ImageEditor openOnClass:self andSelector:#configure16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   584
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   585
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   586
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   588
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   589
        constantNamed:#'ToolbarIconLibrary class configure16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   590
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   591
@@@@@@@@@@@@@DH3\@@@@@@@ARH5\@@@@@@@ARM0@@@A\@DPH3\@@@D3LBH3M0@@@!!D3L3L3\@A!!H!!D3L3L7\@T1H"I1D3L7@@T5U2H!!D3L@@@A5UWH!!D0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   592
@@@@L7H!!@@@@@@@@L7H@@@@@@@@@L0@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 88 88 88 220 220 220 128 128 128 195 195 195 48 48 48 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G8@_8@?09?C?>O?8??;?????_?<_?0O?@C<@C0@C@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   595
copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   596
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   597
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   598
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   599
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   600
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   601
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   602
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   603
     self copy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   604
     ImageEditor openOnClass:self andSelector:#copy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   605
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   606
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   607
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   608
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   609
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
        constantNamed:#'ToolbarIconLibrary class copy16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   611
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   612
@@C<@O8@?0C?<O?8??3??/?>??;?? O>@?8C? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   613
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   614
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   615
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   616
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   617
cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   618
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   619
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   620
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   621
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   622
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   623
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   624
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   625
     self cut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   626
     ImageEditor openOnClass:self andSelector:#cut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   627
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   628
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   629
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   630
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   631
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   632
        constantNamed:#'ToolbarIconLibrary class cut16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   633
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   634
@@@BH@H @"@CX@E@@\@@ @G@@W@GR@%HBT IL@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   635
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   636
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   637
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   638
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   639
cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   640
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   641
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   642
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   643
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   644
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   645
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   646
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   647
     self cut16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   648
     ImageEditor openOnClass:self andSelector:#cut16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   649
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   651
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   653
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   654
        constantNamed:#'ToolbarIconLibrary class cut16x16Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   655
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   656
@@C<@O9D?4S?1O?,?:#?.O>P?;#?+ C)@R$AJPD&@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   657
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   658
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   659
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   661
diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   662
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   663
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   664
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   665
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   666
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   667
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   668
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   669
     self diff16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   670
     ImageEditor openOnClass:self andSelector:#diff16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   671
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   672
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   673
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   674
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   675
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   676
    ^Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   677
        constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon'
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   678
        ifAbsentPut:[(Depth8Image new) width: 16; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   679
@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@A@XFA XFA XD@@@@@@@@@@PFA XF@@@@@@@@@@@@@@@DA XF@@XFA P@@@@@@@@@A@XF@@XFA XD
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   680
@@@@@@@@@@PFA @FA XFA@@@@@@@@@@DA X@A XFA P@@@@@@@@@A@XF@@XFA XD@@@@@@@@@@PFA X@A XFA@@@@@@@@@@DA XFA @@@@@@@@@@@@@@A@XF
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   681
A XFA XD@@@@@@@@@@PFA XFA XFA@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 0 0 0 194 194 194 132 132 132 198 198 198 255 255 255]; mask:((Depth1Image new) width: 16; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@') ; yourself); yourself]
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   682
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   683
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   684
diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   685
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   686
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   687
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   688
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   689
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   690
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   691
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   692
     self diff16x16Icon2 inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   693
     ImageEditor openOnClass:self andSelector:#diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   694
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   695
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   696
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   697
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   698
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   699
    ^Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   700
        constantNamed:#'GenericToolbarIconLibrary class diff16x16Icon2'
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   701
        ifAbsentPut:[(Depth8Image new) width: 16; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   702
@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@A@XFA PFA XD@@@@@@@@@@PFA0XD@@@@@@@@@@@@@@@DA XF@@XFA P@@@@@@@@@A@XH@@PFB@XD
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   703
@@@@@@@@@@PFA @DA XFA@@@@@@@@@@DA  @A@XHA P@@@@@@@@@A@XF@@PFA XD@@@@@@@@@@PFA0X@A  FA@@@@@@@@@@DA XFA@@@@@@@@@@@@@@@A@XH
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   704
A PFB@XD@@@@@@@@@@PFA XDA XFA@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 0 0 0 194 194 194 132 132 132 198 198 198 255 255 255 248 0 0 0 252 0]; mask:((Depth1Image new) width: 16; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@') ; yourself); yourself]
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   705
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
   706
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   707
doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   708
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   709
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   710
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   711
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   712
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   713
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   714
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   715
     self doIt16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   716
     ImageEditor openOnClass:self andSelector:#doIt16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   717
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   718
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   719
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   720
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   721
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   722
        constantNamed:#'ToolbarIconLibrary class doIt16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   723
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   724
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   725
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   726
down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   727
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   728
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   729
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   730
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   731
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   732
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   733
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   734
     self down16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   735
     ImageEditor openOnClass:self andSelector:#down16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   736
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   737
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   738
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   739
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   740
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   742
        constantNamed:#'ToolbarIconLibrary class down16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   743
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   744
@@@@@@@@@@@@@EUUUU@@@@@@U&@CT@@@@@AVL3QP@@@@@EX3ME@@@@@@TCL4T@@@UUURL3QUUUAPH3L3L3MAT@TBL3L3MAT@@E@#L3MAT@@@APH3MAT@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   745
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C @D@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   746
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   747
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   748
edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   749
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   750
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   752
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   754
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   755
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   756
     self edit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   757
     ImageEditor openOnClass:self andSelector:#edit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   758
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   759
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   760
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   761
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   762
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   763
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   764
        constantNamed:#'ToolbarIconLibrary class edit16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   765
        ifAbsentPut:[(Depth8Image new) width: 16; height: 17; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   766
@@@@@@@@@@@@@@@@@@@@@@@@B (JB (JB (JB (@APT@@@(IBP$IA $IBP$IAPTC@@@JBP$IBPXIBP$IAPTC@0@@B XFA XFA XFAPTC@0L@@@(IBP$IA $I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   767
APTC@0LD@@@JBP$IBPXIAPTC@0LDB0@@B XFA XFAP C@0LD@ @@@@(IBP$I@@ H@0LD@ @@@@@JBP$IBPTHB@ HB0D@@@@@B XFA @HB@ DA@@A@@@@@@(I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   768
BP$GB@PDA (I@P@@@@@JBP$G@ ,FB $IBPD@@@@@B @@@P@@@@@@@@@A@@@@@@(IBP$I@@$IBP$I@P@@@@HA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   769
@@@b') ; colorMapFromArray:#[160 160 160 0 0 0 48 48 48 255 128 0 192 88 0 255 168 88 195 195 195 88 88 88 255 220 168 255 255 255 220 220 220 64 0 0]; mask:((Depth1Image new) width: 16; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@?>3??O?<??3??O?<??#?<O?0??C?<O?0??C?<_?0@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   770
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   771
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   772
editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   773
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   774
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   775
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   776
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   777
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   778
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   779
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   780
     self editcopy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   781
     ImageEditor openOnClass:self andSelector:#editcopy16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   782
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   783
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   784
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   785
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   786
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   787
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   788
        constantNamed:#'ToolbarIconLibrary class editcopy16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   789
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   790
UUUU@@@@@@ATQDUP@@@@@EQDQRT@@@@@U@AEP%@@@@ATQDUUUUT@@EP@QCL5QU@@UDQDIBUEEPAT@@P@ITUATEQDIBH%QUUUU@A@@BUDL3UTIBH"ITQDEUUU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   791
UUUPA@AE@@@@UDQDQDT@@@AT@D@@QP@@@EQDQDQE@@@@UUUUUUTb') ; colorMapFromArray:#[48 48 48 220 220 220 255 255 192 160 160 160 255 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?@C>@O<@?8C?<O?8??3??/??????????@?<C?0O?@?<b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   792
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   794
editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   795
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   796
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   797
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   798
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   799
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   800
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   801
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   802
     self editcut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   803
     ImageEditor openOnClass:self andSelector:#editcut16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   804
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   806
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   807
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   808
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   810
        constantNamed:#'ToolbarIconLibrary class editcut16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   811
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   812
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   813
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   814
editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   815
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   816
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   817
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   818
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   819
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   820
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   821
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   822
     self editpaste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   823
     ImageEditor openOnClass:self andSelector:#editpaste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   824
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   825
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   826
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   827
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   828
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   829
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   830
        constantNamed:#'ToolbarIconLibrary class editpaste16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   831
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   832
@@@@@Q@@@@@ADQDP@QDQ@AY&XPDPE&XPEFXP@@@AY!!@TY!!DQDQE&DAQ&Y!!H"HQXPEFY&D"H!!TQ@TY&XRL2D%DQQ&Y!!H"HQDQEFY&D#L"Y&DTY&XRH"IRTQQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   833
Y!!H3L#MQEFY&D"IRUUDVY&XRL2L3TPDQDQIRUUUQ@@@@DQDQDQDb') ; colorMapFromArray:#[192 192 0 0 0 0 255 255 255 48 48 48 220 220 220 255 255 192 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@XA??O?>??;??/?>??;??????????????????7??@?<b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   834
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   835
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   836
edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   837
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   838
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   839
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   840
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   841
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   842
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   843
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   844
     self edittrash16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   845
     ImageEditor openOnClass:self andSelector:#edittrash16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   846
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   847
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   848
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   849
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   850
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   851
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   852
        constantNamed:#'ToolbarIconLibrary class edittrash16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   853
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   854
@@@@@0@@@@@@@@N@H@@@@@@QE&Y@Y(@@@C!!!!DVX"H@@@ACNH"DP@@@@H"DP"Q0@@@@ XNDP''@@@@BA 8QB\@@@@HFC!!DI0@@@@ XNDP''@@@@BA 8QB\@@@@H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   855
FC!!DI0@@@@ XNDP''@@@@@1 8QB\@@@@@@3"D@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 88 88 88 220 220 220 128 128 128 93 93 93 195 195 195 48 48 48 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A8@?>G?<_?0?>C?8O? ?>C?8O? ?>C?8O? ?>A?0A<@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   856
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   857
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   858
erase16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   859
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   860
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   861
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   862
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   863
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   864
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   865
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   866
     self erase16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   867
     ImageEditor openOnClass:self andSelector:#erase16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   868
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   870
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   871
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   872
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   873
        constantNamed:#'ToolbarIconLibrary class erase16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   874
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   875
@@@8@#0LG!! GL@O @\@C8@\0C!! \BC0DN@@P@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   876
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   877
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   878
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   879
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   880
erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   881
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   882
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   883
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   884
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   885
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   886
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   887
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   888
     self erase16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   889
     ImageEditor openOnClass:self andSelector:#erase16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   890
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   891
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   892
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   893
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   894
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   895
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   896
        constantNamed:#'ToolbarIconLibrary class erase16x16Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   897
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   898
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@3@@@C@@@@@0@3@C@A@@@@@ @0@A@@@@@@H@@A@@@@@@@C@C@@@@@@@C@@L@@@@@@C@PHC@@@@@@LP@B@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   899
L@@@@ @@@@@1@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 0 0 64 0 0 128 0 0 255 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@HCA0_O@_8@?@A8@O A7@FL@0XC@ H@@@@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   900
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   901
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   902
exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   903
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   904
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   905
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   906
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   907
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   908
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   909
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   910
     self exec16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   911
     ImageEditor openOnClass:self andSelector:#exec16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   912
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   913
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   914
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   915
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   916
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   917
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   918
        constantNamed:#'ToolbarIconLibrary class exec16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   919
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   920
@@@@A7@@@@@@A7A9%0]0@@A9A0Q@\I\@@GBR@3@)A0@@A2L8NCI0@@]9@8H# I]0^T@8L@"#AI]2BR"(!!ZJPI0\Q$()XJQE0@GII$"&TI0@GARD)$!!IP\@^P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   921
E7@G\P%0@G]0^U\G]0@@@@A1I0@@@@@@@@]0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[160 160 160 88 88 88 128 128 128 255 168 88 195 195 195 255 255 255 93 93 93 0 0 0 255 220 168 220 220 220 255 255 192]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@X@[6C?<O?0_>G?>?''???7?>O?1??''?>N=0C0@F@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   922
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   923
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   924
exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   925
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   926
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   927
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   928
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   929
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   930
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   931
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   932
     self exit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   933
     ImageEditor openOnClass:self andSelector:#exit16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   934
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   935
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   936
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   937
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   938
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   939
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   940
        constantNamed:#'ToolbarIconLibrary class exit16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   941
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   942
@@@@@@@@@@@@@@@@@@@@@@@@@QDQ@@@@@@DRH"H"@@@@@RH H"H@@@@RH"@"H%@@@AH"HBH"T@@@D"H H"IP@@@RH"@"H%@@@AH"HBH"T@@@@"H H"TC@@@B
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   943
H"H"UP@@@@@EUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 220 220 220 128 128 128 93 93 93 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@G0A?0O? ?>G?<_?1??G?<_?0??C?8G?@G0@@@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   944
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   945
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   946
fileNew16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   947
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   948
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   949
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   950
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   951
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   952
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   953
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   954
     self fileNew16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   955
     ImageEditor openOnClass:self andSelector:#fileNew16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   956
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   957
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   958
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   959
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   960
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   961
        constantNamed:#'ToolbarIconLibrary class fileNew16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   962
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   963
@@@@@A? G?@_>A?<G?0_?A?<G?0_?A?<G?0_?A?<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   964
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   965
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   966
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   967
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   968
fileOpen16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   969
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   970
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   971
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   972
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   973
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   974
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   975
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   976
     self fileOpen16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   977
     ImageEditor openOnClass:self andSelector:#fileOpen16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   978
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   979
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   980
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   981
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   982
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   983
        constantNamed:#'ToolbarIconLibrary class fileOpen16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   984
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   985
@@@@\@BJ@@Y0C/? ?>C?8O????;??O?8??C?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   986
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   987
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   988
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   989
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   990
fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   991
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   992
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   993
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   994
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   995
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   996
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   997
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   998
     self fileSave16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   999
     ImageEditor openOnClass:self andSelector:#fileSave16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1000
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1001
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1002
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1003
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1004
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1005
        constantNamed:#'ToolbarIconLibrary class fileSave16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1006
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1007
@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??#?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1008
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1009
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1010
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1011
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1012
fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1013
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1014
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1015
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1016
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1017
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1018
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1019
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1020
     self fileclose16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1021
     ImageEditor openOnClass:self andSelector:#fileclose16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1022
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1023
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1024
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1025
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1026
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1027
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1028
        constantNamed:#'ToolbarIconLibrary class fileclose16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1029
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1030
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@H @@@@@BH H"@@@@@@@"H"@@@@@@@@H"@@@@@@@@H"H @@@@@@H"@"H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1031
@"@@H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 93 93 93 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@O C? _?A?<O?8??#?>O?8??!!?<G?0O>@O @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1032
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1033
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1034
finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1035
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1036
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1038
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1039
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1040
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1041
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1042
     self finish16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1043
     ImageEditor openOnClass:self andSelector:#finish16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1044
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1045
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1046
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1047
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1048
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1049
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1050
        constantNamed:#'ToolbarIconLibrary class finish16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1051
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1052
@@@@@@@@@@@@@@AD@@@@@@@@@DY@@@AD@@@@P6P@@DP@@@ABM$@@Q@QDQDH#Y@ADAEUVL"H6PDPDT"H"H"M$Q@Q"H"H"H!!ADAFH"H"H!!ADPDHQDRH!!A@Q@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1053
QDH!!A@AD@@@@P!!A@@DP@@@AAA@@@Q@@@@DA@@@AD@@@@Q@@@@@@b') ; colorMapFromArray:#[0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@C@@NC@<LC87?3_?-??7??_?=?>7?3@>LC00NC@0@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1054
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1055
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1056
flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1057
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1058
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1060
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1061
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1062
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1063
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1064
     self flagRed16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1065
     ImageEditor openOnClass:self andSelector:#flagRed16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1066
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1067
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1068
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1069
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1070
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1071
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1072
        constantNamed:#'ToolbarIconLibrary class flagRed16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1073
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1074
@@@@@@@@@@@@@@@F@@@@@@@@@FY @@@@@@@FA&@@@@@@Y&APY @@@FXEUPI&@@@@YUUSIBY @@A%T3IBI&@@@@X4QBI&Y @@A$QBI A&@@@@YBY @@Y @@@F
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1075
X@@@A&@@@@@@@@@@Y @@@@@@@@A&@@@@@@@@@@Y @@@@@@@@A&@b') ; colorMapFromArray:#[195 195 195 93 93 93 192 0 0 255 192 192 255 0 0 255 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@@N@A8@?0O?@?>C?8G?0_3@>FA X@@0@C@@F@@Xb') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1076
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1077
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1078
formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1079
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1080
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1081
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1082
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1083
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1084
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1085
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1086
     self formatCode16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1087
     ImageEditor openOnClass:self andSelector:#formatCode16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1088
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1089
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1090
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1091
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1092
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1093
        constantNamed:#'ToolbarIconLibrary class formatCode16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1094
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1096
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1097
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1098
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1099
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1100
forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1101
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1102
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1104
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1105
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1106
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1107
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1108
     self forward16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1109
     ImageEditor openOnClass:self andSelector:#forward16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1110
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1111
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1112
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1113
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1114
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1115
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1116
        constantNamed:#'ToolbarIconLibrary class forward16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1117
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1118
@@@@@@@@@@@@@@@BH@@@@@@@@@IB@@@@@@@@@!!P @@@@@@@B@TH@@@@"H"H@EB@@@BL3PP@AP @@H0@@@@@TH@@$@@@@@@YR@BP@@@@@YR@@HFY&@@YR@@@"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1119
H"H@YR@@@@@@@ YR@@@@@@@BYR@@@@@@@@IR@@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 192 192 0 255 255 0 0 0 255 255 255 192 255 255 0 64 64 0 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A @G@@^@A<C?8O?0??#??O?8??C?8@_@A8@G@@X@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1120
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1121
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1122
goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1123
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1124
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1125
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1126
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1127
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1128
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1129
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1130
     self goto16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1131
     ImageEditor openOnClass:self andSelector:#goto16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1132
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1133
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1134
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1135
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1136
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1137
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1138
        constantNamed:#'ToolbarIconLibrary class goto16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1139
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1140
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1141
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1142
idea16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1143
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1144
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1145
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1146
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1147
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1148
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1149
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1150
     self idea16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1151
     ImageEditor openOnClass:self andSelector:#idea16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1152
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1153
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1154
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1155
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1156
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1157
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1158
        constantNamed:#'ToolbarIconLibrary class idea16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1159
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1160
@@@BH"H@@@@@@BAUTB@@@@@BA*V @ @@@BAZU%)PH@@@HJUVV*@ @@@ )VQ%(B@@@BA&I T@H@@@@ T H@H@@@@@H@H@H@@@@@@*@ ( @@@@@@HB@ @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1161
@"L"@@@@@@@BNXH@@@@@@@JI\ @@@@@@@!! R@@@@@@@@H"@@@@@b') ; colorMapFromArray:#[255 255 0 48 48 48 0 0 0 220 220 220 255 255 255 255 220 168 255 255 192 160 160 160 88 88 88 128 128 128 255 168 88]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A<@O8A?0O? ?>C?8O? _<@? C>@G0@_@A<@G0@_@@8@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1162
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1163
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1164
leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1165
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1166
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1167
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1168
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1169
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1170
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1171
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1172
     self leftAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1173
     ImageEditor openOnClass:self andSelector:#leftAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1174
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1175
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1176
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1177
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1178
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1179
        constantNamed:#'ToolbarIconLibrary class leftAdjust16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1180
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1181
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1184
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1185
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1186
leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1187
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1188
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1189
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1190
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1191
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1192
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1193
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1194
     self leftDown16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1195
     ImageEditor openOnClass:self andSelector:#leftDown16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1196
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1197
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1198
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1199
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1200
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1201
    ^Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1202
        constantNamed:#'GenericToolbarIconLibrary class leftDown16x16Icon'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1203
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1204
@@@@@@@@@@@@@EUUUUUUT@@@T@@@@@AP@@APL3L3L5@@@E@3MDQDT@@@TCL4UUUP@@ARL3QP@@@@@EL3ME@@@@UUT3L3UUT@@E@#L3MAT@@@APH3MAT@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1205
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@O? ?>C?8O? ?>C>@O8G?<O? _<@? A<@C @D@@@@b') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1206
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1207
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1210
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1211
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1212
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1213
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1214
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1215
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1216
     self lock16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
     ImageEditor openOnClass:self andSelector:#lock16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1219
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1220
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1221
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1223
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1224
        constantNamed:#'ToolbarIconLibrary class lock16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1225
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1226
@@@@]7\@@@@@@@\Z*(@@@@@@]''"G)0@@@@A: @_H@@@@@G2@A< @@@@@]5@G1P@@@@^H!!RJH @@@\3)&E$M5@@A3@DP4L7T@@HN0QDL3]P@@!!+DVZ*)5@@BF
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1227
,QY&*''T@@E*1E&**]P@@U+DVZ*M5@@AS@DP4L7T@@@VBJH"XT@@b') ; colorMapFromArray:#[255 220 168 220 220 220 64 64 0 128 128 0 192 192 0 0 0 0 195 195 195 88 88 88 48 48 48 64 0 0 160 160 160 255 255 255 128 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@<@G8@?0C''@N\@90G? ??C?<O?0??C?<O?0??C?<G? b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1229
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1230
paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1231
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1232
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1233
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1234
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1235
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1236
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1237
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1238
     self paste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1239
     ImageEditor openOnClass:self andSelector:#paste16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1240
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1241
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1242
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1243
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1244
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1245
        constantNamed:#'ToolbarIconLibrary class paste16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1246
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1247
@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@AWTF@FA5\@@G\CL3L0]P@@U0@@@@A7@@A5]WU5]WT@@E]WV**** @@]WU:DQDZ(@AWU5(QDQ(Z@GU5^!!@@F** U5
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1248
]ZDQDQDZA5]W(P@@@A(@@@B!!DQDQF @@@J******@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1249
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 255 255 255 128 128 0 255 255 0 128 128 128 0 255 255 0 0 255 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1250
@@@G G?8??3??O?<??3??O?<??;???????=??0O?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1251
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1252
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1253
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1254
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1255
redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1256
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1257
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1258
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1259
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1260
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1261
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1262
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1263
     self redo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1264
     ImageEditor openOnClass:self andSelector:#redo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1265
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1266
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1267
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1268
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1269
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1270
        constantNamed:#'ToolbarIconLibrary class redo16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1271
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1272
@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1273
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1274
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1275
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1276
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1277
redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1278
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1279
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1280
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1281
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1282
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1283
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1284
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1285
     self redo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1286
     ImageEditor openOnClass:self andSelector:#redo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1287
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1288
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1289
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1290
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1291
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1292
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1293
        constantNamed:#'ToolbarIconLibrary class redo16x16Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1294
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1295
@@@@@@@@@@@@@@L3L@@@@@@CL@@CL@@@@C@@@@@C@@LC@!!L2@@@0H0LSL@L2@@L#LC@@@@L @BL3L@@@@C@@H3L0@@@@L@@#L3@@@@H"H"LCL@@@L3L3L0L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1296
@@@@@@@@@CL0@@@@@@@@@3L0@@@@@@@@@3L@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 192 0 0 64 0 0 128 0 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@G A? O?E?>7''?8G? O>@?8G= ?7@@N@@^@@\@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1297
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1298
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1299
reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1300
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1301
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1302
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1303
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1304
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1305
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1306
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1307
     self reload16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1308
     ImageEditor openOnClass:self andSelector:#reload16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1309
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1310
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1311
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1312
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1313
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
        constantNamed:#'ToolbarIconLibrary class reload16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1316
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1317
@@@@@@@@@@@@@@ARH@L@@@@@T"P@@@@@@@@"P@@@@@@@ARP@@@@@@@@BI@@@@@@@AUH"I@@@@@@@T"I@@@@@@@@EI@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1318
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 0 192 0 0 64 0 0 128 0 0 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@>@O>A>\G0P>@#8@?9!!?OC9>GO<HOD@<HG 9>A?0A<@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1319
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1320
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1321
rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1322
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1323
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1324
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1325
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1326
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1328
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1329
     self rightAdjust16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1330
     ImageEditor openOnClass:self andSelector:#rightAdjust16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1331
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1332
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1333
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1334
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1335
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1336
        constantNamed:#'ToolbarIconLibrary class rightAdjust16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1337
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1338
??????????????????????????????????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1339
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1340
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1341
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1342
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1343
run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1344
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1345
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1346
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1347
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1348
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1349
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1350
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1351
     self run16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1352
     ImageEditor openOnClass:self andSelector:#run16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1353
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1354
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1355
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1356
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1357
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1358
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1359
        constantNamed:#'ToolbarIconLibrary class run16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1360
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1361
@@@@@@@@@@@@@@@AT@@@@@@!!@@EP@AT@@CPRMDT!!P0@@ATQDQDP0@@@CQEMTQD@@@@IEL@EDH@@AEDL@@AQAD@L4QP@@EDL0@@MDD@EDT@@@ADQAEDQ@@@@A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1362
QDQDQC@@@AP4IDMAP0@@T0@AL@@#@@@@@@D0@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 220 220 220 128 128 128 195 195 195 160 160 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A CFLO?0_>A?8G''!!<O''0>G'' _>A?8O?01#@F@@@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1363
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1364
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1365
search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1366
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1367
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1368
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1369
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1370
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1371
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1372
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1373
     self search16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1374
     ImageEditor openOnClass:self andSelector:#search16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1375
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1376
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1377
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1378
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1379
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1380
        constantNamed:#'ToolbarIconLibrary class search16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1381
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1382
@@@\\A10GG@>>C;8_?3??/?>??;>?/ >>C;8O @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1383
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1384
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1385
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1386
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1387
searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1388
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1389
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1390
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1391
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1392
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1393
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1394
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
     self searchNext16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1396
     ImageEditor openOnClass:self andSelector:#searchNext16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1397
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1398
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1399
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1400
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1401
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1402
        constantNamed:#'ToolbarIconLibrary class searchNext16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1403
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1404
@@@DUUT@@@@@@DT@AE@E@@@@T@@@AUT@@@AP@@@EUP@@@DT@@EUU@@@@AE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@C@@@C@@@@@@D@A@D@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1405
@@@@@@@@@C@@@@L@@@@@D@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1406
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1407
A<@LY@ \BA0LO@X@FL@X0C7 _?A?<G?0^OA8<G#0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1408
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1409
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1410
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1411
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1412
searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1413
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1414
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1415
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1416
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1417
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1418
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1419
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1420
     self searchPrev16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1421
     ImageEditor openOnClass:self andSelector:#searchPrev16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1422
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1423
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1424
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1425
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1426
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1427
        constantNamed:#'ToolbarIconLibrary class searchPrev16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1428
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1429
@@@@UUU@@@@@T@U@@EP@@@AUT@@@AP@@@EUP@@@E@@@@UUT@@EP@@@@@@@@EP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@P@@@@@@@@0@@@0@@@@@AA@@A@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1430
@@@@@@@@@@@@L@@@@0@@@@@P@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1431
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1432
@>@&LC PNA@<L@A @1 CF@^<C?8O? ?>C18OG <^@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1433
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1434
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1435
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1436
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1437
snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1438
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1439
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1440
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1441
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1442
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1443
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1444
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1445
     self snapshot16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1446
     ImageEditor openOnClass:self andSelector:#snapshot16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1448
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1449
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1450
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1451
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1452
        constantNamed:#'ToolbarIconLibrary class snapshot16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1453
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1454
@@@@@@@@@@@@@@@@@@@@@@@@@G\0@@@@@0M0\3A7L0@CL3@3LCL3@@@@@@@@@@@@@@@@&Y@@@@@@L@&X&P@@@@@0BX&Y@@@@@CLI"Y$@@@@@@@&Y&P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1455
@I&P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1456
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 212 208 200 255 255 255 128 128 0 255 255 0 128 128 128 0 255 255 0 0 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1457
@@@C G?<??;??/?>??;??/?>??;??/?>??9??@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1458
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1459
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1460
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1462
start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1464
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1466
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1467
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1468
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1469
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1470
     self start16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1471
     ImageEditor openOnClass:self andSelector:#start16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1472
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1473
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1474
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1475
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1476
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1477
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1478
        constantNamed:#'ToolbarIconLibrary class start16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1479
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
@@@@@@@@@@@@@@@@Q@@@@DP@@@Q$@@@@Q@@@QSP@@@AD@@QSI@@@@DP@QSH$QDQ@Q@QSH"M&X4ADQSH"H"H!!PDQ#H"H"H"E@QD@RH"H"HTADA@D"HQDQPDP@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1481
PAH$QDQ@Q@@D@RP@@@AD@@A@E@@@@DP@@@PD@@@@@@@@@DP@@@@b') ; colorMapFromArray:#[0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@0LG@0<CG0L?>7?;??/?>??;_?,?>1<CC0LG@@L@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1483
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1485
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1486
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1487
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1488
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1489
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1490
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1491
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1492
     self stop16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1493
     ImageEditor openOnClass:self andSelector:#stop16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1494
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1495
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1496
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1497
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1498
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1499
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1500
        constantNamed:#'ToolbarIconLibrary class stop16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1501
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1502
@@@"H"H"@@@@@$QDQDP @@@$P3L3L1H@@$P3L3L3LR@$P0@3L0@3D"P3@@L0@CLRICL0@@@CL1H$L3L@@CL3D"P3L0@@L3LRICL0@@@CL1H$L0@CL@@3D"P3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1503
@CL3@CLR@!!L3L3L3LR@@HSL3L3LR@@@BDQDQDR@@@@@"H"H"@@@b') ; colorMapFromArray:#[255 255 255 128 0 0 0 0 0 192 0 0 255 192 192]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@_>C?<_?;?????????????????????_?8??A?8C?@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1504
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1505
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1506
top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1507
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1508
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1509
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1510
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1511
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1512
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1513
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1514
     self top16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1515
     ImageEditor openOnClass:self andSelector:#top16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1516
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1517
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1518
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1519
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1520
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1521
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1522
        constantNamed:#'ToolbarIconLibrary class top16x16Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1523
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1524
AUUUUUUUUP@EUUUUUUUU@@@@@EAP@@@@@@@EYCT@@@@@@EYBD5@@@@@EYBH!!MP@@@EYBH"HST@@EYBH"H"D5@EABH"H"H!!MPUUUTH"EUUU@@@E@"HU@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1525
TBH!!T@@@@@APH"EP@@@@@EPQDU@@@@@@UUUUT@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?1??@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1526
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1527
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1528
undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1529
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1530
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1531
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1532
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1533
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1534
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1535
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1536
     self undo16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1537
     ImageEditor openOnClass:self andSelector:#undo16x16Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1538
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1539
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1540
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1541
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1543
        constantNamed:#'ToolbarIconLibrary class undo16x16Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1544
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1545
@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1546
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1547
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1548
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1549
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1550
undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1551
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1552
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1553
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1554
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1555
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1556
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1557
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1558
     self undo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1559
     ImageEditor openOnClass:self andSelector:#undo16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1560
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1561
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1562
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1564
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1565
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1566
        constantNamed:#'ToolbarIconLibrary class undo16x16Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1567
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1568
@@@@@@@@@@@@@@@CL3@@@@@@@3@@@3@@L@@0@@H"H0@2@0@BH3D"LC@0@BL0@3D0L@@BL@@@@1L0@@L@@@@CL3@@@0@@@@L3L"H"H@@@@3L3L3L3@@@CL@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1569
@@@@@CL0@@@@@@@CL0@@@@@@@3L0@@@@@@@3L@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 192 0 0 64 0 0 128 0 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A8@_8#?3_?/>^? _<A?0G? _?A @N@A0@^@C @@@b') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1570
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1571
3506
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1572
up16x16Icon
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1573
    <resource: #programImage>
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1574
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1575
    ^ self up16x16Icon2
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1576
!
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  1577
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1578
up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1579
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1580
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1581
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1582
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1584
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1585
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1586
     self up16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1587
     ImageEditor openOnClass:self andSelector:#up16x16Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1588
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1589
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1590
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1591
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1592
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1593
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1594
        constantNamed:#'ToolbarIconLibrary class up16x16Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1595
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1596
@@@@@@@@@@@@@@@F@@@@@@@@@FE @@@@@@@FATX@@@@@@FASIF@@@@@FASL2Q @@@FASL3L$X@@FASL3L3IF@FESL3L3L2Q Y&Y%L3I&Y&@@@FD3L&@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1597
XSL2X@@@@@A!!L3I @@@@@FT"H&@@@@@@Y&Y&X@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b') ; yourself); yourself]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1598
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1599
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1600
upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1601
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1602
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1603
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1604
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1605
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1606
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1607
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1608
     self upRight16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1609
     ImageEditor openOnClass:self andSelector:#upRight16x16Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1610
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1611
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1612
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1613
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1614
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1615
    ^Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1616
        constantNamed:#'GenericToolbarIconLibrary class upRight16x16Icon'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1617
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1618
@@@@@@@@@@@@@@@@T@@@@@@@@@AU@@@@@@@@@EAP@@@EUUUUT T@@@T@@BL3HE@@APL3L3L2AP@E@3L3L3MAT@TCL3L3MAT@APMDQCMAT@@E@4UUUAT@@@TC
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1619
QPAQT@@@APME@ET@@@@E@4T@T@@@@@UUUP@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@ @C@@NA?<G?8_?1??''?<_?!!?<G3 _LA< G0@@@@b') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1620
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1621
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1622
viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1623
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1624
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1625
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1626
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1627
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1628
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1629
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1630
     self viewDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1631
     ImageEditor openOnClass:self andSelector:#viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1632
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1633
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1634
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1635
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1636
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1637
    ^Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1638
        constantNamed:#'GenericToolbarIconLibrary class viewDetails16x16Icon'
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1639
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@]+X@@@@@]+X@@@@@]+X@@@@@]+X@@@@@@@@b') ; yourself); yourself]
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1640
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1641
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1642
viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1643
    "This resource specification was automatically generated
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1644
     by the ImageEditor of ST/X."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1645
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1646
    "Do not manually edit this!! If it is corrupted,
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1647
     the ImageEditor may not be able to read the specification."
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1648
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1649
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1650
     self viewNoDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1651
     ImageEditor openOnClass:self andSelector:#viewNoDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1652
     Icon flushCachedIcons
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1653
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1654
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1655
    <resource: #image>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1656
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1657
    ^Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1658
        constantNamed:#'GenericToolbarIconLibrary class viewNoDetails16x16Icon'
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  1659
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@@@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1660
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1661
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1662
!GenericToolbarIconLibrary class methodsFor:'image specs-20x20'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1663
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1664
copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1665
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1666
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1667
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1668
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1669
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1670
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1671
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1672
     self copy20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1673
     ImageEditor openOnClass:self andSelector:#copy20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1674
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1675
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1676
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1677
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1678
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1679
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1680
        constantNamed:#'ToolbarIconLibrary class copy20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1681
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1682
QDQDQDQDQDQDQDQADQDTQDQDQDQDPTQDDDQDQDQDQDECMAPDQDQDQDQAQDPP@DQDQDQDPTL3P3ADQDQDQDEDQADQDTQDQDQAP3LTQDDDQDQDPTQBECMAPDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1683
QDECL1QDPP@DQDQAP$HTL3P3ADQDPRP"EDQDI@QDQDD@@AP3L3HDQDQDQDPTQBP"ADQDQDQDECL3L QDQDQDQAP$H"HDQDQDQDPRP"H"ADQDQDQD@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1684
QDQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1685
@@@@G8@@G<@@G>@@G?@@G?@@G?0@G?8@G?<@G?>@G?>@G?>@G?>@@O>@@O>@@O>@@O>@@O>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1686
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1687
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1688
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1689
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1690
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1691
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1692
cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1693
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1694
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1695
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1696
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1697
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1698
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1699
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1700
     self cut20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1701
     ImageEditor openOnClass:self andSelector:#cut20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1702
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1703
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1704
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1705
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1706
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1707
        constantNamed:#'ToolbarIconLibrary class cut20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1708
        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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1709
@@@@@PP@@PP@@PP@@PP@@H @@H @@M @@E@@@G@@@B@@@G0@@]H@@%H@@%H@@$0@@$@@@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1710
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1711
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1712
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1713
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1714
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1715
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1716
cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1717
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1718
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1719
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1720
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1721
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1722
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1723
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1724
     self cut20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1725
     ImageEditor openOnClass:self andSelector:#cut20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1726
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1727
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1728
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1729
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1730
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1731
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1732
        constantNamed:#'ToolbarIconLibrary class cut20x20Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1733
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1734
@@@@@@@@@@@@@@DQDQ@@@@@@@@@AQDPP@@@@@@@@@TL4E@@@@@@@@@EDQA@@@@@@@@@AP3MCL@@@@@@@@TQDP$@@@@@@@@ECL3L @@@@@@@AQDIBH@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1735
@TL3L2@@@@@@@@EBP"H @@@@@@@AIBH"H@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1736
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1737
@@@@_ @@_1A@_9A@_=A@_=A@_<"@_<"@_<6@_<T@_<\@_<H@_<_@@A4 @BT @BT @BS@@BP@@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1738
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1739
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1740
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1741
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1742
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1743
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1744
debugIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1745
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1746
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1747
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1748
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1749
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1750
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1751
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1752
     self debugIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1753
     ImageEditor openOnClass:self andSelector:#debugIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1754
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1755
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1756
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1757
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1758
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1759
        constantNamed:#'ToolbarIconLibrary class debugIt20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1760
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1761
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@AP@@@3@@@@@@@E@@@3DS@@@@@@UP@@LSL2@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1762
@@AUD@@@L3L @@@ETQUU@3L2@@@@UQEUTCL3H @@@@@EUP@BH @@@@@@AT@@@@@@@@@@@@P@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1763
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 128 0 0 248 0 0 208 220 0 248 252 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1764
@@@@@@@@@@@@@D@@@L#@@Z_ @9? A7?@C3?@G??@O?> _?>@_;=@C14@C @@G@@@F@@@L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1765
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1766
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1767
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1768
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1769
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1770
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1771
doIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1772
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1773
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1774
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1775
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1776
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1777
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1778
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1779
     self doIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1780
     ImageEditor openOnClass:self andSelector:#doIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1781
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1782
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1783
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1784
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1785
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1786
        constantNamed:#'ToolbarIconLibrary class doIt20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1787
        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@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1788
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1789
@@@@@@@@@@P@@@0@@A @@C @@G@@@O@@@_<@@?8@A?0@C? @@O@@@N@@@\@@@X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1790
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1791
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1792
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1793
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1794
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1796
dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1797
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1798
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1799
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1800
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1801
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1802
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1803
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1804
     self dos20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1805
     ImageEditor openOnClass:self andSelector:#dos20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1806
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1807
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1808
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1809
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1810
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1811
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1812
        constantNamed:#'ToolbarIconLibrary class dos20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1813
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1814
@@@@@@@@@@@@@@L3L3L3L3L3L3@CDQDQDQDQDQDP@1H"H"H"H"H#D@LRIDH"H"H"H1@CD$H"IBIBH"LP@1IBH"H"IBH#D@LRP"H"H"IBH1@CD$H"IBH$H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1815
@1H$P"H"P"H#D@LSL3L3L3L3L1@CDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1816
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ @@C&L@D)P@D)H@D)D@C&X@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1817
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1818
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1819
dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1820
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1821
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1822
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1823
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1824
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1825
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1826
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1827
     self dosWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1828
     ImageEditor openOnClass:self andSelector:#dosWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1829
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1830
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1831
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1832
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1833
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1834
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1835
        constantNamed:#'ToolbarIconLibrary class dosWithoutText20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1836
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1837
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H$P"H"H"H#D@LRP"P"H"P"H1@CD$H"H$H"P"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1838
@1IBH"H"H"P#D@LRP"H"H"H"P1@CD$H"H$H"IBLP@1IBIBH"H$H#D@LRIDH"H"P"H1@CD"H"H"H"H"LP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1839
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1840
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1841
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1842
downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1843
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1844
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1845
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1846
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1847
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1848
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1849
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1850
     self downArrow20x20Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1851
     ImageEditor openOnClass:self andSelector:#downArrow20x20Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1852
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1853
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1854
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1855
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1856
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1857
    ^Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1858
        constantNamed:#'GenericToolbarIconLibrary class downArrow20x20Icon'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1859
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1860
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@@@@@@@@@ HB@ HB@ HB@ HB@@HB@ HB@ @B@ HB@ HB@ HB@ H@@ DA
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1861
@PDB@@HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@@HA@PDA@ @B@ HB@ HB@ HB@ H@@ DA@PDB@@HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1862
@ @@@@@@@@HA@PDA@ @@@@@@@@HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@ @B@PDA@PDA@PDA@PH@@ HB@ HB@ @B@PDA@PDA@PDB@@HB@ HB@ HB@ @B@PDA
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1863
@PDA@ @B@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@ @B@PDB@@HB@ HB@ HB@ HB@ HB@ @B@ @B@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1864
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?0E@?0@@?0G@?0@@?0B@?0@@?0@_?? O??MG?>@C?<@A?8C@?0H@_ @@O@@@F@C@@@A@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1865
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  1866
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1867
edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1868
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1869
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1870
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1871
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1872
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1873
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1874
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1875
     self edit20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1876
     ImageEditor openOnClass:self andSelector:#edit20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1877
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1878
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1879
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1880
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1881
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1882
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1883
        constantNamed:#'ToolbarIconLibrary class edit20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1884
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1885
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ H@@@HB@ HB@ HB@ HB@ HB@ HB@@\F@@HB@ HB@ HB@ HB@ HB@ H@A0XI@@HB@ HB@ HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1886
@ HB@@\FA $@@ HB@ HB@ HB@ HB@ H@A0XI@@HB@ HB@ HB@ @@@@@@@@\FA $@@ HB@ HB@ H@@0LN@00@A0XI@@HB@ HB@ HB@@LC@08N@@\FA $@@@HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1887
@ HB@ @C@0@@@0L@A0XI@A@@@ HB@ H@@0L@C 8@@@(FA $@DP@@@ HB@@LC@@8P@@L@B DF@ALCC @B@ @C@0@@@@TC@0@A@P4@@0<C@@H@@@LC@0LC@@LC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1888
@@@M@@LE@0L@@ @@@@@@C 8C@0L@@@@CC0LC@@HB@ HB@ H@@@@NC @@@1DC@0@@@ HB@ HB@ HB@ @@C LE@0L@@ HB@ HB@ HB@ HB@ H@D@LC@@HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1889
@ HB@ HB@ HB@ H@@@@B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 166 126 78 0 255 51 255 255 255 153 153 153 102 102 102 255 204 0 255 255 102 248 3 8 236 152 0 253 202 138 102 102 102 204 204 204 110 74 32 181 181 181 125 125 125 117 117 117 162 162 162 254 12 17 214 214 214]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@F@@@O@@@O @@_ @@_@@_?@@?>@A?>@C??@G?? O?? _?? _?? O??@A?>@@O<@@C8@@A0@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1890
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1892
empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1893
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1894
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1895
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1896
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1897
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1898
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1899
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1900
     self empty1x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1901
     ImageEditor openOnClass:self andSelector:#empty1x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1902
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1903
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1904
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1905
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1906
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1907
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1908
        constantNamed:#'ToolbarIconLibrary class empty1x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1909
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1910
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1911
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1912
erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1913
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1914
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1915
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1916
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1917
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1918
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1919
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1920
     self erase20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1921
     ImageEditor openOnClass:self andSelector:#erase20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1922
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1923
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1924
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1925
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1926
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1927
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1928
        constantNamed:#'ToolbarIconLibrary class erase20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1929
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1930
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EDQAD@@@@@@@@@P3PTD@@@@@@@@@QDDQ@@@@@@@@@@L4L@@@@@@@@A@@Q@@P@@@@@@@T@@@BD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1931
@@@@ED@@H!!@@@@@@@AP@@@HP@@@@@@@P@BH@D@@@@@@@@@H"H@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1932
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 64 64 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1933
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1934
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1935
erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1936
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1937
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1938
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1939
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1940
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1941
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1942
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1943
     self erase20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1944
     ImageEditor openOnClass:self andSelector:#erase20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1945
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1946
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1947
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1948
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1949
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1950
        constantNamed:#'ToolbarIconLibrary class erase20x20Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1951
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1952
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EUUQD@@@@@@@@@UDTUD@@@@@@@@@UUDQ@@@@@@@@@@QEH@@@@@@@@A@@UP@P@@@@@@@U@@@CD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1953
@@@@EU@@L1@@@@@@@AT@@@LP@@@@@@@P@CL@D@@@@@@@@@L3L@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1954
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 0 0 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1955
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1956
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1957
fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1958
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1959
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1960
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1961
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1962
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1963
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1964
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1965
     self fileIn20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1966
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1967
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1968
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1969
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1970
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1971
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1972
        constantNamed:#'ToolbarIconLibrary class fileIn20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1973
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1974
@@@@@@@@@@@@@@@@@@@@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 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1975
@@@@L3L3M&Y&X@@@@CL3L2YDQF@@@@@@@3X"H"I @@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1976
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G?0@G?0?7?0???0?7?0?7?0?7?0???0???0_??0@??0@G?0@G?0@G?0J H@P @@R&I R)JP:/JPR(JPR&JP') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1977
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1978
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1979
fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1980
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1981
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1982
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1983
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1984
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1985
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1986
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1987
     self fileIn20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1988
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1989
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1990
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1991
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1992
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1993
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1994
        constantNamed:#'ToolbarIconLibrary class fileIn20x20Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1995
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1996
@@@@@@@@@@@@@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 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1997
^:"(L3L3M&Y&XG.[&SL3L2YDQFA9.Y&Y@3X"H"I \@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1998
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G?0?G?0?''?0???0???0???0???0???0???0???0???0???0???0@G?0J H@P @@R&I R)JP:/JPR(JPR&JP') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1999
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2000
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2001
fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2002
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2003
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2004
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2005
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2006
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2007
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2008
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2009
     self fileIn20x20Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2010
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2011
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2012
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2013
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2014
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2015
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2016
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2017
        constantNamed:#'ToolbarIconLibrary class fileIn20x20Icon3'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2018
        ifAbsentPut:[(Depth4Image new) width: 20; height: 21; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2019
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@A&Y&Y&@8"HL@@@Y7]6Y NFZC @@FH"I&XC"H 0@@A&I&Y&@8Y&!!&@@Y"Y&Y 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2020
NH"HR@A6X&DQXC!!&Y&P@]6H"H&@8"D]7]7]2Y&Y NFY'']7]7]6Y&XC!!HQ7]7]7I%UV@4!!DQD@G]"H"I L@@@@@A6Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2021
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 127 0 63 63 36 64 64 64 168 228 240 194 194 0 208 212 208 255 0 0 255 255 255]; mask:((Depth1Image new) width: 20; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C?0?C?0?#?0?3?0?;?0?;?0?;?0?;?0???0???0???0?;?0?;?0@C?0@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2022
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2023
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2024
fileNew20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2025
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2026
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2027
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2028
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2029
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2030
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2031
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2032
     self fileNew20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2033
     ImageEditor openOnClass:self andSelector:#fileNew20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2034
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2036
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2037
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2038
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2039
        constantNamed:#'ToolbarIconLibrary class fileNew20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2040
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2041
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@@@@@@@@1DQL @@@@@@@@LQDSD @@@@@@@CDQD1D @@@@@@@1DQL"H @@@@@@LQDQQDH@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2042
@@@CDQDQTR@@@@@@@1DQEQT @@@@@@LQDUEUH@@@@@@CDQTUUR@@@@@@@1EQUUT @@@@@@LUEUUUH@@@@@@CTUUUUR@@@@@@@2H"H"H @@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2043
@@@@@@@@@@@@@@@@@@@@@@@@@@@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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2044
@@@@@@@@@@@@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@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2045
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2046
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2047
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2048
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2049
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2050
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2051
fileOpen20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2052
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2053
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2054
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2055
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2056
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2057
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2058
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2059
     self fileOpen20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2060
     ImageEditor openOnClass:self andSelector:#fileOpen20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2061
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2062
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2063
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2065
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2066
        constantNamed:#'ToolbarIconLibrary class fileOpen20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2067
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2068
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL0@@@@@@@@@@L@@0L@@@@@@@@@@@@3@@@BH"@@@@@CL0@@HQDRH"H @@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2069
@BEUTQDQD @@@@@!!UUUUUUH@@@@@HUT"H"H"H"H@@BERQDQDQDP @@@!!IDQDQDQB@@@@H$QDQDQDH@@@@BH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2070
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 0 0 128 128 128 0 248 252 184]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2071
@@@@@@@@@@@@@@@@@@8@@AE@@@C@G G@O? @O?0@O?0@O??@O?>@O?<@O?8@O?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2072
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2073
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2074
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2075
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2076
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2077
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2078
fileSave20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2079
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2080
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2081
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2082
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2083
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2084
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2085
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2086
     self fileSave20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2087
     ImageEditor openOnClass:self andSelector:#fileSave20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2088
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2089
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2090
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2091
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2092
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2093
        constantNamed:#'ToolbarIconLibrary class fileSave20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2094
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2095
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3H"H"H"@@@@@C]7H"QDIB@@@@@7QBH$QBQB@@@@M4P"IDP$P @@@C]DH"H"QDH@@@@7QDQDQDQB@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2096
@@M4Y&Y&Y$P @@@C]!!DQDQU$H@@@@7XQDQEQYB@@@@M6DQDUEVP @@@C]!!DQTUU$H@@@@7XQEQUUX"@@@@M6DUEUUVD @@@BH"H"H"H"H@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2097
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 168 172 168 168 228 240 96 96 96 208 212 208]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2098
@@@@@@@@@@@@G?8@G?<@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@G?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2099
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2100
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2101
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2102
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2103
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2104
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2105
fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2106
    "This resource specification was automatically generated
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2107
     by the ImageEditor of ST/X."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2108
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2109
    "Do not manually edit this!! If it is corrupted,
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2110
     the ImageEditor may not be able to read the specification."
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2111
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2112
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2113
     self fitImageSizeToView20x20Icon inspect
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2114
     ImageEditor openOnClass:self andSelector:#fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2115
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2116
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2117
    <resource: #image>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2118
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2119
    ^Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2120
        constantNamed:#'GenericToolbarIconLibrary class fitImageSizeToView20x20Icon'
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2121
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2122
@@DQDQDQDQDP@@@PDQDQDQDQ@P@A@ADQDQDQDP@PD@@PDQDQDPD@@QDQ@ADQDQ@@DQDQD@@@@@@@@@DQDQDPQDQDQ@DQDQDQDDQUUTPADQDQDQAEUUUT@QDQ
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2123
DQDPQEUUQ@DQDQDQDDQFQDPADQDQDQADQ$QD@QDQDQDPL3X3Q@DQDQDQDCL3L3LADQDQD@@@@@@@@@DQDQD@DQDQDP@QDQ@@DADQDQDA@@DA@ADQDQDQDP@P
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2124
@@@QDQDQDQDA@@@ADQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2125
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2126
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 0 0 137 0 174 218 230 0 206 0 133 60 36]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2127
8@A00@@0(@APE@J@C@L@G?>@A?8@A?8@A?8@A?8@A?8@A?8@A?8@A?8@G?>@C@L@E@J@(@AP0@@08@A0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2128
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2129
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2130
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2131
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2132
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  2133
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2134
history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2135
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2136
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2137
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2138
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2139
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2140
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2141
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2142
     self history20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2143
     ImageEditor openOnClass:self andSelector:#history20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2144
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2145
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2146
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2147
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2148
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2149
        constantNamed:#'ToolbarIconLibrary class history20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2150
        ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2151
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J** @@@@IVU @@@@J**"@@@@IVU"@@@@J**"H@@@IVU"H@@@J**"H @@IVU"H @@J**"H @@@@@BH @@@***H @
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2152
@@@@@H @@@B**( @@@@@@@ @@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 129 194 194 194 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@G?0@G?0@G?<@G?<@G??@G??@G??0G??0G??0G??0G??0A??0A??0@_?0@_?0@G?0@G?0@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2153
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2154
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2155
inspectIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2156
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2157
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2158
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2159
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2160
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2161
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2162
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2163
     self inspectIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2164
     ImageEditor openOnClass:self andSelector:#inspectIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2165
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2166
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2167
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2168
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2169
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2170
        constantNamed:#'ToolbarIconLibrary class inspectIt20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2171
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2172
"H"H"H"H"H"H"H"H"H @@H"H"H"H"H @M&D@"H"H"H"@M&]&XP"H"H"H FXWY&XH"H"H"@E!!]FY&DH"H"H AEWQFY&BH"H"H@[]$Y&Y "H"H"@.7Y&Y&LH"H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2173
"HB;Q1DWY "H"H K-D.:]&LH"H"@.4R;)1L@&X"H @@K. @@"@JX"H"HB:BH"H"@JX"H"@(H"H"H"@JX"HB "H"H"H"@JX"@BH"H"H"H"@BH@H"H"H"H"H"H
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2174
"@"H"H"H"H"H"H"H"H"H"H"H"H b') ; colorMapFromArray:#[0 0 0 128 132 128 168 172 168 208 212 208 248 252 248 248 252 128 152 204 216 64 64 64 255 255 255 128 64 64 208 220 0 248 252 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2175
@@@@@O@@@?0@A?8@A?8@C?<@C?<@C?<@C?<@G?8@O?8@_?<@_?N@C0G@C C G@A0F@@0L@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2176
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2177
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2178
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2179
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2180
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2181
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2182
inspectLocals20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2183
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2184
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2185
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2186
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2187
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2188
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2189
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2190
     self inspectLocals20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2191
     ImageEditor openOnClass:self andSelector:#inspectLocals20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2192
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2193
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2194
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2195
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2196
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2197
        constantNamed:#'ToolbarIconLibrary class inspectLocals20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2198
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2199
@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H@@BEDQDQDQDDR@@@$P"H$QDQDP @@H"%&T"DQDWH@@B%&Y&YRDQ\R@@@& VY&X!!E1\ @B%!!DX"FT''E7H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2200
@&Y!!Y&Y&HW]2@@I&"F"HY"]7\ @BU(!!&Y&$'']7H@@BY&Y&Y"H"H"@@@%Y&Y&$ @@@@@@@"U&$"L0@@@@@@@BH"@BT0@@@@@@@@@@@BT0@@@@@@@@@@@BT0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2201
@@@@@@@@@BT0@@@@@@@@@@@BH@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 128 64 64 0 0 248 168 172 168 152 204 216 168 228 240 112 156 160 208 212 208]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2202
@@@@@@@@O??@O??@O??@O??@O??@O??@_??@_??@_??@_??@O??@O?@@G? @A90@@@8@@@\@@@N@@@F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2203
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2204
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2205
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2206
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2207
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2208
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2209
leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2210
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2211
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2212
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2213
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2214
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2215
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2216
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2217
     self leftArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2218
     ImageEditor openOnClass:self andSelector:#leftArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2219
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2220
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2221
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2222
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2223
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2224
    ^Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2225
        constantNamed:#'AbstractFileBrowser class leftArrow20x20Icon'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2226
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2227
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@@HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ H@@ @B@ HB@ HB@ HB@ HB@ HB@@HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2228
@@HB@ HB@ HB@ HB@ HB@ @B@PD@@ HB@ HB@ HB@ HB@ H@@ DA@P@@@@@@@@@@@ HB@ HB@@HA@PDA@ HB@ HB@ @B@ HB@ @B@PDA@PDA@PDA@PDB@@HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2229
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@ @B@PDA@PDA@PDA@PDB@@HB@ HB@ @B@PDA@PHB@ HB@ H@@ HB@ HB@ @B@PDA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2230
@@@@@@@@@@@B@ HB@ HB@ @B@PD@@ HB@ HB@ HB@ HB@ HB@ @B@P@B@ HB@ HB@ HB@ HB@ HB@ @B@@HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2231
@ HB@ HB@ HB@ @B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@M@B@@@F@J@N@@@^@J@>@@A??@C??@G??OO??@O??@G??@C??@A??E@>@H@^@@@N@@@F@N@B@A@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2232
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2233
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2234
newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2235
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2236
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2237
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2238
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2239
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2240
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2241
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2242
     self newDirectory20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2243
     ImageEditor openOnClass:self andSelector:#newDirectory20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2244
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2245
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2246
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2247
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2248
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2249
    ^Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2250
        constantNamed:#'AbstractFileBrowser class newDirectory20x20Icon'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2251
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2252
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@A@ HB@ HA@@@@@@@@@@@@@@@@@PHB@ HB@ HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2253
@@@@@@@@@@@@@@DA@PDA@PDA@P@@@@@@@@@@@@D@@PHB@ HB@ HB@ HB@@@@@ HB@P@A@ HB@ HB@ HB@ @B@@H@@ HA@@DB@ HB@ HB@ H@@ H@@ H@@ D@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2254
@PHB@ HB@ HB@@HB@ @B@ H@@P@A@ HB@ HB@ HB@ HB@ HB@ HA@@DB@ HB@ HB@ HB@ HB@ HB@ D@@PHB@ HB@ HB@ HB@ HB@ HB@P@A@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2255
@ HB@ HB@ HA@@DB@ HB@ HB@ HB@ HB@ HB@ D@@PHB@ HB@ HB@ HB@ HB@ HB@P@A@ HB@ HB@ HB@ HB@ HB@ HA@@DA@PDA@PDA@PDA@PDA@PDA@PD@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2256
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 0 0 0 0 0 255 255 0]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@DQ@O:R@O9T@_<8@??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? @@@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2257
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2258
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2259
paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2260
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2261
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2262
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2263
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2264
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2266
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2267
     self paste20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2268
     ImageEditor openOnClass:self andSelector:#paste20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2269
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2270
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2271
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2272
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2273
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2274
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2275
        constantNamed:#'ToolbarIconLibrary class paste20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2276
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2277
@@@@@@@@@@@@@@@@@@@3L@@@@@@@@@L3&YH3@@@@@@@5T9&RUR@@@@@CUG&UURP2@@@@@5Q2H"H$L @@@@MTQDQDQCH@@@@CUDQCL3L2@@@@@5QDP1DQL @@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2278
@@MTQDLX SD @@@CUDQCDQD2H @@@5QDP1"HFHH@@@MTQDLQDQXR@@@CUDQCFH"HX @@@5QDP1DVE&H@@@MTQDLX"H!!"@@@@H"H#E!!Y&X @@@@@@@6E&Y&H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2279
@@@@@@L"H"H"@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[255 255 255 248 252 248 0 0 0 64 64 64 128 132 128 168 172 168 168 228 240 96 96 96 208 212 208 248 252 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2280
@@@@@N@@A?0@C?8@G?<@G?<@G?<@G?<@G?<@G?>@G??@G??@G??@G??@G??@G??@C??@@G?@@G?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2281
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2282
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2283
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2284
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2285
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2286
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2287
printIt20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2288
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2289
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2290
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2291
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2292
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2293
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2294
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2295
     self printIt20x20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2296
     ImageEditor openOnClass:self andSelector:#printIt20x20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2297
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2298
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2299
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2300
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2301
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2302
        constantNamed:#'ToolbarIconLibrary class printIt20x20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2303
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2304
@@@@@@@@@@@@@@@@@@L3L3L0@@@@@@@CDQDQL @@@@@@@1DQLSD @@@@@@LQECD2H @@@@@CDTLQEUH@@@@@@1RCDQXR@@@@@@MHLQE!!X @@@@@B"CDVE&H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2305
@@@@JHD4QFY"@@@@@( Q"GM&X @@@B"AFH\6Y&H@@@H"H(!!3Y&Y"@@@@@@JGM&Y&X @@@@@B\"H"H"H@@@@@I2@@@@@@@@@@@BH@@@@@@@@@@@H @@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2306
@@@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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2307
@@@@@_8@@_<@@_>@@_?@@_?@@_?@@_?@@_?@@??@A??@C??@G??@@_?@@_?@@8@@@0@@A @@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2308
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2309
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2310
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2311
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2312
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2313
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2314
redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2315
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2316
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2317
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2318
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2319
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2320
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2321
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2322
     self redo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2323
     ImageEditor openOnClass:self andSelector:#redo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2324
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2325
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2326
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2328
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2329
        constantNamed:#'ToolbarIconLibrary class redo20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2330
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2331
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2332
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2333
rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2334
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2335
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2336
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2337
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2338
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2339
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2340
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2341
     self rightArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2342
     ImageEditor openOnClass:self andSelector:#rightArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2343
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2344
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2345
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2346
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2347
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2348
    ^Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2349
        constantNamed:#'AbstractFileBrowser class rightArrow20x20Icon'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2350
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2351
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ H@@ HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ HB@@H@@ HB@ HB@ HB@ HB@ HB@ H@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2352
@PH@@ HB@ HB@ HB@ HB@ HB@ @A@PH@@ HB@ HB@ H@@@@@@@@@@@DA@PH@@ HB@ HB@ @B@ HB@ HB@PDA@PH@@ HB@ HB@@HA@PDA@PDA@PDA@PH@@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2353
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@ @B@PDA@PDA@PDA@PDA@ @B@ HB@@HA@PDA@PDA@PDA@PH@@ HB@ H@@ HB@ HB@ DA@PDB@@HB@ HB@ @@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2354
@PDA@ @B@ HB@ HB@ HB@ HB@ @A@PH@@ HB@ HB@ HB@ HB@ HB@@DB@@HB@ HB@ HB@ HB@ HB@ H@@ @B@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2355
@ HB@ HB@ HB@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@D@@@F@H@G@@@G @@G0@O?8AO?<@O?>@O??@O??DO?>DO?<@O?8@@G0@@G @@G@@@F@@@D@J@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2356
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2357
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2358
search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2359
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2360
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2361
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2362
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2363
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2364
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2365
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2366
     self search20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2367
     ImageEditor openOnClass:self andSelector:#search20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2368
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2369
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2370
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2371
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2372
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2373
        constantNamed:#'ToolbarIconLibrary class search20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2374
        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@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2375
@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 212 208 200 255 255 255]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@A10@A10@A10@C;8@C;8@G?<@O?>@O?>@O?>@O;>@O >@O >@O >@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2376
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2377
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2378
shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2379
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2380
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2381
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2382
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2383
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2384
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2385
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2386
     self shell20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2387
     ImageEditor openOnClass:self andSelector:#shell20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2388
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2389
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2390
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2391
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2392
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2393
        constantNamed:#'ToolbarIconLibrary class shell20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2394
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2395
@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"H"H"H"H#D@LRIDH"H"H"H1@CD$P"H"H"H"LP@1IDH"H"H"H#D@LRIDH"H"H"H1@CD"QBH"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2396
@1IDH$QBQDH#D@LRH"H"H"H"H1@CD3L3L3L3L3LP@1DQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2397
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ B F82 H%J D%: B%B L$2 ') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2398
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2399
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2400
shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2401
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2402
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2403
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2404
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2405
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2406
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2407
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2408
     self shell20x20WithoutTextIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2409
     ImageEditor openOnClass:self andSelector:#shell20x20WithoutTextIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2410
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2411
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2412
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2413
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2414
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2415
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2416
        constantNamed:#'ToolbarIconLibrary class shell20x20WithoutTextIcon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2417
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2418
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2419
@1ICP"H"H"H#D@LRIDP"H"H"H1@CD"MBP"H"H"LP@1IBP$H"H"H#D@LRIDP"H"H"H1@CD"IBH$QBQDLP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2420
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2421
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2422
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2423
shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2424
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2425
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2426
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2427
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2428
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2429
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2430
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2431
     self shellWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2432
     ImageEditor openOnClass:self andSelector:#shellWithoutText20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2433
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2434
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2435
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2436
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2437
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2438
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2439
        constantNamed:#'ToolbarIconLibrary class shellWithoutText20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2440
        ifAbsentPut:[(Depth4Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2441
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L3L3L3L@LQDQDQDQDQDQ@CD"H"H"H"H"LP@1H"P"H"H"H#D@LRIDP"H"H"H1@CD$IBP"H"H"LP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2442
@1ICP"H"H"H#D@LRIDP"H"H"H1@CD"MBP"H"H"LP@1IBP$H"H"H#D@LRIDP"H"H"H1@CD"IBH$QBQDLP@1L3L3L3L3L3D@@QDQDQDQDQDQ@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2443
@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2444
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2445
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2446
undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2447
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2448
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2449
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2450
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2451
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2452
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2453
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2454
     self undo20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2455
     ImageEditor openOnClass:self andSelector:#undo20x20Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2456
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2457
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2458
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2459
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2460
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2461
        constantNamed:#'ToolbarIconLibrary class undo20x20Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2462
        ifAbsentPut:[(Depth1Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2463
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2464
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2465
upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2466
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2467
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2468
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2469
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2470
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2471
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2472
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2473
     self upArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2474
     ImageEditor openOnClass:self andSelector:#upArrow20x20Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2475
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2476
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2477
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2478
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2479
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2480
    ^Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2481
        constantNamed:#'AbstractFileBrowser class upArrow20x20Icon'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2482
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2483
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@ HB@ HB@ HB@ HB@ HB@ H@@ H@@ HB@ HB@ HB@ HB@ HB@@HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2484
@PH@@ HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ H@@ DA@PDA@PH@@ HB@ HB@ HB@@HA@PDA@PDA@PH@@ HB@ HB@ @B@PDA@PDA@PDA@PH@@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2485
@ H@@ DA@PDA@PDA@PDA@PH@@ HB@@@@@@@@@ DA@PDB@@@@@@@@@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@@HA@PDA@ @B@ HB@ HB@ HB@ H@@ DA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2486
@PDB@@HB@ HB@ HB@ HB@ @B@PDA@PH@@ HB@ HB@ HB@ HB@@HA@PDA@ @B@ HB@ HB@ HB@ H@@ HB@ HB@@HB@ HB@ HB@ HB@ @@@@@@@@@@@ HB@ HB
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2487
@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@J@@@@@F@@@O@@@_ O@?0@A?8@C?<@G?>@O??E_??(@?0@@?0@@?0N@?0A@?0@@?0@@?0K@@@A@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2488
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2489
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2490
!GenericToolbarIconLibrary class methodsFor:'image specs-22x22'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2491
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2492
backward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2493
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2494
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2495
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2496
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2497
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2498
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2499
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2500
     self backward3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2501
     ImageEditor openOnClass:self andSelector:#backward3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2502
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2503
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2504
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2505
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2506
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2507
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2508
        constantNamed:#'ToolbarIconLibrary class backward3DIcon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2509
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2510
UUUUUUUPUUUUUUUPUUT@EUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPWUT*%UUPWWR*)UUPWUR*)UUP_5R*)UUP_UJ**UUP_UJ**UUPUUJ**UUPUPJ**UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2511
UR***)UPUTJ**UUPUUP*%UUPUUUAUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O @@O0@@O0@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@@?<@C??@C??@A?>@@_8@@G @@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2512
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2513
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2514
close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2515
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2516
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2517
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2518
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2519
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2520
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2521
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2522
     self close22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2523
     ImageEditor openOnClass:self andSelector:#close22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2524
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2525
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2526
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2527
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2528
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2529
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2530
        constantNamed:#'ToolbarIconLibrary class close22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2531
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2532
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2533
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2534
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2535
@@@B@ H@@ HB@@@@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@A@@@@@@@B@ H@@@@@@@HB@ @@@@@@@@@@@@@B@ H@@@@@@@@@@ HB@@@@@@@@@@@@@ H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2536
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2537
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2538
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2539
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2540
copy22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2541
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2542
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2543
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2544
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2545
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2546
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2547
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2548
     self copy22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2549
     ImageEditor openOnClass:self andSelector:#copy22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2550
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2551
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2552
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2553
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2554
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2555
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2556
        constantNamed:#'ToolbarIconLibrary class copy22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2557
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2558
@@@@@@@@@@AUUUW@@@A???>@@@A???>O@@A???>@@@A???>@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8?>@G???8?>IG???8?>@G???8**M
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2559
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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2560
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2561
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2562
copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2563
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2564
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2565
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2566
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2567
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2568
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2569
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2570
     self copyMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2571
     ImageEditor openOnClass:self andSelector:#copyMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2572
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2573
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2574
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2575
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2577
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2578
        constantNamed:#'ToolbarIconLibrary class copyMenuItem22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2579
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2580
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O@@@@@@@@@@AUUUW@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8**@G???8@@IN***(@@@@@@@@@@M
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2581
@@@@@@@@G???8@@KG???8@@@G???8@@@G???8@@HN***(@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<???<???<???<???<???<???<???<??8@??8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2582
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2583
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2584
currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2585
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2586
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2587
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2588
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2589
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2590
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2591
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2592
     self currentDirectoryIcon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2593
     ImageEditor openOnClass:self andSelector:#currentDirectoryIcon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2594
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2595
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2596
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2597
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2598
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2599
    ^Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2600
        constantNamed:#'GenericToolbarIconLibrary class currentDirectoryIcon'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2601
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(nil)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2602
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQIDP!!DP@@@@@@DQIDQDHQD@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2603
DQIDQDQBDQ@@@@DQIDQDQDP!!DP@@DQIDQDQDQDHQD@D"IDQDQDQDQ@@A@RH$QDQDQDQD@@D@@@QDQDQDQDP@@@@@ADQD@@QDQ@@@@@@DQDP@ADQD@@@@@@QD
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2604
Q@@DQDP@@@@@ADQDQDQDQ@@@@@@DQDQDQDQD@@@@@@QDQDQDQDP@@@@@ADQDQDQDQ@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2605
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  2606
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2607
cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2608
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2609
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2610
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2611
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2612
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2613
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2614
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2615
     self cut22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2616
     ImageEditor openOnClass:self andSelector:#cut22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2617
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2618
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2619
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2620
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2621
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2622
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2623
        constantNamed:#'ToolbarIconLibrary class cut22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2624
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2625
@@@@@@@@@@@@@@@@DQDQDP0AL@@L@@@SL3L3CBL @B0@@AL3L3LL0B@@3@@@D3L3L0KB@@KB@@@SL3L3LL0@CL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2626
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@SL3L3L0CL0@@@@AL3L3L3@,CB@@@@D3L3L3@L0L0@@@@2H"H H"0 KBH @@@@@@KL3@@L3LH@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2627
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?<@_=\P_=<0_=,0_=50_>5 _>; _?[@_?[@_?.@_?.@_?N@_?[@_>[@_;;8_75<@F1,@D1$@D1$@F ,@C@X@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2628
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2629
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2630
cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2631
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2632
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2633
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2634
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2635
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2636
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2637
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2638
     self cutMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2639
     ImageEditor openOnClass:self andSelector:#cutMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2640
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2641
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2642
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2643
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2644
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2645
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2646
        constantNamed:#'ToolbarIconLibrary class cutMenuItem22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2647
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2648
@@@@@@@@@@@@@@@@@@@ADP0@@@@L@@@CL3L3CB@@@B0@@@L3L3LL0@@@3@@@@@@@@@KB@@KB@@@QDQDQDL0ACL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2649
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@2H"H"H"CL0@@@@@@@@@@@@,CB@@@@@@@@@@@L0L0@@@@@@@@@H"0 KBH @@@@@@KL3@@L3LH@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2650
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A@P@A 0@A 0_=50_>5 _>; _?[@_?[@_?.@_?.@_?.@_?[@@@[@@C;8@G5<@F1,@D1$@D1$@F ,@C@X@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2651
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2652
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2653
delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2654
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2655
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2656
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2657
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2658
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2659
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2660
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2661
     self delete22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2662
     ImageEditor openOnClass:self andSelector:#delete22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2663
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2664
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2665
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2666
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2667
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2668
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2669
        constantNamed:#'ToolbarIconLibrary class delete22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2670
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2671
@@@@@@@@@@@@@@@@DQDQDQDQL@@@@@@SL3L3L3L @@@@@AL3L3L3L2@@@@@@D3L3L3L3H@@@H@@SL3L3L3L @@H@@AL3L3L3L2@@@@@@D3L3L3L3@@@@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2672
L3L3L0@ @@@ @AL3L3L3@@@@@@@@D3L3L3L@D@@@H@@SL3L3L0@QL3H @AL3L3L3@A@3LB@@D3L3L3L@DC@0H@@2H"H"H @PLC@ @@@@@@@@@A@0LB@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2673
@@@@DC@0H@@@@@@@@@@PLC@ @@@@@@@@@A@0LB@@@@@@@@@@DS@2H@@@@@@@@@HAL3HB@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?<@_?<@_?<P_?<P_?<X_?<X_?<H_?0H_?O<_?XL_?_<_?_<_?_<_?_<_?_<_?_<@@_<@@_<@@_<@@_<@@_<@@G0') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2674
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2675
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2676
displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2677
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2678
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2679
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2680
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2681
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2682
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2683
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2684
     self displayScreen22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2685
     ImageEditor openOnClass:self andSelector:#displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2686
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2687
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2688
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2689
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2690
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2691
    ^Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2692
        constantNamed:#'GenericToolbarIconLibrary class displayScreen22x22Icon'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2693
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2694
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&Y&Y&Y&Y&&P@@A&Y&Y&Y&Y&ZY@@@FXXUUV***)9$0@@Y!!H"H+.AF''&S@@A&,"H"H+DZ^YL@@F
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2695
Z2H"H",Q)9$0@@Y(H"J;-QF''&S@@A&E[.HUQDZ^YL@@FXUUUUUDQ*)$0@@Y!!UUUUTQF*&S@@A&(QF$*$QD^YL@@I&Y&Y&Y&Y&Y$0@@&Y&Y&Y&Y&Y&S@@@@L3
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2696
M)&YL3L3L@@@@@@F&Y$3@@@@@@@@ZY&Y&Y&S@@@@@@A)&Y&Y&YL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 64 80 96 80 112 112 64 64 64 48 64 80 64 96 96 128 128 128 48 80 80 80 96 96 112 112 112 64 80 80 80 96 112]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@G??0G??0G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8A??8@G<@@??@@??@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2697
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2698
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2699
down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2700
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2701
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2702
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2703
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2704
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2705
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2706
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2707
     self down22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2708
     ImageEditor openOnClass:self andSelector:#down22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2709
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2710
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2711
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2712
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2713
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2714
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2715
        constantNamed:#'ToolbarIconLibrary class down22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2716
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2717
UUT@AUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2718
UT@*$AUPUV***%UPUU***UUPUUZ*)UUPUUV*%UUPUUU*UUUPUUUYUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@A?>@A?>@@?<@@_8@@O0@@G @@C@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2719
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2720
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2721
downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2722
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2723
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2724
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2725
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2726
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2727
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2728
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2729
     self downRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2730
     ImageEditor openOnClass:self andSelector:#downRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2731
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2732
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2733
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2734
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2735
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2736
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2737
        constantNamed:#'ToolbarIconLibrary class downRight22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2738
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2739
UUUUUUUPP@EUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUT%UPR*UUT)UPR*UUT*UPR*P@@*%PR*****)P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2740
R******PR*****)PR*****%PQUUUU*UPUUUUT)UPUUUUT%UPUUUUTUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ L@_ N@_ O@_?? _??0_??8_??8_??0_?? @@O@@@N@@@L@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2741
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2742
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2743
editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2744
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2745
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2746
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2747
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2748
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2749
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2750
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2751
     self editor22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2752
     ImageEditor openOnClass:self andSelector:#editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2753
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2754
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2755
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2756
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2757
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2758
    ^Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2759
        constantNamed:#'GenericToolbarIconLibrary class editor22x22Icon'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2760
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2761
*******************************("H"H"H"H"J(@**"EUUU%UUUU@@^**HUUUVUUUU@@]:*(!!UUUYUUUT@A7**"FY&Y&Y&X@]7^**HUUUVUU@@]7\Z*(
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2762
!!UUUYU@@]7\R**"EUUU%T@A7]1J**HY&Y&XC]7\Q&**(!!UUU(3M7\Y&***"EUUU#L3L2QJ***HY&Z#L3L6)D***(!!&Y*L3L6Z$R***"EUUP3M&ZEQJ***HUU
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2763
RRY(UUUD***("*)J*****$R***"J)J******QJ***HUUUZUUUUUD***TQDQDQDQDQDR***************(b') ; colorMapFromArray:#[240 160 80 192 80 0 64 0 0 240 208 160 0 0 0 240 240 240 192 192 192 240 128 0 208 208 208 48 48 48 160 160 160]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G??LG??<G??<G??<G??<G??<G??<G??<G??8G??0G??0G??0G??0G??0G??0G??0G??0G??0O??0@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2764
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2765
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2766
font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2767
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2768
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2769
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2770
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2771
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2772
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2773
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2774
     self font22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2775
     ImageEditor openOnClass:self andSelector:#font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2776
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2777
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2778
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2779
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2780
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2781
    ^Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2782
        constantNamed:#'GenericToolbarIconLibrary class font22x22Icon'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2783
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2784
@@@@@@@@@@@@@@@@@@@@@!!X @@@@@@@!!X @@@6H@@@@@@DP6H@@@Y!!H@@@@@QDY"@@@BY"@@@@ADQBY"@@@FX @@@@@DQCX @@@6H@@@@@QEP6H@@@@ @@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2785
ADUDP @C@@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@ADT2@@@CH@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@QDT2@@@CH@@@@@QDQSH@@@@ @@@@@DQE
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2786
P @@@@@@@@@@@DQ@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 150 150 150 213 213 213 215 48 48 134 54 54 240 240 240]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G @OG0@O''<@O7>@O<?@A>? A?? A??@A<?@A<>@A<>@A<>@A=>@C?>@G<>@C<\@@8D@@H@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2787
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2788
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2789
forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2790
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2791
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2792
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2793
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2794
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2795
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2796
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2797
     self forward22x22_3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2798
     ImageEditor openOnClass:self andSelector:#forward22x22_3DIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2799
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2800
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2801
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2802
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2803
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2804
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2805
        constantNamed:#'ToolbarIconLibrary class forward22x22_3DIcon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2806
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2807
UUUUUUUPUUUUUUUPUUUUUUUPUUUQUUUPUUTJUUUPUUB*)UUPUP***%UPUQU*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5R*)UUPWUR*)UUPWWR*)UUPWUJ**UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2808
UUJ**UUPUT***%UPUT***%UPUR***)UPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C@@@O0@@?<@C??@C??@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@A?>@A?>@C??@A??@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2809
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2810
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2811
help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2812
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2813
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2814
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2815
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2816
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2817
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2818
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2819
     self help22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2820
     ImageEditor openOnClass:self andSelector:#help22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2821
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2822
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2823
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2824
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2825
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2826
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2827
        constantNamed:#'ToolbarIconLibrary class help22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2828
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2829
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2830
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2831
home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2832
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2833
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2834
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2835
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2836
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2837
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2838
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2839
     self home22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2840
     ImageEditor openOnClass:self andSelector:#home22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2841
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2842
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2843
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2844
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2845
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2846
    ^Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2847
        constantNamed:#'AbstractFileBrowser class home22x22Icon2'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2848
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2849
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQH2DQ@@@@@@@@DQH4L!!DP@@@@@@DQH4QCHQD@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2850
DQH4QDP2DQ@@@@DQH4QDQDL!!DP@@DQH4QDQDQCHQD@D"H4QBH"ADP0@A@RH#QBH"H QC@@D@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MD
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2851
IUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 128 128 128 192 192 192 100 128 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2852
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  2853
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2854
keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2855
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2856
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2857
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2858
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2859
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2860
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2861
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2862
     self keyboardMapping22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2863
     ImageEditor openOnClass:self andSelector:#keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2864
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2865
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2866
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2867
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2868
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2869
    ^Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2870
        constantNamed:#'GenericToolbarIconLibrary class keyboardMapping22x22Icon'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2871
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2872
@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@@@B%P@@@@@JUT@@@@@)TE@@H@BUTQP@@@ETTQ\@@@JTTU?@@@J$@W<@@@B)U_0@@@@*U?@@@@@J''<@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2873
@@B''0@@@@@@''@@@O@@@D@@@@@@@@@@@K@@@@@@@@@@@@@@@M@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 128 128 128 192 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@G@@@O @@_0@@?8@A?<@C?>@G??@G?? G??@C?>@A?<@@?8@@_0@@O @@G@@@B@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2874
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2875
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2876
languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2877
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2878
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2879
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2880
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2881
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2882
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2883
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2884
     self languages22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2885
     ImageEditor openOnClass:self andSelector:#languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2886
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2887
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2888
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2889
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2890
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2891
    ^Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2892
        constantNamed:#'GenericToolbarIconLibrary class languages22x22Icon'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2893
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2894
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B (JB (@@@@@@@@F <O@@@@@@@@@@@ZJB (GA0\GA0(JB VE @@@@@@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2895
F" (JA0\GA0\GB (E!!X@@@@@@@@@@A((JA0\GA0\GA0\JA(Z@@@@@@@@@@@ZJB \GA0\GA0\GB (J@@@@@@@@@@@F" (@@X\G@X@GA0(JB B@@@@@@@@@A((
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2896
J@@FB0,F@@(J@@(J@ @@@@@@@@@ZJB @@@XFB0X@@@TEAPTE@@@@@@@@F" (@ALFA!!4S@0LBAPTEB@@@@@@@@AT@@@@]H2L#GP8NDQLSG2@WE0$@@@@U@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2897
GQ<_G1<NC!!DSD1<_E1\I@@@@A@@@@AL]GRLSD!!HMF1,_G1<_BP@@@@@@@@@SFQ$''I"T%EALSHRP^G $@@@@@@@@@D1$"H"H%IQPSD2D$G"HI@@@@@@@@@AP"
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2898
H"X"H"H"H"H"H"H"A0@@@@@@@@@PFA LA2H"CBH"I"\"H 0@@@@@@@@@C@0L@@@GA00GA00LA0\@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2899
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 32 32 32 48 48 48 49 48 49 54 54 54 69 69 69 75 67 22 82 82 82 85 14 14 89 89 89 105 105 105 106 88 25 110 19 19 113 19 19 131 129 131 134 122 39 149 25 25 149 26 26 158 27 27 158 140 45 164 161 164 164 161 172 165 43 43 177 161 52 196 175 0 197 194 197 204 36 36 204 75 75 205 36 36 205 113 38 212 66 66 216 81 81 223 72 72 227 202 66 231 120 120 231 123 123 255 129 0 255 238 162 255 251 229 255 255 255]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@O \@??>@??>@??>@??>@???0???0???0???8???8???8???89??81??81??81??81??8A9?0A@@@A@@@A@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2900
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  2901
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2902
left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2903
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2904
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2905
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2906
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2907
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2908
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2909
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2910
     self left22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2911
     ImageEditor openOnClass:self andSelector:#left22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2912
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2913
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2914
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2915
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2916
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2917
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2918
        constantNamed:#'ToolbarIconLibrary class left22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2919
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2920
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUTUUUUUPURUUUUUPUJUUUUUPT*P@@@@PR******PJ******P*******PZ******PV*UUUUUPU*UUUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2921
UZUUUUUPUVUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@A @@C @@G @@O??<_??<???<???<_??<O??<G @@C @@A @@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2922
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2923
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2924
leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2925
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2926
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2927
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2928
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2929
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2930
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2931
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2932
     self leftDown22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2933
     ImageEditor openOnClass:self andSelector:#leftDown22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2934
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2935
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2936
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2937
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2938
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2939
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2940
        constantNamed:#'ToolbarIconLibrary class leftDown22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2941
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2942
UUUUUUUPU@@@@@@PUJ****)PUJ****)PUJ****)PUJ****)PUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUP@J*@UUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2943
***)UUUPZ**%UUUPV**UUUUPU*)UUUUPUZ%UUUUPUVUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G8@@G8@@G8@@G8@@G8@@G8@@G8@@??@@??@@_>@@O<@@G8@@C0@@A @@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2944
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2945
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2946
load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2947
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2948
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2949
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2950
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2951
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2952
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2953
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2954
     self load22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2955
     ImageEditor openOnClass:self andSelector:#load22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2956
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2957
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2958
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2959
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2960
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2961
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2962
        constantNamed:#'ToolbarIconLibrary class load22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2963
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2964
UUUUUUUPUUUUU?UPUUUUW*5PU???>*/PU:****)PUUUUUUZPP@@@@@EPS?????&PS?????%PS?????&PS?????%PT?????9PT?????9PT?????9PT?????9P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2965
T?????9PT?????9PUO????>PUO????>PUO????>PU:*****PUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2966
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2967
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2968
loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2969
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2970
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2971
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2972
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2973
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2974
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2975
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2976
     self loadFromMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2977
     ImageEditor openOnClass:self andSelector:#loadFromMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2978
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2979
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2980
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2981
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2982
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2983
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2984
        constantNamed:#'ToolbarIconLibrary class loadFromMethod22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2985
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2986
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2987
L3L3L3L3L2DQDCL:(3L3N*L3HRDPL3**(3N*(3L!!DQDCL:*#N*N*L3HQDPL3**(:L:(3L!!DQ@3N*N*(3*#L2DQDCL:(3(3N*L3HQDPL3*#L3L:(3L!!DQ@3N*
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2988
L3L3*#L2DQDPL3*#L3N*(3L!!DQ@3N*L3L3*#L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 255 0 0 255 255 0 0 255 0 0 0 255 0 255 255 255 0 255 127 127 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2989
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2990
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2991
loadImage22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2992
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2993
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2994
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2995
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2996
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2997
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2998
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2999
     self loadImage22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3000
     ImageEditor openOnClass:self andSelector:#loadImage22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3001
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3002
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3003
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3004
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3005
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3006
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3007
        constantNamed:#'ToolbarIconLibrary class loadImage22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3008
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3009
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3010
L3L3L3L3L2DQDCMDY''\3L3L3HRDPL4Q&]3L3L3L!!DQDCMU&X 3L3L3HQDPL5VY"CL3L3L!!DQ@3QFY7L3L3L2DQDCMDY''\3L3L3HQDPL5VY"CL3L3L!!DQ@3UY
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3011
&HL3L3L2DQDPL4Q&]3L3L3L!!DQ@3QFY7L3L3L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 255 0 0 255 255 0 0 255 0 0 0 255 0 255 255 255 0 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3012
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3013
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3014
make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3015
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3016
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3017
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3018
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3019
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3020
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3021
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3022
     self make22x22Icon1 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3023
     ImageEditor openOnClass:self andSelector:#make22x22Icon1
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3024
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3025
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3026
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3027
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3028
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3029
    ^Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3030
        constantNamed:#'GenericToolbarIconLibrary class make22x22Icon1'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3031
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3032
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FA @@@@@@@@@@@@@@@@@@A XF@@@FB (F@@@@A X@@@@@@@@@A (JB XFB (JB XFAP(GA @@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3033
@@XJB (JB (JB (JB (JA0X@@@@@@@@A@P(JB (JB (JB (JA0TE@@@@@@XFA XFB (JA0TA@P(JB TEA XF@@XGB (JB (JA0TA@@@AB (JB (JB XFB (J
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3034
B (JB \AAP\A@P(JB (JB (E@PXFA (JB (JAPTEAP\JB (EAPTE@PDA@PDFB (JB (JB (JB (EAPDA@PDA@PDFB (JB (JB (JB (JB \E@PDA@@DFB (J
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3035
B (JB (JB (JB (JB XA@@@BA@(JB HBB (JB (DA@PJB (F@@@@@@DGA0DA@PXJB (F@PDAA XF@P@@@@@A@PDA@PDFB (JA DA@PDA@PD@@@@@@PDA@PDA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3036
A \JA0XA@@DA@PDA@@@@@@@A@PD@@@DFA XA@@@@@PDA@@@@@@@@@@@@@@@A@PDA@P@@@@@@@@@@@@@@@@@@@@@@@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@A
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3037
@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 48 48 48 56 59 56 64 68 64 88 92 88 128 128 128 160 160 160 192 192 192 216 219 216 239 244 239 248 252 248]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@C@@C''#@G?? G?? G?? _??8???<???<???<???<???<_??8_??0O??0O??0O?70GO# @O @@O @@G@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3038
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3039
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3040
make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3041
    "This resource specification was automatically generated
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3042
     by the ImageEditor of ST/X."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3043
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3044
    "Do not manually edit this!! If it is corrupted,
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3045
     the ImageEditor may not be able to read the specification."
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3046
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3047
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3048
     self make22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3049
     ImageEditor openOnClass:self andSelector:#make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3050
     Icon flushCachedIcons
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3051
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3052
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3053
    <resource: #image>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3054
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3055
    ^Icon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3056
        constantNamed:#'GenericToolbarIconLibrary class make22x22Icon2'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3057
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3058
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3059
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0KC 0KC@@@@@@@@@@@@@@@@@@NC@,NB00LB00KC@0@@@@@@@@@@@@@C 8NC@0NC 0LC 0L@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3060
@@@@C@8NC@0NC 0@@@@@@@@@@@@@@@8NC 8NC@@@C@0NC 0L@@@@@@@@@@@MCP@NC 8@@@8NC@@NC @@@@@@@@@@CP@MC 8NC 8NC@8N@@8@@@@@@@@@@@@L
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3061
CP8NC 8NC 8NC 4@@@@@@@@@@@@@C@4@C @NC @M@@8M@@@@@@@@@@@@@@0@C@4@C 8@CP4@CP@@@@@@@@@@@@@@@@0M@@4M@@4M@@@@@@@@@@@@@@@@@@@L
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3062
CP@NC @MCP@@@@@@@@@@@@@@@@@@@@@@C 8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3063
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 48 48 48 56 59 56 64 68 64 88 92 88 128 128 128 160 160 160 192 192 192 216 219 216 239 244 239 248 252 248 88 88 88 184 252 248 0 128 128 0 192 192]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@O0@A?>@C??@C??@C??@G?? G?? G?? G?? C??@C??@C??@@?<@@?<@@G @@@@@@@@@@@@@') ; yourself); yourself]
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3064
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  3065
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3066
memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3067
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3068
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3069
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3070
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3071
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3072
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3073
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3074
     self memory22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3075
     ImageEditor openOnClass:self andSelector:#memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3076
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3077
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3078
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3079
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3080
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3081
    ^Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3082
        constantNamed:#'GenericToolbarIconLibrary class memory22x22Icon'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3083
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3084
@@@@@@@@@@@@@@@@@@@@@@?0@@@@@@@@@@@L;8;!!0@@@@@@@@@VL0W\,@@@@@@@L<T,W]43@@@@@@I,"8Z(R-10@@@@I<,,Z**Q78P@@@L24DZ****E0H@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3085
<,EM7Z**E00P@LTR9M7]7ZE0H50@=RE0C]7]E0BF?0<,E0@@C]Q0HREPBK-0@@@@Q0T?H\@KTA4@@@^-4_=\@@H A@@@^ JOG<@@@ID@P@^ GE3O@@@@AP@D
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3086
R EO:O0@@@@@T@4PT%3,@@@@@@@E4G_58%@@@@@@@@AZ\QGL0@@@@@@@@@@@1<@@@@@@@@@@@@@D@@@@@@@b') ; colorMapFromArray:#[0 0 0 80 80 80 160 160 160 240 240 240 64 64 64 144 144 144 224 224 224 48 48 48 128 128 128 208 208 208 32 32 32 112 112 112 192 192 192 16 16 16 96 96 96 176 176 176]; mask:((ImageMask new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@A @@G>@@G?@@_? @??0A??0C??8C??8O??<O??<_??8_??8_??0_?? O??@G??@C?<@A?8@@?8@@C @@A@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3087
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3088
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3089
new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3090
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3091
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3092
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3093
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3094
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3095
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3096
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3097
     self new22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3098
     ImageEditor openOnClass:self andSelector:#new22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3099
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3100
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3101
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3102
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3103
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3104
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3105
        constantNamed:#'ToolbarIconLibrary class new22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3106
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3107
@@@@@@@@AUUUUP@@A????2@@A????2 @A????0@@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@A?????8@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3108
A?????8@A?????8@A?????8@A?????8@A?????8@C*****(@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?>@_??@_?? _??0_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3109
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3110
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3111
newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3112
    "This resource specification was automatically generated
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3113
     by the ImageEditor of ST/X."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3114
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3115
    "Do not manually edit this!! If it is corrupted,
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3116
     the ImageEditor may not be able to read the specification."
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3117
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3118
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3119
     self newMenuItem22x22Icon inspect
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3120
     ImageEditor openOnClass:self andSelector:#newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3121
     Icon flushCachedIcons
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3122
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3123
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3124
    <resource: #image>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3125
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3126
    ^Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3127
        constantNamed:#'GenericToolbarIconLibrary class newMenuItem22x22Icon'
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3128
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3129
@@@@@@@@@@@@@@@@@@@ADP@@@@@@@@@CL3L3@@@@@@@@@@L3L3L@@@@@@@@@@@@@@@@H@@ @B@@QDQDQDQFAFAJ@@AL3L3L3L3 8N@@@D3L3L3L3L8"B@@@S
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3130
L3L3L3"H"H"H@AL3L3L3L3NH  @@D3L3L3L3NC 8@@@2H"H"H"JBJBJ@@@@@@@@@B@@H@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3131
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@_??<_??8_??8_??8_??<_??8_??8_??8_??<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3132
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  3133
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3134
paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3135
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3136
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3137
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3138
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3139
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3140
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3141
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3142
     self paste22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3143
     ImageEditor openOnClass:self andSelector:#paste22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3144
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3145
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3146
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3147
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3148
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3149
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3150
        constantNamed:#'ToolbarIconLibrary class paste22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3151
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3152
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3153
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3154
L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@@@@@@L"H"H"H"H@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<???<???<???<???<???<??8@??8@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3155
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3156
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3157
pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3158
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3159
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3160
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3161
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3162
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3163
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3164
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3165
     self pasteMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3166
     ImageEditor openOnClass:self andSelector:#pasteMenuItem22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3167
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3168
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3169
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3170
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3171
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3172
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3173
        constantNamed:#'ToolbarIconLibrary class pasteMenuItem22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3174
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3175
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3176
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@CH"H"H"H"@QDQD@@@@@@@@@@ADQDP@@@@@QDQDQDQDQ@@@@@A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3177
DQDQDQDQD@@@@@DQDQDQDQDP@@@@@QDQDQDQDQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<@??<@??<@??<@??<@??<@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3178
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3179
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3180
printer22x22Icon
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3181
    ^ self printer22x22Icon1
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3182
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3183
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3184
printer22x22Icon1
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3185
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3186
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3187
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3188
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3189
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3190
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3191
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3192
     self printer22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3193
     ImageEditor openOnClass:self andSelector:#printer22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3194
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3195
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3196
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3197
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3198
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3199
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3200
        constantNamed:#'ToolbarIconLibrary class printer22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3201
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3202
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@@@@@@@@@@D@@@@@@@@@@@@@@@@A@@@@@@@@@@@A@@@A@PDA@@@A@PD@@P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3203
@@@A@@@@@@@@@@@@@@@@@P@@@@@@@@@@@P@A@PD@@PD@@PD@@PDA@P@@@@@@@P@@@@@@@@@@@@@@@@DD@PPA@@@@@PDA@PDA@PDA@PDA@PDD@PPA@P@@@PPD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3204
A@PDA@PDA@PDA@PD@PPAAPD@@@DA@PDA@PDA@PDA@PDA@PDAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTE@P@@@PTEAPTEAPTEAPTB@ HEAPDEAPD@@@DEAPTE
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3205
APTEAPTE@ HBAPTAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTA@@@@@PTEAPTEAPTEAPTEAPTEAPDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3206
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3207
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 255 0 129 129 129 194 194 194 105 133 190]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3208
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3209
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3210
printer22x22Icon2
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3211
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3212
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3213
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3214
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3215
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3216
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3217
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3218
     self defaultIcon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3219
     ImageEditor openOnClass:self andSelector:#defaultIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3220
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3221
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3222
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3223
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3224
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3225
    ^Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3226
        constantNamed:#'AbstractSettingsApplication::PrinterSettingsAppl class defaultIcon'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3227
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3228
QDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ@@@@@@@@@ADQDQ@QDQDQDQDADQDQDAD@@AD@@PDQDQD
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3229
ADQDQDQDPDQDQDPD@@P@P@P@@DQDPDQDQDQDQ@DAADP@@@@@@@@@DA@DPADQDQDQDQDA@0Q@@@@@@@@@@@@3AD@3L3L3L2H#LCADPCL3L3L3H"L0ADQ@@@@@
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3230
@@@@@@ADQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[0 0 0 194 194 194 255 255 0 105 133 190 255 255 255]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3231
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  3232
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3233
reload22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3234
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3235
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3236
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3237
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3238
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3239
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3240
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3241
     self reload22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3242
     ImageEditor openOnClass:self andSelector:#reload22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3243
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3244
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3245
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3246
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3247
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3248
        constantNamed:#'ToolbarIconLibrary class reload22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3249
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3250
@@@@@@@@@@@UT@@@@@EU@D@@@@UT@@@H@AUP@@@@@EU@@@@@@EU@@@@E@EU@@@@@@EU@@@@@AUUT@@@@@UUP@@@@@EU@@@@@@AT@@@@@@@P@@@@H@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3251
@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@G@@@@@@@J@@@@@@@I@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 129 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@G<C@_?C@??#A?C3C>@;G<@KG<@CG<@C??$C_?NCO>_CG<?#C9?3A3?;@''??@@?#P@?C\A?COC>CG?<CC?8C@? C') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3252
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3253
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3254
removeTab22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3255
    "This resource specification was automatically generated
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3256
     by the ImageEditor of ST/X."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3257
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3258
    "Do not manually edit this!! If it is corrupted,
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3259
     the ImageEditor may not be able to read the specification."
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3260
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3261
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3262
     self close22x22Icon inspect
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3263
     ImageEditor openOnClass:self andSelector:#close22x22Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3264
     Icon flushCachedIcons
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3265
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3266
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3267
    <resource: #image>
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3268
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3269
    ^Icon
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3270
        constantNamed:#'ToolbarIconLibrary class close22x22Icon'
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3271
        ifAbsentPut:[(Depth8Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3272
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3273
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3274
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3275
@@@B@ H@@ HB@@@@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@A@@@@@@@B@ H@@@@@@@HB@ @@@@@@@@@@@@@B@ H@@@@@@@@@@ HB@@@@@@@@@@@@@ H@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3276
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3277
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3278
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  3279
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3280
right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3281
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3282
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3283
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3284
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3285
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3286
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3287
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3288
     self right22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3289
     ImageEditor openOnClass:self andSelector:#right22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3290
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3291
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3292
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3293
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3294
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3295
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3296
        constantNamed:#'ToolbarIconLibrary class right22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3297
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3298
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUIUPUUUUUJUPUUUUUJ%P@@@@@J)PJ******PJ****** J******PJ*****)PEUUUUZ%PUUUUUJUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3299
UUUUUIUPUUUUUEUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@F@@@G@@@G ???0???8???<???<???8???0@@G @@G@@@F@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3300
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3301
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3302
save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3303
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3304
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3305
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3306
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3307
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3308
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3309
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3310
     self save22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3311
     ImageEditor openOnClass:self andSelector:#save22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3312
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3313
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3314
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3315
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3316
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3317
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3318
        constantNamed:#'ToolbarIconLibrary class save22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3319
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3320
AL3L3L@PM3L3L0?PML3L3L=PM3L3L0=PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM@@@@@?PO??????PO??????PO??????P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3321
O=UUUU?PO=???[?PO=5O?Z?PO=6O?Z?PO=6O?Z?PO=0O?Z?P5U***U5P') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3322
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3323
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3324
saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3325
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3326
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3327
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3328
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3329
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3330
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3331
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3332
     self saveAsMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3333
     ImageEditor openOnClass:self andSelector:#saveAsMethod22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3334
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3335
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3336
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3337
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3338
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3339
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3340
        constantNamed:#'ImageEditor class saveAsMethod22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3341
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3342
@A@0LC@0LC@0@@DCD0LC@0LC@0@3LPLPLD@0LCP0LCLQ@1LCQ@LCQ@L@L1DCDCADPCQDLC@3LPLS@4QDQDPC@CL1@1@0QCQ@QC@0L3DCD0MD@0MD@0@3LPLP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3343
LDP0LDP0LCL1@1LCQ@LCQ@L@L3DCDC@0LC@0LC@3LPLP@@@@@@@@@CL1@3L3L3L3L3L3L3DCL3L3L3L3L3L3LPL3L3L3L3L3L3L1@3L1DQDQDQDQL3DCL3D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3344
L3L3LRL3LPL3LSDPL3L1H#L1@3L1LR@3L3D"L3DCL3D1HCL3LRH3LPL3LS@@L3L1H#L1LQDQH"H"H"DQLQDb') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 127 127 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3345
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3346
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3347
start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3348
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3349
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3350
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3351
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3352
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3353
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3354
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3355
     self start22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3356
     ImageEditor openOnClass:self andSelector:#start22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3357
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3358
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3359
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3360
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3361
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3362
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3363
        constantNamed:#'ToolbarIconLibrary class start22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3364
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3365
@@@@@@@@@@@@@@@@@N8@@@@@@@@@@@@N<^@@@@@@@@@@@@;.;.;.;.@@@@@@C/G @@@@8^@@@@@N<^@@@@@A@@@@@@;18@@@@@D@@@@@C.;.;.; @P@@@@@N
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3366
<^@@@@@@@@@@@@;18@@@C!!G.@@@@C/G @@@@G>@@@@@N;.;.; @_8@@@@@;18@@@@A? @@@@C/G @@@@G>@@@@@N<^@@@@@_8@@@@@;.;.;.@A? @@@@C/G 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3367
@@@@G>@@@@@N<^@@@@@_8@@@@@;18@@@@@@@@@@@C.; @@@@DQ@@@@C ; 8@@@A&X@@@C 8@8N@@@"H"@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3368
@@@AC@DAG DAG?<@G N@G N@G N@G?.@G N@G _@G _@G?_@G _@G _@G _@G?_@G ? G!!?0G!!?0G!!.PKQNPT(_@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3369
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3370
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3371
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3372
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3373
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3374
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3375
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3376
stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3377
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3378
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3379
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3380
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3381
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3382
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3383
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3384
     self stop22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3385
     ImageEditor openOnClass:self andSelector:#stop22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3386
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3387
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3388
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3389
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3390
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3391
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3392
        constantNamed:#'ToolbarIconLibrary class stop22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3393
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3394
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3395
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3396
up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3397
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3398
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3399
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3400
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3401
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3402
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3403
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3404
     self up22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3405
     ImageEditor openOnClass:self andSelector:#up22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3406
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3407
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3408
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3409
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3410
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3411
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3412
        constantNamed:#'ToolbarIconLibrary class up22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3413
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3414
UUURUUUPUUUJ%UUPUUT*)UUPUUR**UUPUUJ**%UPUT***)UPUVU*%UUPUUT*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5T*%UUPWUT*%UUPWWT*%UUPWUT*%UUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3415
UUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUTUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@C@@@G @@O0@@_8@@?<@A?>@A?>@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3416
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3417
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3418
upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3419
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3420
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3421
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3422
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3423
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3424
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3425
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3426
     self upRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3427
     ImageEditor openOnClass:self andSelector:#upRight22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3428
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3429
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3430
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3431
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3432
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3433
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3434
        constantNamed:#'ToolbarIconLibrary class upRight22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3435
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3436
UUUUT%UPUUUUT)UPUUUUT*UPP@@@@*%PR*****)PR******PR*****)PR*****%PR*UUU*UPR*UUT)UPR*UUT%UPR*UUTUUPR*UUUUUPR*UUUUUPR*UUUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3437
R*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPYU%UUUUPUUUUUUUP') ; colorMapFromArray:#[255 255 255 0 0 0 0 127 0 255 0 0]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@L@@@N@@@O@_?? _??0_??8_??8_??0_?? _ O@_ N@_ L@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@@@@@') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3438
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3439
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3440
!GenericToolbarIconLibrary class methodsFor:'image specs-24x24'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3441
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3442
baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3443
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3444
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3445
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3446
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3447
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3448
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3449
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3450
     self baseImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3451
     ImageEditor openOnClass:self andSelector:#baseImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3452
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3453
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3454
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3455
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3456
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3457
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3458
        constantNamed:#'GenericToolbarIconLibrary class baseImage24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3459
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3460
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3461
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3462
A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XF@@@@BY&H!!DQ&Y&XF@@@@BY&H!!DQ&Y&XF@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3463
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3464
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3465
    "Modified: / 06-02-2007 / 19:41:08 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3466
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3467
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3468
baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3469
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3470
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3471
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3472
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3473
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3474
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3475
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3476
     self baseMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3477
     ImageEditor openOnClass:self andSelector:#baseMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3478
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3479
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3480
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3481
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3482
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3483
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3484
        constantNamed:#'GenericToolbarIconLibrary class baseMenu24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3485
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3486
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3487
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3488
@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R]2I7H'']2TE@@@@@RH"H"H"H"TE@@@@AUUUUUUUUUTE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3489
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3490
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3491
    "Modified: / 06-02-2007 / 19:41:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3492
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3493
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3494
baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3495
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3496
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3497
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3498
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3499
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3500
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3501
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3502
     self baseWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3503
     ImageEditor openOnClass:self andSelector:#baseWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3504
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3505
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3506
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3507
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3508
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3509
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3510
        constantNamed:#'GenericToolbarIconLibrary class baseWindowSpec24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3511
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3512
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3513
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3514
AUUUT T"H%H@@@@@ARH"T T"H%H@@@@@ARH"T T"H%H@@@@@AUUUT UUUUH@@@@@@"H"H H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3515
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3516
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3517
    "Modified: / 06-02-2007 / 19:41:03 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3518
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3519
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3520
bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3521
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3522
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3523
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3524
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3525
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3526
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3527
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3528
     self bugReporter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3529
     ImageEditor openOnClass:self andSelector:#bugReporter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3530
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3531
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3532
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3533
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3534
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3535
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3536
        constantNamed:#'GenericToolbarIconLibrary class bugReporter24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3537
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3538
@@@@@@@@@@@@@@@@@@@@@QDQDQDQDP@@@@@@@@@@@@@@@P@@@@@ADQDQDQDQ@P@@@@@@@@@@@@@A@P@@@@QDQDQDQDPA@P@@@@@@@@@@@@PA@P@@ADQDQDP@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3539
Q@PA@@@@AADQQ@QD@@P@@@@@ADQDQD@DP@@@@@@@ADEAPTPD@BH"H @@ADPTD@P@H"L3L2@@ADEA@"@"H3L3L3H@@@@BH3LBL3L3L3L @@@BH3LBL3L3L3L 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3540
@@@@H3L@@@@@@@@@@@@BH3LBH3L3L3L @@@@H#HBH#L3L3H @@@@@@@@H"H"H"@@@@@@@@@@@@H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3541
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 170 170 170 128 0 0 255 0 0 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@??8@??8C??8C??8O??8O??8???8???8???<???0???8???<???>???>???>A??>_??>O??>@[?<@B?8@F_0@H1,@C@0@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3542
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3543
    "Modified: / 06-02-2007 / 19:41:01 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3544
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3545
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3546
changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3547
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3548
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3549
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3550
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3551
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3552
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3553
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3554
     self changesBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3555
     ImageEditor openOnClass:self andSelector:#changesBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3556
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3557
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3558
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3559
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3560
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3561
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3562
        constantNamed:#'GenericToolbarIconLibrary class changesBrowser24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3563
        ifAbsentPut:[(Depth2Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3564
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C????@@@@@@@C@@@????3@@@@@@@3@@EUUUT3@@@@@@D3@AUUUUD3@A?5UUD0@AUUUUD0@A]7UUD@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3565
AW]7UD@@A]7]U@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<A??<A??<G??<G??<_??<_??<_??<_??0_??0_??@_??@_?<@_?<@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3566
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3567
    "Modified: / 06-02-2007 / 19:40:59 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3568
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3569
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3570
dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3571
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3572
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3573
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3574
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3575
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3577
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3578
     self dos24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3579
     ImageEditor openOnClass:self andSelector:#dos24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3580
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3581
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3582
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3583
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3584
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3585
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3586
        constantNamed:#'GenericToolbarIconLibrary class dos24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3587
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3588
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH"H"H"H"H1@@@@LRP"H"H"H"H1@@@@LRIBH"H"H"H1@@@@LRH$H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3589
H"H"H1@@@@LRH"P"H"H"H1@@@@LRH$H"H"H"H1@@@@LRIBH"H"H"H1@@@@LRP"H"H"H"H1@@@@LRH"H"QDIDP1@@@@LSL3L3L3L3L1@@@@@QDQDQDQDQDQ@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3590
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3591
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@D@@@D@@@\1 @%J@@%I@@%H @\3@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3592
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3593
    "Modified: / 06-02-2007 / 19:40:56 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3594
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3595
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3596
fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3597
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3598
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3599
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3600
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3601
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3602
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3603
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3604
     self fileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3605
     ImageEditor openOnClass:self andSelector:#fileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3606
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3607
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3608
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3609
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3610
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3611
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3612
        constantNamed:#'GenericToolbarIconLibrary class fileBrowser24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3613
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3614
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3@Y&Y&Y&Y&@@@@@@3@X@@@@@@F@@@@@@3@XN;.;.8F@@@@@@3@XN; @@@@@@@@@@3@XN; 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3615
=/[6=/@@@@3@X@; [6=/[6@@@@3@XAC =/@@A/@@@@3@X@D@[6A/C6@@@@3@X@@P=/[6=/@@@@3@X@@@[6=/[6@@@@3@XO@@=/[6=/@@@@3@XF<@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3616
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3617
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O?? O?? O?? O?? O??<O??<O??<O??<O??<O??<O??<O??<O??<O?? O?? O?? O?? O?? G?? C?? @@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3618
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3619
    "Modified: / 06-02-2007 / 19:40:54 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3620
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3621
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3622
fileIn24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3623
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3624
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3625
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3626
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3627
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3628
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3629
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3630
     self fileIn24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3631
     ImageEditor openOnClass:self andSelector:#fileIn24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3632
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3633
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3634
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3635
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3636
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3637
        constantNamed:#'GenericToolbarIconLibrary class fileIn24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3638
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3639
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&XF@@@@@@@@A#L2Y&XF@@A&Y X@A#L2Y&XF@AA&Y D@A"H"Y&XF@AA&Y DCA&I&Y&XF@AA&Y DC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3640
M&I%URXF@A@@@3L3L6I%URXF@ADQD3L3L3H"H"XF@AD@@3L3L6I&Y&XF@AD@Y DCM&I$QBXF@AD@Y DCA&I$QBXF@@@@@@@@A&H"H"XF@@@@X@@@A&Y&Y&XF
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3641
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3642
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?>@@?>_>?>_>?>_>?>_??>_??>_??>_??>_??>_??>_??>O>?>@ ?>@@?>@@@@EPD@HP@@ISD0IT%H]W%HITEHISEH') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3643
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3644
    "Modified: / 06-02-2007 / 19:40:51 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3645
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3646
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3647
garbageCollect24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3648
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3649
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3651
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3652
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3653
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3654
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3655
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3656
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3657
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3658
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3659
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3660
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3661
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3662
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3663
        constantNamed:#'GenericToolbarIconLibrary class garbageCollect24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3664
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3665
@@@@@@@@@@@@@ADQ@@@@@@@@@@@@@ADQDQ@@@K.;,QF1DQDQDQ@@B;.;.1.0@@DQDQ@@.;@@.;.1@@@ADQ@@.0@@F;.1@2@ADQ@@.0@@.;.1DCHADQ@K.;@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3666
DQDQDPL DQB0.0,@DQDP@@@0DQ,K@KB0DQ@BH"H@DQ@@@@@@DQ@P@@@0DP@@@@8N@@@QDSL0D@@@C.;.8@@PL3@ @@@@@NC @@@PLC@ @@@@;.;.@@@PLC@ 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3667
@@@@C 8@@@@PLC@ @@B (@@AD@@PLC@ @J*** CA0@@PLC@ @@(J@L3L3@@PLC@ B***(@0L@Q@SLCL @JB CL3L0Q@CH"H@@ADQDLCADQDP@@@Q@ADQD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3668
@QD@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@O"@@_6@@8>8@0^<@0>^A8@OB4A?EJG?@@G?@EG?@_''?@JG?@?G?@TG?B G?O2''?EO7?_%G?J_''?@JA<@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3669
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3670
    "Modified: / 06-02-2007 / 19:40:47 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3671
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3672
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3673
imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3674
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3675
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3676
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3677
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3678
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3679
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3680
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3681
     self imageEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3682
     ImageEditor openOnClass:self andSelector:#imageEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3683
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3684
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3685
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3686
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3687
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3688
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3689
        constantNamed:#'GenericToolbarIconLibrary class imageEditor24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3690
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3691
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@JB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFXJB A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3692
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@(@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3693
A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFXI& BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFXI* @@@@@@@@@@@@@I* @@@@@@@@@@@@@I& @@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3694
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3695
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3696
    "Modified: / 06-02-2007 / 19:40:45 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3697
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3698
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3699
leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3700
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3701
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3702
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3703
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3704
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3705
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3706
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3707
     self leftArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3708
     ImageEditor openOnClass:self andSelector:#leftArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3709
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3710
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3711
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3712
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3713
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3714
        constantNamed:#'GenericToolbarIconLibrary class leftArrow24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3715
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3716
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3717
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3718
@0LA@PDK@@@@@@@@@@@@@@DL@@@MC <P@@@@DPLR@@@@@@@@@@@@@PX@@ALTEP8PDQDVE0\R@@@@@@@@@@@AAADQD1PUEQTNF@$SFP(R@@@@@@@@@@@KB!!P[
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3719
GAPUEQT]GQ4]GP(R@@@@@@@@@@@@D (TG!!0TEA,_G1<[H@(R@@@@@@@@@@@@@AHJC!!< GQ4JB (JB"DK@@@@@@@@@@@@@@@RB 8^B DRD!!HRD!!HK@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3720
@@@@@@@@D (]H H@@@@@@@@@@@@@@@@@@@@@@@@@@AHJHPD@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3721
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3722
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 32 96 32 64 96 96 128 160 64 96 128 128 160 192 32 96 128 128 160 160 160 192 224 0 96 128 0 0 0 128 128 160 64 192 192 32 160 192 64 128 192 128 192 224 192 224 224 0 0 32 96 192 224 0 160 192 0 128 192 160 224 224 96 160 192 128 192 192 64 160 192 192 192 192 32 192 192 0 192 224 0 128 160 32 192 224 64 192 224 0 192 192 0 64 96 0 64 128]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@B@@@F@@@N@@@^@@@>@@A??@C??@G??@O??@O??@G??@C??@A??@@>@@@^@@@N@@@F@@@B@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3723
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3724
    "Modified: / 06-02-2007 / 19:40:42 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3725
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3726
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3727
menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3728
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3729
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3730
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3731
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3732
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3733
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3734
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3735
     self menuEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3736
     ImageEditor openOnClass:self andSelector:#menuEditor24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3737
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3738
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3739
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3740
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3741
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3742
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3743
        constantNamed:#'GenericToolbarIconLibrary class menuEditor24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3744
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3745
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@QDQDQDQDQ@@@GA0@RH"H"H"H"TEAWA0@R\"H"H''H"TEAP@@@R]7\"]7\"TEAP@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3746
H"TEAP@@@P@@@@@@@@TEAP@@@QDQDQDQDQTEAP@@@RH"H"H"H"TEAP@@@R\"I2H"H"TEAP@@@R]2I7\''\"TE@C]0@RH"H"H"H"TE@@@@@P@@@@@@@@TEAP\@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3747
@QDQDQDQDQTEAP\@@RH"H"H"H"TEAP\@@R]2I7H'']2TE@CM0@RH"H"H"H"TE@C]0AUUUUUUUUUTE@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3748
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3749
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3750
    "Modified: / 06-02-2007 / 19:40:40 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3751
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3752
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3753
newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3754
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3755
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3756
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3757
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3758
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3759
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3760
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3761
     self newDataSet24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3762
     ImageEditor openOnClass:self andSelector:#newDataSet24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3763
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3764
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3765
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3766
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3767
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3768
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3769
        constantNamed:#'GenericToolbarIconLibrary class newDataSet24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3770
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3771
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDPDQDADQ@@@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3772
H"TE@@@@@P@@@@@@@@TE@@@@@QDPDQDADQTE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@RH D"HAH"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3773
@QDPDQDADQLE@0@C@RH D"HAH"T5@0@0@RH D"HAH"TC@0L@@RH D"HAH"TEL3@@@RH D"HAH"L3L3L3AUUPUUTEUUT@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3774
@@@0@0@0@@@@@@@@@@L@@0@C') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8???T@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3775
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3776
    "Modified: / 06-02-2007 / 19:40:38 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3777
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3778
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3779
newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3780
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3781
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3782
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3783
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3784
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3785
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3786
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3787
     self newFileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3788
     ImageEditor openOnClass:self andSelector:#newFileBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3789
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3790
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3791
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3792
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3793
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3794
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3795
        constantNamed:#'GenericToolbarIconLibrary class newFileBrowser24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3796
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3797
@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@@@@@@@@@@@ADAD@@@3@Y&Y&Y&@QDADP@@3@X@@@@@@P@@@P@@3@XN;.;.@QDADP@@3@XN; @@@ADAD@@@3@XN; 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3798
=/[0DQ@@@@3@X@; [6=/@@@@@@3@XAC =/@@A/@@@@3@X@D@[6A/C6@@@@3@X@@P=/[6=/@@@@3@X@@@[6=/[6@@@@3@XO@@=/[6=/@@@@3@XF<@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3799
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3800
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@8@@A<O??>O???O???O???O??>O??<O??<O??<O??<O??<O??<O??<O??<O?? O?? O?? O?? O?? G?? C?? @@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3801
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3802
    "Modified: / 06-02-2007 / 19:40:36 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3803
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3804
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3805
newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3806
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3807
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3808
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3809
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3810
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3811
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3812
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3813
     self newImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3814
     ImageEditor openOnClass:self andSelector:#newImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3815
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3816
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3817
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3818
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3819
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3820
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3821
        constantNamed:#'GenericToolbarIconLibrary class newImage24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3822
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3823
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3824
Y&XFX@@@BY&H!!DQ&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@BY&H!!DQ&Y&XFX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3825
A7\3LQE&Y&$FZP@IA7\3LQE&Y&ZVZPBPA7\3LQE&Y&XIBP$@BY&H!!DQ&Y&XF&Y@@BY&H!!DQ&Y&&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3826
@@BPBPBP@@@@@@@@@@$@BP@I') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3827
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3828
    "Modified: / 06-02-2007 / 19:40:31 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3829
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3830
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3831
newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3832
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3833
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3834
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3835
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3836
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3837
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3838
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3839
     self newMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3840
     ImageEditor openOnClass:self andSelector:#newMenu24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3841
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3842
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3843
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3844
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3845
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3846
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3847
        constantNamed:#'GenericToolbarIconLibrary class newMenu24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3848
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3849
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQ@@@@@@@RH"H"H"H"TE@@@@@R\"H"H''H"TE@@@@@R]7\"]7\"TE@@@@@RH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3850
H"TE@@@@@P@@@@@@@@TE@@@@@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R\"I2H"H"TE@@@@@R]2I7\''\"TE@@@@@RH"H"H"H"TE@@@@@P@@@@@@@@TE@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3851
@QDQDQDQDQLE@0@C@RH"H"H"H"T5@0@0@R]2I7H'']2TC@0L@@RH"H"H"H"TEL3@@AUUUUUUUUUL3L3L3@@@@@@@@@@@@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3852
@@@0@0@0@@@@@@@@@@L@@0@C') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3853
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3854
    "Modified: / 06-02-2007 / 19:40:29 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3855
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3856
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3857
newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3858
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3859
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3860
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3861
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3862
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3863
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3864
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3865
     self newSystemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3866
     ImageEditor openOnClass:self andSelector:#newSystemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3867
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3868
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3870
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3871
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3872
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3873
        constantNamed:#'GenericToolbarIconLibrary class newSystemBrowser24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3874
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3875
@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&@@@@@@@@@@@@@FXFX@@FY&Y&Y#@@A&XFY @FQDQDQB@@A @@A @FQDQDQB@@A&XFY @CH"H"H"@@@FXFX@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3876
@@@@Y&@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"H 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3877
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3878
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 255 0 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@8@@A<_?#>_?''?_?''?_?''?_?#>_?!!<@ @8@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3879
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3880
    "Modified: / 06-02-2007 / 19:40:26 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3881
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3882
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3883
newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3884
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3885
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3886
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3887
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3888
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3889
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3890
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3891
     self newWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3892
     ImageEditor openOnClass:self andSelector:#newWindowSpec24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3893
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3894
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3895
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3896
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3897
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3898
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3899
        constantNamed:#'GenericToolbarIconLibrary class newWindowSpec24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3900
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3901
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3902
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@@@@AUUUT T"H%H@@@@@AUUUT T"H%H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3903
AUUUT T"H%X@A @FARH"T T"H%I A A ARH"T T"H%HFA X@AUUUT UUUUH@Y&@@@"H"H H"H"Y&Y&Y&@@@@@@@@@@@@Y&@@@@@@@@@@@@@FA X@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3904
@@A A A @@@@@@@@@@X@A @F') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3905
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3906
    "Modified: / 06-02-2007 / 19:40:22 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3907
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3908
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3909
new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3910
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3911
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3912
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3913
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3914
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3915
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3916
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3917
     self new_24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3918
     ImageEditor openOnClass:self andSelector:#new_24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3919
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3920
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3921
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3922
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3923
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3924
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3925
        constantNamed:#'GenericToolbarIconLibrary class new_24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3926
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3927
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3928
@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3929
@@@@@@@@@@$FZP@I@@@@@@@@@@BVZPBP@@@@@@@@@@@IBP$@@@@@@@@@@@@F&Y@@@@@@@@@@@@&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3930
@@BPBPBP@@@@@@@@@@$@BP@I') ; colorMapFromArray:#[0 0 0 0 0 255 0 127 127 0 255 0 0 255 255 127 127 127 170 170 170 255 0 0 255 0 255 255 255 0]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@BR@@AT@@@8@@G?@@@8@@AT@@BR@@DQ') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3931
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3932
    "Modified: / 06-02-2007 / 19:40:20 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3933
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3934
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3935
redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3936
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3937
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3938
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3939
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3940
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3941
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3942
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3943
     self redoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3944
     ImageEditor openOnClass:self andSelector:#redoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3945
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3946
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3947
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3948
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3949
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3950
    ^Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3951
        constantNamed:#'GenericToolbarIconLibrary class redoXP24x24Icon'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3952
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3953
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A,WEEKUE5-@@@@@@@@@@@@@@@@@@@@@E0>D!!</HQ%@VF4@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3954
@E!!BQ&L@@@@@W@HXHBT(KS@2F$U''@@@@@C-RT40@@@A(O1 [FA@OEB\.LR8FV0@@@C)MS4(@@@APDQ,X@%]"VTPPKB</CE,@@C%GRT(@@@@?F1,GV0@@@@AV
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3955
@2H.LP9[@@,8PT(@@F EF1-C@@@@@@@@X#8]J2<MV0(6M4(@@FDKF1-K@@@@@@@@@FT>GB -CP 4MT(@@FPGF1-H@@@@@@@@@@A&O!!,%J"\1L4(@@@@AF1,E
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3956
Z @@@@A)X&I!!VP@WIBX,K4(@@@ANE!!,OU@@@@FT?B0,KB0,UGBD%JT(@@@A[A1,[@V(@@EXQF1,[F1,[F1,^H4(@@@@@P1X[D4,@@E<DD1LSD1LSD1LSD4(@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3957
@@@@W T[F0%U@@@@@@@@@@@@@@@@@@@@@@@@@D(QF1,BV @@@@@@@@@@@@@@@@@@@@@@@F,=E!!,X@%(@@@@@@@@@@@@@@@@@@@@@@@A @!! [F@IZ@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3958
@@@@@@@@@@@@@@@@V HXF05P@@@@@@@@@@@@@@@@@@@@@@@@@E(BDT!!+@@@@@@@@@@@@@@@@@@@@@@@@@@AZOF,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3959
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@A?@@C?0^G?8^O?<^O?>^O!!?^_@?>_@_>_@O>O!!?>O#?>O3?>G3?>G8@@C<@@C>@@A?@@@?@@@_@@@N@@@@@@@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3960
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  3961
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3962
rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3963
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3964
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3965
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3966
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3967
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3968
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3969
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3970
     self rightArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3971
     ImageEditor openOnClass:self andSelector:#rightArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3972
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3973
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3974
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3975
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3976
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3977
        constantNamed:#'GenericToolbarIconLibrary class rightArrow24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3978
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3979
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3980
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3981
@@XB@@@@@@@@@@@@@@@AA0(@@@@@B ,LB @D@ @@@@@@@@@@@@@MB \NB ,ODADRD0(@A H@@@@@@@@@@@@M@@TTEQLQE!!\WD 0K@@PB@@@@@@@@@@@MB <W
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3982
E1\WD!!\WD!!LYDQ(B@@@@@@@@@@@AB <[D10[GQ8QG!!$QF H@@@@@@@@@@@@AA!!(ZF!!(ZE1H^FQDZ@ @@@@@@@@@@@@@A@ HB@ HB@1DYDQ(B@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3983
@@@@@@@@@@@@@QXQF H@@@@@@@@@@@@@@@@@@@@@@@@@@0PZ@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q(B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3984
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3985
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 0 0 0 64 96 32 128 160 128 160 192 32 96 128 128 192 192 0 64 64 160 192 192 192 224 224 160 192 224 96 192 224 32 64 96 160 224 224 128 192 224 96 160 192 0 160 192 0 128 192 64 192 192 64 160 192 96 192 192 32 160 192 0 128 160 192 192 192 64 224 224 0 96 128 32 192 192 64 192 224 0 192 224 0 192 192]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@D@@@F@@@G@@@G @@G0@O?8@O?<@O?>@O??@O??@O?>@O?<@O?8@@G0@@G @@G@@@F@@@D@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3986
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  3987
    "Modified: / 06-02-2007 / 19:40:15 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3988
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3989
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3990
saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3991
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3992
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3993
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3994
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3995
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3996
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3997
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3998
     self saveImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3999
     ImageEditor openOnClass:self andSelector:#saveImage24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4000
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4001
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4002
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4003
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4004
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4005
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4006
        constantNamed:#'GenericToolbarIconLibrary class saveImage24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4007
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4008
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DP@@@@@@@@@@@@@@DPL"H"H"H"H"H3D@DPL$QDQDQDQDH1D@DPL$EAQAQAEDH1D@DPL$EAQAPTQDH3D@DPL$EADQ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4009
PTQDH3D@DPL$EAQAPTDTH3D@DPL$EAQAPTPTH3D@DPL$EAQAPTPTH3D@DPL$EAQAQADTH3D@DPL$QDQDQDQDH3D@DPL"H"H"H"H"H3D@DPL3L3L3L3L3L3D@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4010
DPL3DQDQDQDQL3D@DPL3D3L3L3D#L3D@DPL3DQ@3L3D"L3D@DPL3D"@3L3D"L3D@DPL3D@@3L3D"L3D@DSDQD"H"H"DQLQD@DP@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4011
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170 200 200 200]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??8@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4012
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4013
    "Modified: / 06-02-2007 / 19:40:12 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4014
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4015
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4016
shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4017
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4018
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4019
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4020
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4021
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4022
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4023
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4024
     self shell24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4025
     ImageEditor openOnClass:self andSelector:#shell24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4026
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4027
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4028
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4029
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4030
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4031
        constantNamed:#'GenericToolbarIconLibrary class shell24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4032
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4033
@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3@@@@LQDQDQDQDQDQ@@@@LRH"H"H"H"H1@@@@LRH$H"H"H"H1@@@@LRIDP"H"H"H1@@@@LRP$IBH"H"H1@@@@LRP4H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4034
H"H"H1@@@@LRIDP"H"H"H1@@@@LRH4IBH"H"H1@@@@LRP$IBH"H"H1@@@@LRIDP"H"H"H1@@@@LRH$H"QDIDP1@@@@LSL3L3L3L3L1@@@@@QDQDQDQDQDQ@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4035
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4036
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@H@(@H@(A/L(BIR(AI^(@)P(CIL(@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4037
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4038
    "Modified: / 06-02-2007 / 19:40:09 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4039
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4040
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4041
systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4042
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4043
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4044
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4045
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4046
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4047
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4048
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4049
     self systemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4050
     ImageEditor openOnClass:self andSelector:#systemBrowser24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4051
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4052
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4053
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4054
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4055
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4056
    ^Icon
3445
220cfaa2e2da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3322
diff changeset
  4057
        constantNamed:#'GenericToolbarIconLibrary class systemBrowser24x24Icon'
220cfaa2e2da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3322
diff changeset
  4058
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4059
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FY&Y&Y#@@@@@@@@@FQDQDQB@@@@@@@@@FQDQDQB@@@@@@@@@CH"H"H"@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4060
@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"H 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4061
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
3445
220cfaa2e2da *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3322
diff changeset
  4062
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4063
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4064
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4065
uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4066
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4067
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4068
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4069
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4070
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4071
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4072
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4073
     self uiPainter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4074
     ImageEditor openOnClass:self andSelector:#uiPainter24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4075
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4076
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4077
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4078
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4079
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4080
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4081
        constantNamed:#'GenericToolbarIconLibrary class uiPainter24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4082
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4083
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BYBPADQDQDQDQDP@BYBP@@@@@@@@@@@@BYBPAUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4084
UUH@@@@@AUUUT TQDUH@@@@@APTQT UUUUH@@@@@AUUUT TUDUH@@@@@APTQT UUUUH@@@@@AUUUT UUUUH@@H&PAUUUT T"H%H@@@@@AUUUT T"H%H@@@$@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4085
AUUUT T"H%H@@@$@ARH"T T"H%H@@@$@ARH"T T"H%H@@H"PAUUUT UUUUH@@H&P@"H"H H"H"H@@H&P@@@@@@@@@@@@@H&P@@@@@@@@@@@@@H"P@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4086
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 255 0 0 240 240 0 255 255 0 100 100 100]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4087
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4088
    "Modified: / 06-02-2007 / 19:40:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4089
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4090
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4091
undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4092
    "This resource specification was automatically generated
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4093
     by the ImageEditor of ST/X."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4094
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4095
    "Do not manually edit this!! If it is corrupted,
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4096
     the ImageEditor may not be able to read the specification."
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4097
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4098
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4099
     self undoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4100
     ImageEditor openOnClass:self andSelector:#undoXP24x24Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4101
     Icon flushCachedIcons
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4102
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4103
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4104
    <resource: #image>
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4105
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4106
    ^Icon
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4107
        constantNamed:#'GenericToolbarIconLibrary class undoXP24x24Icon'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4108
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4109
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[U5TR5E\[@@@@@@@@FMFP% @@@@@@F5XPA$!!K1<R
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4110
O%0@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@D)OSS(@@@A[A"81K"\TC1@XF1 ?Z@@@@D)IQ3$@@E,LK2<,DDQYX%\BFA,QT@@@@D)AN@,@V081K"HC
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4111
U @@@@A[A1,[O0@@@D(7M )[CR<+GS9"@@@@@@@@P1,[AV @@D(5M@ MKR \O&T@@@@@@@@@R1,[B6D@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A6P@@D(/KBX$
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4112
E0AYXVI"ZP@@@@A*AQ,[@P@@@D()IRD\EP,KB0,KO6T@@@ATC1,VS @@@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@D(SD1LSD1LSD1LSAE<@@D,SF1YC@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4113
@@@@@@@@@@@@@@@@@@@@UP$[F0U^@@@@@@@@@@@@@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@E(BFA,VOV,@@@@@@@@@@@@@@@@@@@@@V HXF1 B
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4114
X@@@@@@@@@@@@@@@@@@@@@@@T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@Z4 Q@%(@@@@@@@@@@@@@@@@@@@@@@@@@@F,<V @@@@@@@@@@@@@@@@@@@@@@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4115
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@? ^C?0^G?8^O?<^_?<^?!!<_?@>_>@>_<@>_?!!<_?1<_?3<_?38@@G8@@O0@@_0@@? @@?@@@>@@@\@@@@@@@@@') ; yourself); yourself]
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4116
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4117
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4118
upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4119
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4120
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4121
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4122
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4123
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4124
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4125
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4126
     self upArrow24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4127
     ImageEditor openOnClass:self andSelector:#upArrow24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4128
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4129
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4130
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4131
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4132
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4133
        constantNamed:#'GenericToolbarIconLibrary class upArrow24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4134
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4135
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4136
@@@@@@@@@@@@@@@@@@@A@0PE@@@@@@@@@@@@@@@@@@@@@@@@@@DFA0 DAP@@@@@@@@@@@@@@@@@@@@@@@P$@A0(HA@T@@@@@@@@@@@@@@@@@@@@AB0@@C@4N
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4137
C0PE@@@@@@@@@@@@@@@@@@DF@@@LB@ MD@<DAP@@@@@@@@@@@@@@@PLGDQHHD1LHE@8UA@H@@@@@@@@@@@@AE!!\XA@<SD1LHEPPYF DB@@@@@@@@@@D\@Q0A
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4138
GA4OD1LJEPD\@Q0A@ @@@@@@@@@@@@@@@!!8^C1T_A@T@@@@@@@@@@@@@@@@@@@@@E @GHATRA@T@@@@@@@@@@@@@@@@@@@@@E @GDQT_A@T@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4139
@@@@@@@@@P@!!H!!TJA@T@@@@@@@@@@@@@@@@@@@@@@P\#IATTA@T@@@@@@@@@@@@@@@@@@@@@@QXXFPPDF H@@@@@@@@@@@@@@@@@@@@@@ TEAPTE@ H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4140
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4141
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[224 224 224 0 32 64 0 0 0 96 128 160 0 96 128 0 0 32 128 160 192 192 224 224 0 160 192 128 128 160 32 192 192 128 160 160 96 192 224 0 192 224 32 192 224 32 160 192 64 224 224 160 192 224 64 192 192 0 128 192 0 192 192 0 128 160 32 64 96 64 96 128 32 96 128 0 64 128 0 64 96 192 192 192 0 32 96 32 128 192 128 192 224 64 192 224 128 192 192 160 224 224 96 192 192 96 160 192 64 160 192]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@F@@@O@@@_ @@?0@A?8@C?<@G?>@O??@_?? @?0@@?0@@?0@@?0@@?0@@?0@@?0@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4142
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4143
    "Modified: / 06-02-2007 / 19:40:02 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4144
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4145
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4146
workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4147
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4148
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4149
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4150
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4151
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4152
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4153
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4154
     self workspace24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4155
     ImageEditor openOnClass:self andSelector:#workspace24x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4156
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4157
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4158
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4159
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4160
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4161
    ^Icon
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4162
        constantNamed:#'GenericToolbarIconLibrary class workspace24x24Icon'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4163
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4164
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C]7]7]7]7]7]7]7P@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@UTEUUUPUPTQDQ@ @UTEUUUP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4165
T@@QDQ@ @P@E@@UPUPTQDQ@ @PTEAPUPUPTQDQ@ @P@E@@UPUP@QDQ@ @QDQDQDQDQEADQ@ @QDQDQDQDQEDDQ@ @QDQDQDQDQEDPQ@ @QDQDQDQDQEDDQ@ 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4166
@QDQDQDQDQDQPQ@ @QDQDQDQDQDQPQ@ @QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@2H"H"H"H"H"H#@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4167
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4168
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  4169
    "Modified: / 06-02-2007 / 19:39:59 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4170
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4171
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4172
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4173
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4174
bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4175
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4176
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4177
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4178
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4179
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4180
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4181
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4182
     self bug28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4183
     ImageEditor openOnClass:self andSelector:#bug28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4184
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4185
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4186
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4187
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4188
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4189
        constantNamed:#'ToolbarIconLibrary class bug28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4190
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4191
UUUUUUUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O?0@@@@@@?*+@@@@C3>**,@@@O*N***
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4192
0@@C:#***,@@@N(@@@@@@@O*O***0@@@>3>**<@@@@@O??0@@@@@@C?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4193
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 192 192 192 255 0 0 128 0 0]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4194
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0L@@@#F0@@F_1@@@/>@@A/?0@@??>@G??? BG??8@A??>@G??? @???8@@[?<@@@/>@@@Y?D@@H1,@@@0L@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4195
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4196
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4197
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4198
bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4199
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4200
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4201
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4202
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4203
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4204
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4205
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4206
     self bugReporter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4207
     ImageEditor openOnClass:self andSelector:#bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4208
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4209
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4210
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4211
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4212
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4213
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4214
        constantNamed:#'ToolbarIconLibrary class bugReporter28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4215
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4216
@@@@@@@@@@@@@@@@@@@@@@@@@@@EUUUUUUUU@@@@@@@@@@@@@@@@@@T@@@@@@@@EUUUUUUUUAP@@@@@@@@@@@@@@@@TE@@@@@@@ADQDQDQDQAPT@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4217
@@@@@@DEAP@@@@@ADQDQDQDQ@PTE@@@@@@@@@@@@@@DAAP@@@@@DQDQDQDQD@PDE@@@@@@@@@@@@@@PA@P@@@@@DQDQDQ@ADA@D@@@@@@@PQDTPDQ@@D@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4218
@@@@ADQDQD@DP@@@@@@@@@@DPTEAQ@P@H"H"@@@@@@QDEA@D@BH#L3L @@@@ADEA@"@"H3L3L3H@@@@@@@H#L0H3L3L3L2@@@@@@@"L3@#L3L3L3H@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4219
H3L@@@@@@@@@@@@@@@H#L0H#L3L3L2@@@@@@@BH2@"H3L3L2H@@@@@@@@@@@H"H"H"@@@@@@@@@@@@@@@"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4220
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 170 170 170 128 0 0 255 0 0 255 255 255 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4221
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O???@C???D@???8@O???@C???8@???>@O??? @G??8@_??>@C??? @A/
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4222
?0@@B?8@@A''<P@@#F0@@C@0@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4223
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4224
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4225
bugReporterIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4226
    ^ self bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4227
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4228
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4229
changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4230
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4231
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4232
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4233
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4234
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4235
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4236
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4237
     self changesBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4238
     ImageEditor openOnClass:self andSelector:#changesBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4239
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4240
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4241
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4242
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4243
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4244
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4245
        constantNamed:#'ToolbarIconLibrary class changesBrowser28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4246
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4247
@@@@@@@@@@@@@B****@@@@@@@@@ @@@B****H@@@@@@@@"@@@C????H @@@@@@@2H@@C????L"@@@@@@@3H@@AUUUUL2@@@@@@@SL@@AUUUUD3@@@_=UUQL@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4248
@@EUUUTS@@@A]7UUD@@@@U7]5Q@@@@E7]5T@@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH@@@@@@@@LB@L@@@@@@@@@@@@@@@@J@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4249
@@@@@@@H@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4250
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O??>@C??>@@??? @O?? @C??8@@??8@@O?>@@@@@@@@@@@@@Z.$7LH+-
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4251
YDBJ+TQ@#.=WHH*+UABJ*5PPZ*$7X@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4252
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4253
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4254
copy28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4255
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4256
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4257
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4258
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4259
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4260
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4261
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4262
     self copy28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4263
     ImageEditor openOnClass:self andSelector:#copy28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4264
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4266
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4267
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4268
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4269
        constantNamed:#'ToolbarIconLibrary class copy28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4270
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4271
@@@@@@@@@@@@@@@@@@@@@@EUUUU\@@@A????>@@@@_???? @@@G????8@@@A????>@@@@_???? @@@@@@??8AUUUUWO?>@_????#?? G????8??8A????>O?
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4272
>@_????#?? G????8??8A????>O?>@_????#?? G????8??8A????>O?>@_????"** G????8@@@A????>@@@@_???? @@@G????8@@@A????>@@@@_???? 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4273
@@@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:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4274
@@@@@@@???@@O??0@C??<@@???@@O??0@C??<@@???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_?? @G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4275
8@A??>@@_?? @G??8@A??>@@_?? @@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4276
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4277
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4278
cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4279
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4280
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4281
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4282
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4283
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4284
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4285
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4286
     self cut28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4287
     ImageEditor openOnClass:self andSelector:#cut28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4288
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4289
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4290
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4291
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4292
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4293
        constantNamed:#'ToolbarIconLibrary class cut28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4294
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4295
@@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDS@@@@@@@SL3L3L3L<L3H@@@0@@AL3L3L3L303L @@C@@@D3L3L3L3OLL2@@CL@@@SL3L3L3L303H@@L@@@AL3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4296
L3OLL @L0@@@D3L3L3L3L302@@0@@@@SL3L3L3L3OLH@3@@@@AL3L3L3L3L<0 CL@@@@D3L3L3L3L3OB@L@@@@@SL3L3L3L3L<H@0@@@@AL3L3L3L3L33L3@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4297
@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L3OL0@@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L33@3@@@@@L"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4298
H"H"H"3B@,0@@@@@@@@@@@CL3@@@CL3@@@@@@@@@C@C@@@@@0@0@@@@@@@@L@L@@@@C@C@@@@@@@@@0@0@@@@L@L@@@@@@@@C@C@@@@@0@0@@@@@@@@L@L@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4299
@@C@C@@@@@@@@@CL@@@@@@3@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4300
_??8@G??>@A???!!@_??8PG??>LA???"@_??9 G??>PA???,@_??;@G??> A???(@_??>@G???@A???0@_??<@G???@A???0@_??>@G???0A???'' @@R@$@@D
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4301
 I@@AHBP@@R@$@@D I@@@0A @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4302
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4303
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4304
delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4305
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4306
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4307
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4308
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4309
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4310
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4311
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4312
     self delete28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4313
     ImageEditor openOnClass:self andSelector:#delete28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4314
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4315
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4316
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4317
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4318
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4319
        constantNamed:#'ToolbarIconLibrary class delete28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4320
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4321
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDQL@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3H@@@@@@@D3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4322
L3L3L @@@B@@@SL3L3L3L3L2@@@B@@@AL3L3L3L3L3H@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3@@@@@ @@D3L3L3L3L0@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4323
@@@@@SL3L3L3L3@P@@@@H@@AL3L3L3L3LADSL3H @@D3L3L3L3L0DQL3L"@@@SL3L3L3L3@Q@3L0H@@AL3L3L3L3LADC@3@ @@D3L3L3L3L0DPLCLB@@@2H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4324
H"H"H"@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4325
D0L2H@@@@@@@@@@@@ DSL3HB@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4326
@@@@@C??>@@??? @O??8PC??>D@???!!@O??8XC??>F@???  O??8HC??>B@????0O?? LC????@????0O???<C????@????0O???<C????@????0@@A?<@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4327
_?@@@G?0@@A?<@@@_?@@@G?0@@@_0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4328
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4329
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4330
dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4331
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4332
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4333
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4334
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4335
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4336
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4337
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4338
     self dos28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4339
     ImageEditor openOnClass:self andSelector:#dos28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4340
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4341
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4342
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4343
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4344
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4345
        constantNamed:#'ToolbarIconLibrary class dos28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4346
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4347
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H"H"H @#L3L3L3L3L3L3L3L3@BMDQDQDQDQDQDQDQBL@H4QDQDQDQDQDQDQDH0@#QDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4348
QDQDQDQDP#@BMDEDQDQDQDQDQDQBL@H4QAQDQDQDQDQDQDH0@#QDPTQDQDQDQDQDP#@BMDQDEDQDQDQDQDQBL@H4QDEDQDQDQDQDQDH0@#QDEDQDQDQDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4349
P#@BMDEDQADQHQDTDQEBL@H4QDQDQDQDQDQDQDH0@#QDQDQDQDQDQDQDP#@BL"H"H"H"H"H"H"H"L@@3L3L3L3L3L3L3L3L0@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4350
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4351
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 194 222 222 222 125 125 125 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4352
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@@P@@@@D@@@@GLX@@BT
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4353
(@@@%I@@@IRH@@A3L@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4354
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4355
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4356
extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4357
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4358
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4359
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4360
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4361
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4362
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4363
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4364
     self extract28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4365
     ImageEditor openOnClass:self andSelector:#extract28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4366
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4367
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4368
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4369
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4370
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4371
        constantNamed:#'ToolbarIconLibrary class extract28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4372
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4373
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@MDP4QC@@@@@@UUTE@@@3L3L3L@@B@AAUUPD@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4374
@@H DEUU@P@@L3L3L2H"H"HPUUTA@@@4QCQDH"H"H"@@@@D@@CL3L3L"H"H"DQDQDP@@MDP4QC@@@"@Q@@@A@@@3L3L3L@@B@AD@UPD@@CQDMDP0@@@@DPAU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4375
@P@@L3L3L3@@@@@@@@@@@@@4QCQDL@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4376
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4377
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4378
@@@@@@@@@@A?<@@@_?A?8G?0_>A?<W? _?G?8G???>A???? _???8G?1?>A?<W? _?A?8G?0O>A?<@@@_?@@@G?0@@@@@@@@@@@@@@@@@@@@D@A@MED3PD*:
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4379
UNA9D%Q@P)ITPCQZL6@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4380
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4381
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4382
fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4383
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4384
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4385
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4386
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4387
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4388
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4389
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4390
     self fileBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4391
     ImageEditor openOnClass:self andSelector:#fileBrowser28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4392
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4393
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4394
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4395
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4396
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4397
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4398
        constantNamed:#'ToolbarIconLibrary class fileBrowser28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4399
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4400
@@@@@@@@@@@@@@@@@@@@@@CLA&Y&Y&Y&X@@@@@@@@L0F@@@@@@A @@@@@@@@3@XN;.;.8F@@@@@@@@CLA ;.@@@@@@@@@@@@@L0FC.8O[6=/[0@@@@@@3@X@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4401
; [6=/[6@@@@@@CLA DNC6<@@F<@@@@@@L0F@A@F= [0= @@@@@@3@X@@P=/[6=/@@@@@@CLA @@A/[6=/X@@@@@@L0FC0@O[6=/[0@@@@@@3@XF<@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4402
@@@@@@CLA = @@@@@@@@@@@@@L0FA/[6=/A @@@@@@@@3@XO[6=/XF@@@@@@@@CLA @@@@@@X@@@@@@@@L0FY&Y&Y&Y @@@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4403
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4404
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4405
A??<@@_??@@G??0@A??<@@_??8@G??>@A??? @_??8@G??>@A??? @_??8@G??>@A??? @_??@@G??0@A??<@@_??@@G??0@@??<@@G??@@@@@@@G.P=0AAD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4406
HP@PQBD@GDP8 AADHD@PQBA@DN^=0@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4407
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4408
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4409
fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4410
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4411
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4412
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4413
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4414
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4415
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4416
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4417
     self fileIn28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4418
     ImageEditor openOnClass:self andSelector:#fileIn28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4419
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4420
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4421
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4422
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4423
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4424
        constantNamed:#'ToolbarIconLibrary class fileIn28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4425
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4426
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y&@@@FY&A @@@FL3L&Y&X@@PY&XA@@@@X3L2Y&Y @AA&Y D@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4427
@0A"H"I&Y&@@DFY&@P@CLFY"Y&Y&X@@P@@@3L3L3Y&I%UUI @ADQDSL3L3L6X&UUT&@@DP@@L3L3L6Y"H"H"X@@Q@FXA@@L0Y&I&Y&Y @AD@Y D@@0A&X&QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4428
P&@@@@@@@@@@@FY"YDQBX@@@@F@@@@@@Y&H"H"I @@@@@@@@@@A&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4429
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4430
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4431
@@@@@@@@@@@@@_?0_>G?<G?!!??A?8_?0_>W?<G?''??A????0_???<G????A?9??0_>W?<C?!!??@B@_?0@@G?<@@A??@@@@@@@@@@@@U@D@@HP@@@BT0S@@%R
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4432
EH@]W!!R@BU@T @%LEH@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4433
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4434
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4435
garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4436
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4437
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4438
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4439
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4440
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4441
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4442
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4443
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4444
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4445
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4446
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4447
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4448
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4449
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4450
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4451
        constantNamed:#'ToolbarIconLibrary class garbageCollect28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4452
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4453
DQD@@@.;.1D[DQDQD@@QDP@@.;.;,[,@@ADP@ADQ@@.;@@.;.1@@@A@@DQD@B;@@@[.;DCH@D@@QDP@K,@@K.;,Q@2@P@ADQ@K.;@@DQDQDPL @@DQDKB;B0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4454
@QDQ@@@C@@@QD[B0B0,ADP@"H"@@@ADQ@@@@@@DQ@P@@@0@@DQ@@@@C 8@@ADQL3@@@Q@@@@;.;.@@DCL0H@@@@@@@@NC @@@PLC@ @@@@@@C.;.8@@A@0LB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4455
@@@@@@@@8N@@@@DC@0H@@@@@B (@@AD@@PLC@ @@@@****@LG@@A@0LB@@@@@JB CL3L0@DC@0H@@@B***(@0L@Q@SLCL @@@@(J@L3L3AD@L"H @@@@@QDQ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4456
C@0QDQD@@@DP@@@ADQD@@@@QD@@@@@@@@ @B@ @B@@HB@ H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@H@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4457
@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@H@@@H@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4458
@G1@@@C>0@@A1=0@@XO^@@FG30@C0@^@AZ@? @)P?8@@@O>@@B#? @C<?8@@TO>@@_#? @B ?8@E@O>@G9S? @)>?8@?JO>@EO3? @APO @@@@@@]7]7\DUU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4459
UDAEUUQ@U7]5\EUUUTAUUUU@]U]W\@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4460
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4461
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4462
help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4463
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4464
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4465
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4466
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4467
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4468
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4469
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4470
     self help28x28Icon1 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4471
     ImageEditor openOnClass:self andSelector:#help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4472
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4473
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4474
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4475
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4476
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4477
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4478
        constantNamed:#'ToolbarIconLibrary class help28x28Icon1'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4479
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4480
@@@@@@E@@@@@@J*(D@@@@@***)P@@@@@@J*E@@@@K.,J(T@@@;.>8*E@@@K.:;"(T@@J;..;JE@@K; N;"!!P@C+ B;,(T@@/ @K.JE@@N,@C.2E@@B>@@.3!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4481
P@@@@@.8!!T@@@@@+.1P@@@@@/.1P@@@@@N.0P@@@@@N>2D@@@@@B:8!!@@@@@@;8(P@@@@@K+H@@@@@@@@BA@@@@@@J*HP@@@@@@@JD@@@@@C/"!!@@@@@@.,(
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4482
@@@@@@N>H@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 63 79 96 255 255 0 255 255 255]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4483
@@?8@@@??@@@_?8@@O??@@G??8@C??>@@???0@_??<@O???@C>O?0@?C?<@O0?>@C<O? @?C?8@@C?8@@A?<@@@_>@@@O? @@C?8@@@?>@@@O>@@@C?8@@@_
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4484
>@@@O? @@C?8@@@?<@@@O>@@@C?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4485
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4486
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4487
help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4488
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4489
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4490
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4491
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4492
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4493
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4494
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4495
     self help28x28Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4496
     ImageEditor openOnClass:self andSelector:#help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4497
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4498
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4499
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4500
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4501
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4502
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4503
        constantNamed:#'ToolbarIconLibrary class help28x28Icon2'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4504
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4505
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@3H@@@@@@@@@@@@@@@@CL2@@@@@@@@@@@@@@@@L3L @@@@@@@@@@@@@@@3L3@@@@@@@@@@@@@BLCL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4506
L0@@@@L3@@@@@CL0L3L3@@H3L3L0@@A@L3@3L3LBH#L3L3A@@D@3LCL3L0H"L3L3LD@@PCL0L3L3@"D3L1L0P@A@L3@3L3LBH!!L1L3A@@D@3LCL3L0H"HQL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4507
LD@@PCL0L3L3@"H#D3L0P@A@L3@3L3LBH"D1L3A@A@L3LBL3L0H"D3LSLD@D@3L0H#L3@"D#L3D0P@PCL3LBH#LBHRL3L3A@A@L3L3@"H0H"H3L3LD@D@3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4508
L H"@"H#L3L0P@PCL3L"@"HBH"L3L3A@A@H"H"H H H"H#L2HD@D@@H"H"HB@"H"H"H@P@ADP@H"H HBH"H @DQ@@@@DP@@"H@H"H@Q@@@@@@@@@Q@@B@ @D
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4509
P@@@@@@@@@@@AD@@Q@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 128 92 192 192 192 253 253 253 191 191 0]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4510
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4511
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4512
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4513
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4514
help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4515
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4516
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4517
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4518
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4519
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4520
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4521
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4522
     self help28x28Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4523
     ImageEditor openOnClass:self andSelector:#help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4524
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4525
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4526
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4527
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4528
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4529
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4530
        constantNamed:#'ToolbarIconLibrary class help28x28Icon3'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4531
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4532
@@@@@@@@@@@@0@@@@@@@@E0@@@@@@@AW@@@@@@@@U\@@@@@@@EU@@@@@@CQUT@@U@@ATUU@5UP@HUEUS=UWHBEQUT?UUR@!!TUUO5UT HUEUS=UUHBEQUT?5U
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4533
R@!!TUUO=UT HUEUS?UUHH5QUT?5URBETMUO=UT !!UTMS?UUHHUU<4?5URBEU_3O=UT  @W?C?U@HH?0O<?0O2B@?<CLC?0 J ??@?<B(@B O??0(@@@@(C<B
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4534
 @@@@@J@(@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 253 253 253 191 191 0 192 192 192]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4535
@X@@@@G @@@A<@@@@_ @@@G<@@@G?@\@C?9? C????A????0_???<G????A????0_???<G????A????0????<O????C????0????<O????C????0????<O??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4536
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4537
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4538
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4539
history28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4540
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4541
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4542
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4543
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4544
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4545
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4546
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4547
     self history28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4548
     ImageEditor openOnClass:self andSelector:#history28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4549
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4550
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4551
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4552
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4553
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4554
        constantNamed:#'ToolbarIconLibrary class history28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4555
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4556
@@@@@@@@@0@@@@@@@@@B**(@@@@@@%YV@@@@@@J**"@@@@@BU%X @@@@@***H @@@@IVU"H@@@@B**("H@@@@%YVH"@@@@J**"H @@@@@@@"H@@@@B**("@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4557
@@@@@@H @@@@@***H@@@@@@@@B@@@@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4558
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 129 194 194 194 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4559
@@@@@C?8@@@?>@@@O?8@@C?>@@@??8@@O?>@@C??8@@??>@@O?? @C??8@@??>@@C?? @@??8@@C?>@@@?? @@C?8@@@?>@@@@@@@H@H@@BDB@@@<M3IHITI
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4560
KRBT"R$ %D$)8IVD2B@@@@G @@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4561
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4562
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4563
home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4564
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4565
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4566
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4567
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4568
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4569
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4570
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4571
     self home28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4572
     ImageEditor openOnClass:self andSelector:#home28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4573
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4574
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4575
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4576
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4577
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4578
        constantNamed:#'ToolbarIconLibrary class home28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4579
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4580
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4581
@@@@@@@@@@DA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HCA@H@@@@@@@@@@@@@@@@@@@@@@@@@A@D@@@H@@0LD@ @@@@@@@@@@@@@@@@@@@@@@@@HA@@H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4582
@0TEAPPA@@@@@@@@@@@@@@@@@@@@@@@D@PH@@0XFA XGB@D@@@@@@@@@@@@@@@@@@@@@BP$@@0PDA@PDA@XD@P@@@@@@@@@@@@@@@@@@@@H@@0PDAP(CAPPD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4583
A PA@@@@@@@@@@@@@@@@@@H@@0PDAP(@@@LEA@PDA@D@@@@@@@@@@@@@@@H@APPDAP@@@@@@@@TDA@XD@P@@@@@@@@@@@@HCA0PDAP@@@@@@@@@@APPDA@PA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4584
@@@@@@@@@@HCAPPDAPL@@@@@@@@@@@LEA@PFA@D@@@@@@@@@@ HKA L@@@@LCP8O@@@@APXB@ D@@@@@@@@@@@@@@P\C@@@MDADRD0<@@@LF@ @@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4585
@@@@@@HG@0@@EATVE1\N@@@CA H@@@@@@@@@@@@@@@@AA0L@@A QFQ([C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@XE!!0]F08@@@LG@ @@@@@@@@@@@@@@@@DG
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4586
@0@@FAHWGQ,N@@@CA0H@@@@@@@@@@@@@@@@AA0L@@A ^E14[C @@@0\B@@@@@@@@@@@@@@@@@P\C@@@_GA4 F08@@@LG@ @@@@@@@@@@@@@@@@DG@0@@G2D[
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4587
F2HN@@@CA0H@@@@@@@@@@@@@@@@AA0TC@1<"H"H"C LCARLB@@@@@@@@@@@@@@@@C0DA@PDA@PDA@PDA@PDAC0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4588
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[224 224 224 0 0 0 32 32 32 192 192 192 64 64 64 160 160 160 96 96 96 128 128 128 96 64 96 64 32 64 224 192 224 32 0 0 160 96 64 128 64 32 96 32 0 64 0 0 160 128 128 224 192 192 192 160 160 160 64 32 128 96 96 224 224 192 224 192 160 192 128 64 128 64 64 224 160 128 192 128 32 160 64 0 192 128 96 192 96 0 192 160 128 96 32 32 192 64 0 160 96 32 128 32 0 128 96 128]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4589
@@@@C0@@@@<@@@@O@@X@C0@O@@<A''8@O@[?@C0G?8@<A??@O@_?8C0O??@<G??8OC???C1???8<O??<O@??<C0O??@<C??0O@??<C0O??@<C??0O@??<C0O?
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4590
?@<C??0O@??<C0@@@@<@@@@O@@@@C0@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4591
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4592
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4593
imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4594
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4595
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4596
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4597
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4598
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4599
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4600
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4601
     self imageEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4602
     ImageEditor openOnClass:self andSelector:#imageEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4603
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4604
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4605
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4606
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4607
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4608
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4609
        constantNamed:#'ToolbarIconLibrary class imageEditor28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4610
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4611
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"HDQEUVY @@@@@BH"H3L QDUUY&@@@@@@HA@#L2ADQUU&X@@@@@@"H"H"HH
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4612
"I&W]0@@@@@BL3L3L "H&Y]7@@@@@@H"H"H"BH"Y%7\@@@@@@#L3L3HDQEUVY @@@@@BH"H"H QDUUY&@@@@@@H3L3L2ADQUU&X@@@@@@"H"H"HH"I&W]0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4613
@@@BL#L3L "H&Y]7@@@@@@H2L3L2BH"Y%7\@@@@@@"H"H"HBH"H"H @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4614
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0@0@0L@L@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4615
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4616
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@;[7/@D>%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4617
J@AJ)P @RK5.@D"%J@AH)R @:JW/@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4618
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4619
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4620
menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4621
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4622
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4623
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4624
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4625
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4626
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4627
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4628
     self menuEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4629
     ImageEditor openOnClass:self andSelector:#menuEditor28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4630
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4631
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4632
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4633
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4634
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4635
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4636
        constantNamed:#'ToolbarIconLibrary class menuEditor28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4637
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4638
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@QH"H DQHQD"H @@@@@ATBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4639
IRT%IP@@@@@BUQIU@UIRT%IR@@@@@@IRHBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUQIU@RT%IRT%@@@@@@IRHBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4640
@@@BUQIU@UIRT%IR@@@@@@H"HBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4641
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APT@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4642
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@T@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4643
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@6=D$@O(Y
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4644
I@B*GRP@"9T$@H(WI@BJD2P@"=D<@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4645
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4646
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4647
paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4648
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4649
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4651
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4652
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4653
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4654
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4655
     self paste28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4656
     ImageEditor openOnClass:self andSelector:#paste28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4657
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4658
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4659
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4660
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4661
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4662
        constantNamed:#'ToolbarIconLibrary class paste28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4663
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4664
@@@@@@@@@@@!!DR@@@@@@@@@@@@@@@BDQH@@@@@@@@@@@@@@@DQDP@@@@@@@@@@@@@AD"H"D@@@@@@@@@ADQBDQDQDRQDP@@@@@@DQDHQDQDQIDQ@@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4665
QDQDQDQDQD@@@@@@ADQDQDQDQDQDP@@@@@@@@@@@@@ADQDQ@@DQDQDQDQDQDLDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4666
QD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4667
L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4668
@@@@@@@2H"H"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 127 127 127 127 170 170 170 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4669
@@C8@@@@>@@@@O @@O??<@C???@@???0@O??<@C???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4670
??A????0_???<G????A???@@_??0@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4671
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4672
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4673
reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4674
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4675
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4676
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4677
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4678
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4679
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4680
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4681
     self reloadFromFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4682
     ImageEditor openOnClass:self andSelector:#reloadFromFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4683
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4684
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4685
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4686
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4687
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4688
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4689
        constantNamed:#'ToolbarIconLibrary class reloadFromFile28x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4690
        ifAbsentPut:[(Depth8Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4691
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4692
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4693
@@@@@@@E@PDAAPDA@PT@@@@@@ @C@0LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@H@@0LC@0@B@@@@@@PD@@TA@PDE@PDAAP@@@@@B@@LC@0L@A@PDA@PDA@PE
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4694
APTEAPTEAPT@@@@@@ @@@@@@@@HDA@PDA@PDA@DA@PTA@PDE@@@@@@HB@ HB@ HDA@PDA@PDA@TEAPTEAPTEAP@@@@@B@ @@@@@@@ @@@@@DA@@E@PDAAPDA
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4695
@PT@@@@@@ H@@@LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@HB@@@C@0@B@@@@@@@@@@TA@PDE@PDAAP@@@@@@@@@@@@@@@@@@@@@@@@@EAPTEAPTEAPT@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4696
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4697
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4698
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4699
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4700
reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4701
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4702
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4703
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4704
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4705
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4706
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4707
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4708
     self reloadTextFromFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4709
     ImageEditor openOnClass:self andSelector:#reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4710
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4711
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4712
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4713
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4714
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4715
    ^Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4716
        constantNamed:#'ToolbarIconLibrary class reloadTextFromFile28x22Icon'
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4717
        ifAbsentPut:[(Depth8Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4718
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4719
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4720
@@@@@@@E@PDAAPDA@PT@@@@@@ @C@0LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@H@@0LC@0@B@@@@@@PD@@TA@PDE@PDAAP@@@@@B@@LC@0L@A@PDA@PDA@PE
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4721
APTEAPTEAPT@@@@@@ @@@@@@@@HDA@PDA@PDA@DA@PTA@PDE@@@@@@HB@ HB@ HDA@PDA@PDA@TEAPTEAPTEAP@@@@@B@ @@@@@@@ @@@@@DA@@E@PDAAPDA
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4722
@PT@@@@@@ H@@@LC@@H@@@@@A@@@APTEAPTEAPTE@@@@@@HB@@@C@0@B@@@@@@@@@@TA@PDE@PDAAP@@@@@@@@@@@@@@@@@@@@@@@@@EAPTEAPTEAPT@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4723
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4724
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a') ; yourself); yourself]
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4725
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4726
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4727
sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4728
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4729
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4730
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4731
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4732
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4733
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4734
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4735
     self sUnit28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4736
     ImageEditor openOnClass:self andSelector:#sUnit28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4737
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4738
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4739
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4740
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4741
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4742
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4743
        constantNamed:#'ToolbarIconLibrary class sUnit28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4744
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4745
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O??C???????C?<O?0@@??<O??????<O?0??@@@@@@@@@@@@@@@@@@@@@BH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4746
H"H"H#L3L0@@H"H"H"H"H"H#L3L3@@@"H"H"H"H"H#L3L3L@@BH"H"H"H"H#L3L3L0@@H"H"H"H@@@L1L3L3@@@"H"H"HO??<A@3L3L@@BH"H"HO???1@3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4747
L0@@H"H"HO???1@@L3L3@@@"H"H <_?1@O@3L3L@@BH"H"C0G1@O<CL3L0@@H"H"HO@A@O?0L3L3@@@"H"H ?0@O??@3L3L@@BH"H#LO<O??@3L3L0@@H"H#
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4748
L3C???@3L3L3@@@"H#L3L0@@@3L3L3L@@BH#L3L3L3L3L3L3L0@@H#L3L3L3L3L3L3L3@@@#L3L3L3L3L3L3L3L@@CL3L3L3L3L3L3L3L0@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4749
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4750
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4751
?>A???? _???8G???>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4752
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4753
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4754
saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4755
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4756
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4757
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4758
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4759
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4760
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4761
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4762
     self saveImage28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4763
     ImageEditor openOnClass:self andSelector:#saveImage28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4764
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4765
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4766
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4767
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4768
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4769
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4770
        constantNamed:#'ToolbarIconLibrary class saveImage28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4771
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4772
UPSL3L0A@ET7L3L0?PAUML3L3OT@US\3L3C5@ET43L3L?PAUM3L3LO4@USSL3L3=@ET7L3L0?PAUML3L3O4@US\3L3C=@ET43L3L?PAUM@@@@O4@US?????=
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4773
@ET?UUUU?PAUO7??6?4@US=T?=+=@ET?ZO?Z?PAUO4C?6/4@U]U**)WU@ET@@@@@@@AUUUUUUUUU%Y%UUUTE%%UUUUTU)UEUUUUEUUUUUUVYUUTEUTUUUUDU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4774
AUUUUUUQUPUUVUUUUUTU%P@a') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4775
C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C??>@@@@@@@@@@@@;*9R<H*(
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4776
W)BJ*E:@S.9R,B)HT)@*REJP:$9R<@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4777
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4778
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4779
saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4780
    "This resource specification was automatically generated
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4781
     by the ImageEditor of ST/X."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4782
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4783
    "Do not manually edit this!! If it is corrupted,
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4784
     the ImageEditor may not be able to read the specification."
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4785
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4786
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4787
     self saveTextToFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4788
     ImageEditor openOnClass:self andSelector:#saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4789
     Icon flushCachedIcons
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4790
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4791
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4792
    <resource: #image>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4793
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4794
    ^Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4795
        constantNamed:#'ToolbarIconLibrary class saveTextToFile28x22Icon'
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4796
        ifAbsentPut:[(Depth4Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4797
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4798
@@@@@EUUAP@@L3L3L3@@@ @PUUTA@@@4QCQDL@@BHAAUUPD@@CL3L3L"H"H"DEUU@P@@MDP4QCH"H"H @@@A@@@3L3L3H"H"H!!DQDQD@@CQDMDP0@@H DP@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4799
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4800
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4801
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  4802
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4803
saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4804
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4805
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4806
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4807
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4808
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4809
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4810
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4811
     self saveToFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4812
     ImageEditor openOnClass:self andSelector:#saveToFile28x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4813
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4814
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4815
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4816
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4817
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4818
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4819
        constantNamed:#'ToolbarIconLibrary class saveToFile28x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4820
        ifAbsentPut:[(Depth4Image new) width: 28; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4821
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4822
@@@@@EUUAP@@L3L3L3@@@ @PUUTA@@@4QCQDL@@BHAAUUPD@@CL3L3L"H"H"DEUU@P@@MDP4QCH"H"H @@@A@@@3L3L3H"H"H!!DQDQD@@CQDMDP0@@H DP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4823
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4824
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 28; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4825
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4826
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4827
search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4828
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4829
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4830
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4831
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4832
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4833
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4834
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4835
     self search28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4836
     ImageEditor openOnClass:self andSelector:#search28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4837
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4838
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4839
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4840
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4841
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4842
        constantNamed:#'ToolbarIconLibrary class search28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4843
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4844
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@J @@@@H@@B(@@@@B@@@*@@@@@@@@@@@@@@@@@@@@@@@H@@B@@@@@B@@@ @@@@@ @@H@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4845
@@AT@D@P@@@@U@B@D@@@@EP@ A@@@@AT@H@P@@@@*@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@P@@H@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4846
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[40 40 80 212 208 200 255 255 255]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4847
@@@@@@@@@@@@@@@@@_A<@@G0_@@A<G0@@_A<@@G0_@@O>?8@C?/>@@?;? @O>?8@G???0O???>C???? ????8O???>C???? ??/?8O?;?>C?>?? ?8@?8O>@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4848
O>C? C? ?8@?8O>@O>@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4849
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4850
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4851
shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4852
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4853
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4854
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4855
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4856
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4857
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4858
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4859
     self shell28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4860
     ImageEditor openOnClass:self andSelector:#shell28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4861
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4862
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4863
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4864
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4865
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4866
        constantNamed:#'ToolbarIconLibrary class shell28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4867
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4868
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3L3L3L3L3L3L0@1DQDQDQDQDQDQDQDQ@CD"H"H"H"H"H"H"H#D@LRH"H"H"H"H"H"H"LP@1H"P"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4869
H"H"H"H"H1@CD"QDH"H"H"H"H"H#D@LRP$IBH"H"H"H"H"LP@1ICP"H"H"H"H"H"H1@CD"QDH"H"H"H"H"H#D@LRH4IBH"H"H"H"H"LP@1IBP$H"H"H"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4870
H1@CD"QDH"H"H"H"H"H#D@LRH$H"QDP$QDIDQBLP@1H"H"H"H"H"H"H"H1@CD3L3L3L3L3L3L3L3D@@QDQDQDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4871
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4872
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 125 125 125 194 194 194 222 222 222 0 0 194]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4873
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@A@E@@@PAP@@7&T@@QJ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4874
U@@BR=P@@T(T@@YI%@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4875
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4876
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4877
systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4878
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4879
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4880
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4881
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4882
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4883
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4884
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4885
     self systemBrowserClassHistory28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4886
     ImageEditor openOnClass:self andSelector:#systemBrowserClassHistory28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4887
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4888
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4889
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4890
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4891
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4892
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4893
        constantNamed:#'ToolbarIconLibrary class systemBrowserClassHistory28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4894
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4895
@@@@@@@@@@@@@@@@@@@ADQDQDQG0@@@@@@@@@@D"H"H"H.@@@@@@@@@@@RH"H"H"8@@@@@@@@@@O;.;.;.; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4896
@@@@@@@@@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@SL@@CL>@@@@@@@@@@@O; @@;.8@@@@@8@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4897
@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@VX@@FY.@@@@@@@@@@@O8@@@C.8@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4898
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @@@@8@8@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4899
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@8@8@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4900
??0^@O?<O0C??FF@??1!! O?<XXC??CF@@ @C@@H@A @B@>7 A0O[8@_?6>@G@=/ @ O[8@H@@@@B@<O A0O[8@_??>@G@;7 @@NY8@@@@@@@@@@@%]7/TITI
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4901
JUBUBR%P=H$/TIQIJRBTRR$ %\'')P@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4902
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4903
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4904
uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4905
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4906
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4907
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4908
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4909
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4910
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4911
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4912
     self uiPainter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4913
     ImageEditor openOnClass:self andSelector:#uiPainter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4914
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4915
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4916
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4917
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4918
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4919
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4920
        constantNamed:#'ToolbarIconLibrary class uiPainter28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4921
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4922
@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@3H"H DQHQD"H @@@@@CLBH"@RHBH H"@@@@@@H@H"HAT%UUUUT@@@@@@%H"H D%
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4923
IRT%IP@@@@@BUSMU@UIRT%IR@@@@@@IRLBHAIRT%IRT@@@@@@%H"H ERT%IRT @@@@@BUSMU@RT%IRT%@@@@@@IRLBHAT%IRT%H@@@@@@%H"H D%IRT%IP@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4924
@@@BUSMU@UIRT%IR@@@@@@H"LBHAIRT%IRT@@@@@@"H"H IRT%IRT @@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4925
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4926
@@@@@@@@@@@@@@@@@@@@@@@@T@@@AP@E@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4927
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''8???90O??>TC???  ???8HO??>A#??? X???8@O??>@C??? @???8@@@@@@@@@@@@>QN@@H$Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4928
@@BADP@@.QD@@H$Q@@BIDP@@>_N@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4929
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4930
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4931
workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4932
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4933
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4934
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4935
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4936
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4937
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4938
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4939
     self workspace28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4940
     ImageEditor openOnClass:self andSelector:#workspace28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4941
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4942
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4943
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4944
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4945
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4946
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4947
        constantNamed:#'ToolbarIconLibrary class workspace28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4948
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4949
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@@@AUPUUUUAUAQDQDB@@@@EUAUUUTE@@DQDPH@@@@P@E@@UP
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4950
UPTQDQ@ @@@AAPTEAUAUAQDQDB@@@@D@AP@ETET@DQDPH@@@@QDQDQDQDQEADQ@ @@@ADQDQDQDQDTPQDB@@@@DQDQDQDQDQQDDPH@@@@QDQDQDQDQEDDQ@ 
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4951
@@@ADQDQDQDQDQEADB@@@@DQDQDQDQDQDTDPH@@@@QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@@@@@@L"H"H"H"H"H"H0L@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4952
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4953
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4954
????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@@@@@@@@@@@@ //R@HJJ
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4955
T BB"%P@$(/X@IJJU@BR"%H@[O)R@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4956
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4957
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4958
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28-XP'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4959
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4960
eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4961
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4962
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4963
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4964
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4965
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4966
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4967
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4968
     self eraseXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4969
     ImageEditor openOnClass:self andSelector:#eraseXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4970
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4971
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4972
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4973
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4974
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4975
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4976
        constantNamed:#'ToolbarIconLibrary class eraseXP28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4977
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4978
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4979
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GNB!!GL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A="H"F[0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^(VE!!XM/@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4980
@@@@@@@@@@@@@@@@@@@@@@@@@@A8^7-;_F<@@@@@@@@@@@@@ H%3@@@@@@@@@@@@@GQ5]WU6ZP@@@@@@@@A%_8^B@@@@@@@@@@@@@@@@[WA0\GE)@@@@@@A)
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4981
_(E9@@@@@@@@@@@@@@@@@@A$Y&Y&Y5(@@@A.]7]2@@@@@@@@@@@@@@@@@@@@@E%GQ4]HV A([F1-@@@@@@@@@@@@@@@@@@@@@@@@R3(:N#-IVE!!$@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4982
@@@@@@@@@@@@@@@@@@ALLB</K3)J@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C\(JB *SP@@@@@@@@@@@@@@@@@@@@@@@@@@S2,%IRD!!HRX?@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4983
@@@@@@@@O"H\GA04H1,[GS8@@@@@@@@@@@@@@@@@@@@@LQ(WE1\5@@@_E!!XXO @@@@@@@@@@@@@@@@@@IALSD1L-@@@@@B@SD1T=@@@@@@@@@@@@@@@@E@4M
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4984
CP4-@@@@@@@@G!!DQD#0@@@@@@@@@@@@@B0$IBP,2@@@@@@@@@@@,C 8PO@@@@@@@@@@@K PDA@\6@@@@@@@@@@@@@B\JB <8@@@@@@@@@@@B@@H3@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4985
@@@@@@@@K XCA#X@@@@@@@@@NR$9@@@@@@@@@@@@@@@@@@@8APDH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CXLFP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4986
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[209 43 1 210 43 1 211 55 15 212 43 1 212 44 1 212 55 15 214 55 15 214 56 15 214 68 29 215 44 1 216 44 1 217 56 15 217 91 57 218 44 1 218 45 1 218 56 15 219 56 15 220 45 1 221 57 15 222 45 1 222 81 43 223 57 15 224 46 1 225 46 1 225 58 15 225 140 112 226 58 15 227 47 1 228 47 1 228 58 15 228 118 85 229 95 58 229 118 85 230 47 1 230 70 29 230 83 44 230 131 99 231 47 1 231 59 15 231 165 140 232 47 1 232 190 168 233 59 15 233 107 72 233 166 140 233 166 141 233 190 168 234 48 1 234 60 15 234 166 142 234 190 168 234 201 182 235 154 128 235 166 142 235 201 182 236 120 86 236 201 182 236 214 196 237 49 1 237 60 15 237 201 182 237 202 182 237 202 184 238 203 184 238 227 210 238 236 222 238 236 223 238 236 224 238 237 222 238 237 223 238 237 224 239 49 1 239 61 15 239 85 44 239 133 100 239 167 142 239 179 156 239 203 184 239 227 210 239 227 213 239 236 223 239 237 223 239 237 224 239 238 223 239 238 224 239 238 225 239 238 226 239 238 227 240 49 1 240 155 128 240 203 184 240 227 213 240 237 223 240 238 223 240 238 226 240 239 226 240 239 227 240 239 228 240 240 226 240 240 227 241 121 86 241 227 213 242 49 1 242 61 15 242 121 86 242 203 184 242 227 213 242 229 214 243 49 1 243 121 86 243 167 142 243 205 185 244 50 1 244 62 15 244 121 86 244 206 185 245 86 44 246 50 1 246 62 15 247 50 1 247 86 44 247 122 86 247 134 101 248 51 1 248 63 15 248 122 86 249 75 29 249 98 58 249 147 114 250 51 1 250 111 72 251 63 15 251 99 58 252 51 1 252 63 15 253 52 1 254 52 1 255 52 1]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4987
@@@@@@@@@@@@@@@@@@@@@A8@@@@_@@@@G8@@@@?@C @G8C0@@?A8@@G8<@@@?^@@@G?@@@@? @@@G8@@@G?@@@C?8@@A>_@@@?C8@@_ _@@O0C8@G8@_@@<@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4988
C8@N@@^@@@@C @@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4989
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4990
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4991
redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4992
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4993
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4994
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4995
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4996
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4997
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4998
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4999
     self redoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5000
     ImageEditor openOnClass:self andSelector:#redoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5001
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5002
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5003
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5004
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5005
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5006
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5007
        constantNamed:#'ToolbarIconLibrary class redoXP28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5008
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5009
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5010
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[E1QR5Q][P@@@@@@@@@@@@@@@@@@@@@@@@@@WC8RG2<!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5011
FTAX[P@@@@@@VDIFX0@@@@@@@@@@W@HXHBT(KS@2F$U''@@@@@C-RT40@@@@@@@@@ZC<XF1 PC1P''K#D.A%,@@@@:ST=J@@@@@@@@@E@QF1 BU6IYQA@,K2<L
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5012
V0@@NT]IR @@@@@@@@@?F1,GV0@@@@AV@2H.LP9[@@,8PT(@@@@@@@A(AQ,[P0@@@@@@@FH>GR,/CU,JM#]J@@@@@@@@XP,[F4,@@@@@@@@@YS8\JB4MBCP5
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5013
R @@@@@@@FPGF1-H@@@@@@@@@@A&O!!,%J"\1L4(@@@@@@@@@@Q,[AV(@@@@@ZVI"XU$@E2P&KB=J@@@@@@@@@D8VF0=T@@@@YS<KB0,KB1T\HRT)R @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5014
@@A[A1,[@V(@@EXQF1,[F1,[F1,^H4(@@@@@@@@@@DLVF1MK@@A_AALSD1LSD1LSD1MJ@@@@@@@@@@A^AQ,[BUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D(Q
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5015
F1,BV @@@@@@@@@@@@@@@@@@@@@@@@@@@@A+OQX[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@BFA,X@%(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V HXF05P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5016
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!!EHZ0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E(<Z0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5017
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5018
@@@@@@@@@@@@@@@@@@@@@@@@@@@A?@@@@?<G @_?!!8@O?<^@C??'' @>G=8@_@?>@G0G? A<@?8@O!!?>@C8?? @?O?8@G3?>@A>@@@@O0@@@C>@@@@_0@@@C<
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5019
@@@@_@@@@C @@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5020
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5021
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5022
undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5023
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5024
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5025
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5026
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5027
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5028
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5029
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5030
     self undoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5031
     ImageEditor openOnClass:self andSelector:#undoXP28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5032
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5033
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5034
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5035
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5036
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5037
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5038
        constantNamed:#'ToolbarIconLibrary class undoXP28x28Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5039
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5040
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5041
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F5]UD-QWF0@@@@@@@@@@@@@X4YBV@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5042
[U!!@FRD/G1H>W@@@@@@@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@@@@@@AJS44:@@@@V0X.LR8''E@<PFA,XO6 @@@@@@@@@R$%GNP@@V00/K20PQE%"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5043
U0HXF1EP@@@@@@@@@D)AN@,@V081K"HCU @@@@A[A1,[O0@@@@@@@@AJM3XJV04/J14>X @@@@@@@DL[F0U(@@@@@@@@R#T4B@4-JA0>YP@@@@@@@@AKF1,K
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5044
XP@@@@@@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A6P@@@@@@@AJK20&IA\@VVE"X&$@@@@@Z T[F0D@@@@@@@@@R"$%HQ0UB0,KB0,?YP@@@EPOF1YN@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5045
@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@@@@@@AJD1LSD1LSD1LSD0Q_@@AKD1,VP0@@@@@@@@@@@@@@@@@@@@@@@@@@@@AUBQ,[AU8@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5046
@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [E#5+@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [F@I @@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5047
T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F-HDPIZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Z31Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5048
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 55 156 1 58 159 1 62 163 1 64 165 1 65 166 1 68 169 1 69 170 1 71 172 1 74 174 1 74 175 1 75 176 1 78 179 1 79 180 1 81 182 1 82 182 1 84 185 1 86 187 1 87 188 1 88 189 1 90 191 1 92 193 1 93 194 1 97 198 1 98 199 1 100 201 1 101 201 1 102 203 1 103 204 1 104 205 1 105 206 1 106 207 1 109 210 1 110 211 1 111 212 1 112 213 1 114 215 1 115 216 1 116 217 1 118 219 1 119 219 1 119 220 1 120 221 1 123 223 1 123 224 1 126 226 1 127 227 1 128 228 1 129 229 1 129 230 1 130 231 1 135 236 1 138 240 1 140 242 1 143 245 1 149 251 1 153 255 3 154 255 6 79 179 13 82 179 15 76 172 16 64 158 16 66 161 16 67 162 16 70 164 16 75 169 20 160 255 23 78 172 31 79 166 31 80 167 31 81 168 33 82 171 34 164 255 46 87 167 54 171 255 61 98 171 61 99 171 61 99 172 68 176 255 76 110 176 85 181 255 91 122 180 91 123 181 99 186 255 102 174 242 106 134 185 120 145 189 120 145 190 120 146 190 121 146 191 135 156 194 150 168 196 150 168 198 151 169 198 151 169 199 165 180 201 165 180 203 180 192 205 180 192 207 180 192 208 181 193 208 195 203 212 195 203 213 195 204 212 196 205 213 210 214 216 210 214 217 210 215 217 225 226 219 226 228 222 226 228 223]; mask:((Depth1Image new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5049
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? @G ?<@A8_? @^O?<@G''??@A;>G0@_?@>@G? O A?0C8@_?!!<@G?<_@A??O0@_?38@@@A>@@@@?@@@@_0@@@O8@@@C
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5050
<@@@@>@@@@G@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5051
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5052
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5053
!GenericToolbarIconLibrary class methodsFor:'image specs-misc'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5054
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5055
DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5056
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5057
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5058
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5059
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5060
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5061
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5062
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5063
     self DirectoryUp22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5064
     ImageEditor openOnClass:self andSelector:#DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5065
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5066
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5067
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5068
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5069
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5070
        constantNamed:#'ToolbarIconLibrary class DirectoryUp22x22Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5071
        ifAbsentPut:[(Depth8Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(8 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5072
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5073
@@@@@@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5074
@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0LC@0LC@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5075
@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0LC@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ H@@0LC@0@@@ HB@ HB@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5076
@ @@@@@@@@@B@ HB@@LC@0L@@@HB@ HB@ HB@ H@@@@@@@@@@ HB@ @C@0LC@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5077
@@@B@ HB@@LC@0LC@0LC@0LC@0L@@@H@@@@@@@@@@ HB@ @C@0LC@0LC@0LC@0LC@@@B@@@@@@@@@@HB@ H@@0LC@0LC@0LC@0LC@0@@@ @@@@@@@@@B@ HB
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5078
@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@ HB@ @@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ @@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5079
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5080
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 0 0 255 255 0 255 0 0]; mask:((ImageMask new) width: 28; height: 28; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5081
@@@@@@@0@@@@^@@@@O0@@@G>@@@C?0@@A?>@@@??0@@_?>@@G?8@@C???>@???? O???8C???>@???? O???8C???>@???? O???8C???>@???? O???8C??
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5082
?>@???? @@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5083
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5084
3196
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  5085
fileOpenIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  5086
    <resource: #programImage>
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  5087
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  5088
    ^ self loadFromFileIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  5089
!
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
  5090
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5091
hideToolBarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5092
    <resource: #programImage>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5093
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5094
    ^ self hideToolbar8x24Icon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5095
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5096
    "Created: / 18-02-2007 / 14:52:15 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5097
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5098
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5099
hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5100
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5101
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5102
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5103
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5104
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5105
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5106
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5107
     self hideToolbar24x8Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5108
     ImageEditor openOnClass:self andSelector:#hideToolbar24x8Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5109
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5110
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5111
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5112
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5113
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5114
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5115
        constantNamed:#'ToolbarIconLibrary class hideToolbar24x8Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5116
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5117
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5118
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5119
hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5120
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5121
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5122
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5123
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5124
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5125
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5126
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5127
     self hideToolbar8x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5128
     ImageEditor openOnClass:self andSelector:#hideToolbar8x24Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5129
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5130
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5131
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5132
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5133
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5134
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5135
        constantNamed:#'ToolbarIconLibrary class hideToolbar8x24Icon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5136
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5137
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5138
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5139
hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5140
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5141
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5142
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5143
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5144
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5145
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5146
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5147
     self hideToolbarIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5148
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5149
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5150
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5151
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5152
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5153
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5154
        constantNamed:#'ToolbarIconLibrary class hideToolbarIcon'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5155
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5156
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5157
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5158
hideToolbarIcon10x26
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5159
    "This resource specification was automatically generated
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5160
     by the ImageEditor of ST/X."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5161
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5162
    "Do not manually edit this!! If it is corrupted,
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5163
     the ImageEditor may not be able to read the specification."
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5164
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5165
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5166
     self hideToolbarIcon inspect
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5167
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5168
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5169
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5170
    <resource: #image>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5171
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5172
    ^Icon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5173
        constantNamed:#'ToolbarIconLibrary class hideToolbarIcon10x26'
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5174
        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]
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5175
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5176
    "Created: / 18-02-2007 / 14:52:07 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5177
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
  5178
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5179
hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5180
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5181
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5182
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5183
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5184
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5185
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5186
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5187
     self hideToolbarIconH14 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5188
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH14
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5189
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5190
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5191
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5192
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5193
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5194
        constantNamed:#'ToolbarIconLibrary class hideToolbarIconH14'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5195
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5196
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5197
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5198
hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5199
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5200
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5201
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5202
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5203
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5204
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5205
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5206
     self hideToolbarIconH20 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5207
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH20
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5208
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5209
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5210
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5211
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5212
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5213
        constantNamed:#'ToolbarIconLibrary class hideToolbarIconH20'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5214
        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]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5215
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5216
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5217
hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5218
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5219
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5220
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5221
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5222
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5223
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5224
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5225
     self hideToolbarIconH26 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5226
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH26
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5227
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5228
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5229
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5230
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5231
    ^Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5232
        constantNamed:#'ToolbarIconLibrary class hideToolbarIconH26'
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5233
        ifAbsentPut:[(Depth2Image new) width: 10; height: 26; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C') ; colorMapFromArray:#[0 0 0 68 68 68 255 255 255]; mask:((Depth1Image new) width: 10; height: 26; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a') ; yourself); yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5234
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5235
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5236
loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5237
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5238
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5239
    ^ self load22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5240
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5241
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5242
loadImageFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5243
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5244
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5245
    ^ self loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5246
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5247
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5248
redoIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5249
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5250
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5251
    View styleSheet name = #winXP ifTrue:[
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5252
        ^ self redoXP28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5253
    ].
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5254
    ^ self redo20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5255
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5256
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5257
saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5258
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5259
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5260
    ^ self save22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5261
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5262
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5263
saveToFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5264
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5265
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5266
    ^ self save22x22Icon
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5267
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5268
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5269
!GenericToolbarIconLibrary class methodsFor:'image specs-tools'!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5270
3075
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  5271
addBufferIcon
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  5272
    <resource: #programImage>
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  5273
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  5274
    ^ self addBuffer16x16Icon2
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  5275
!
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
  5276
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5277
bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5278
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5279
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5280
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5281
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5282
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5283
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5284
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5285
     self bug2_25x25Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5286
     ImageEditor openOnClass:self andSelector:#bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5287
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5288
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5289
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5290
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5291
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5292
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5293
        constantNamed:#'ToolbarIconLibrary class bug2_25x25Icon'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5294
        ifAbsentPut:[(Depth4Image new) width: 25; height: 25; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5295
@@@@@@@@@@@@@@@@O0@@@@@@@@@@@AV( @@@@@@CL3 P@3D@DU @@@@@@@DX(@@P@QAX@@@@@@@Z"!!ATQIDET@ @@@@@B@(XQ7Q%UP@@@@@@B@VHBWH''QE@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5296
@@@@@@APAFABH''R@@C@@@H E@DQDABI4 @@A@@D@)$Q7]*AGPH@@@@@EDVQGH$Q4Y!!D@@0,@ AYD\"QBI4@XB@@H@ETTQ2IDH"]A(AT@BCMP!!GH$P"H''XX"@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5297
@@@ATAP"QRH"]@DQB@@@@@@TIDH"H''P@TX@@@@@@"4P"H"]@F@@@@@D@@@"WH"I4@P@@@@@@@@@@"4QDP@D@@@@@C0@@@@!!UEUTH@@@@@@@@@@@@@@@UB@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5298
@@@C@@@@@@@QTH@@@@@@A0@@@@@A @@@@@@@@@L@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@P@a') ; colorMapFromArray:#[0 0 0 148 148 148 248 0 0 255 255 255 108 0 0 110 110 110 52 0 0 209 0 0 208 208 208 100 72 72 44 44 44 152 49 49]; mask:((ImageMask new) width: 25; height: 25; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@O @@FG<@@G#?@@C;? @@7?0@@\?8@@C?>@@M?? @G??8@A??<@@???P@O??<@B??>@A/?? @C??8@@??0@@G?0@@@?<@@@G?@@@@C0@@@C(@@@A 
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5299
@@@@@@@@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5300
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5301
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5302
bugIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5303
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5304
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5305
    ^ self bug28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5306
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5307
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5308
copyIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5309
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5310
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5311
    ^ self copy20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5312
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5313
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5314
cutIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5315
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5316
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5317
    ^ self cut20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5318
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5319
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5320
debugItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5321
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5322
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5323
    ^ self debugIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5324
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5325
    "Created: / 20-02-2007 / 15:46:24 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5326
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5327
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5328
doItIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5329
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5330
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5331
    ^ self doIt20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5332
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5333
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5334
inspectItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5335
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5336
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5337
    ^ self inspectIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5338
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5339
    "Created: / 20-02-2007 / 15:44:34 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5340
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
  5341
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5342
removeTabIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5343
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5344
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5345
    ^ self removeTab22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5346
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5347
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5348
undoIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5349
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5350
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5351
    ^ self undo16x16Icon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5352
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5353
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  5354
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-FileBrowser'!
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5355
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5356
changesBrowserIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5357
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5358
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5359
    ^ self changesBrowser24x24Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5360
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5361
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5362
copyFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5363
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5364
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5365
    ^ self copy20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5366
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5367
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5368
cutFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5369
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5370
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5371
    ^ self cut20x20Icon2
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5372
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5373
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5374
deleteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5375
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5376
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5377
    ^ self erase20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5378
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5379
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5380
diffIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5381
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5382
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5383
    ^ self diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5384
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5385
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5386
directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5387
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5388
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5389
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5390
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5391
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5392
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5393
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5394
     self directoryBookmarks20x20Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5395
     ImageEditor openOnClass:self andSelector:#directoryBookmarks20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5396
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5397
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5398
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5399
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5400
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5401
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5402
        constantNamed:#'GenericToolbarIconLibrary class directoryBookmarks20x20Icon'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5403
        ifAbsentPut:[(Depth8Image new) width: 20; height: 20; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5404
@@@@@@@@@@@@@@@@@@@@@@@@@@@@X&I"X&I"X&I"X&I"X&I"X&I"X A"X&I"X&I"X&I"B0,KB0,KB6I"@FI"X&I"X&I"X&HKW5=_W5<KX&H@X&H@@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5405
X -_W5=_W0-"X A"X A#X6M#X0A"B5=_W5=_B6I"@FH@X6M#X6M#X0@KW5=_W5<KX&H@@@@@@@@@@@@@@@-_W5=_W0,@@@@@X6M#X6M#X6M#B5=_W5=_B6L@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5406
@@A#X6M#X6M#X6LKW5=_W5<KX0@@@FM#X6M#X6M#X0-_W5=_W0-#@@@@X6M#X6M#X6M#B5=_W5=_B6L@@@A#X6M#X6M#X6LKW5=_W5<KX0@@@FM#X6M#X6M#
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5407
X0-_W5=_W0-#@@@@X6M#X6M#X6M#B5< B1=_B6L@@@A#X6M#X6M#X6LKW0-#B5<KX0@@@FM#X6M#X6M#X0,KX6M#B0-#@@@@X6M#X6M#X6M#B6M#X6M#B6L@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5408
@@A#X6M#X6M#X6M#X6M#X6M#X0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 71 169 0 71 170 0 74 172 0 78 174 0 83 177 0 100 189 0 106 193 0 107 193 0 112 196 0 118 201 0 122 205 0 128 208 0 128 209 0 132 212 0 133 212 0 137 215 0 138 215 0 141 218 0 144 220 18 78 164 19 80 169 19 81 168 20 79 165 22 138 207 23 81 167 23 91 173 23 138 207 26 92 173 39 141 229 41 141 229 42 134 204 43 135 204 43 142 209 48 144 209 51 192 255 59 166 231 59 195 255 61 166 231 61 166 232 66 198 255 72 171 234 73 200 255 74 172 234 75 172 234 82 204 255 84 176 236 87 177 237 88 178 238 89 207 255 97 209 255 98 182 239 100 182 239 101 183 240 104 213 255 109 187 241 111 156 203 112 216 255 113 188 243 121 191 244 121 221 255 123 193 245 125 194 245 126 221 255 131 196 246 135 197 247 136 198 248 136 226 255 140 200 248 140 228 255 144 202 250 146 203 250 148 203 250 149 232 255 150 233 255 151 189 220 153 205 252 153 206 252 154 207 252 156 194 223 159 209 253 160 237 255 162 209 253 163 238 255 168 241 255 173 243 255 174 243 255 181 201 223 182 206 226 183 248 255 186 249 255 191 251 255 195 252 255 201 220 238 201 255 255 202 216 231 210 226 242 211 229 247 255 0 0 226 226 111]; mask:((Depth1Image new) width: 20; height: 20; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@A?@@A?@G=?@G=?@O??@_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5409
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5410
3078
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  5411
directoryBookmarksIcon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  5412
    <resource: #programImage>
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  5413
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  5414
    ^ self directoryBookmarks20x20Icon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  5415
!
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
  5416
3063
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  5417
directoryUpIcon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  5418
    <resource: #programImage>
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  5419
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  5420
    ^ self upArrow20x20Icon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  5421
!
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
  5422
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5423
dosShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5424
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5425
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5426
    ^ self dosWithoutText20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5427
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5428
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5429
editFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5430
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5431
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5432
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5433
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5434
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5435
editIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5436
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5437
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5438
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5439
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5440
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  5441
encodingLockIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  5442
    <resource: #programImage>
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  5443
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  5444
    ^ self padLockRedMiniIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  5445
!
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
  5446
3098
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  5447
fileInIcon
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  5448
    <resource: #programImage>
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  5449
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  5450
    ^ self fileIn20x20Icon3
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  5451
!
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  5452
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  5453
fitImageSizeToViewIcon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  5454
    <resource: #programImage>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  5455
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  5456
    ^ self fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  5457
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  5458
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5459
hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5460
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5461
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5462
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5463
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5464
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5465
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5466
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5467
     self hexToggle14x17Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5468
     ImageEditor openOnClass:self andSelector:#hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5469
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5470
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5471
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5472
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5473
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5474
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5475
        constantNamed:#'GenericToolbarIconLibrary class hexToggle14x17Icon'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5476
        ifAbsentPut:[(Depth8Image new) width: 14; height: 17; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5477
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAP@E@@TEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPT@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5478
AP@EAPTE@@@@@@T@@@@E@@TEAPT@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@T@AP@E@@T@APT@@@@@AP@@@@T@@@@EAP@@@@@E@@T@AP@E@@TE
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5479
@@@@@@T@AP@E@@@@APT@@@@@APTEAPTEAPTEAP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255]; mask:((Depth1Image new) width: 14; height: 17; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5480
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5481
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5482
hexToggleIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5483
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5484
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5485
    ^ self hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5486
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5487
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5488
historyBackIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5489
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5490
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5491
    ^ self leftArrow20x20Icon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5492
!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5493
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5494
historyForwardIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5495
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5496
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5497
    ^ self rightArrow20x20Icon
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  5498
!
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  5499
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5500
historyIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5501
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5502
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5503
    ^ self history20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5504
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5505
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5506
homeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5507
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5508
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5509
    ^ self home28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5510
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5511
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5512
homeIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5513
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5514
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5515
    ^ self home22x22Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5516
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5517
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  5518
makeIcon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  5519
    <resource: #programImage>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  5520
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  5521
    ^ self make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  5522
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  5523
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  5524
newDirectoryIcon
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  5525
    <resource: #programImage>
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  5526
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
  5527
    ^ self newDirectory20x20Icon
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5528
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  5529
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5530
pasteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5531
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5532
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5533
    ^ self paste20x20Icon 
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5534
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5535
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5536
printerIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5537
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5538
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5539
    ^ self printer22x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5540
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5541
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5542
reloadTextFromFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5543
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5544
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5545
    ^ self reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5546
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5547
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5548
saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5549
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5550
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5551
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5552
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5553
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5554
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5555
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5556
     self saveAsToFile32x22Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5557
     ImageEditor openOnClass:self andSelector:#saveAsToFile32x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5558
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5559
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5560
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5561
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5562
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5563
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5564
        constantNamed:#'ToolbarIconLibrary class saveAsToFile32x22Icon'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5565
        ifAbsentPut:[(Depth4Image new) width: 32; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5566
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3@@@@@@@@@@@@@@@CQDMDP0@@@@@EUUAP@@@@@3L3L3L@@B@AAUUPD@@@@@MDP4QC@@@"@P
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5567
UUTA@@@@@CL3L3L"H"H"DEUU@P@@@@@4QCQDL"H"H"@@@@D@@@@@L3L3L2H"H"HQDQDQ@@@@@CQDMDP0@@H DP@@@P@@@@@3L3L3L@@B@AD@UPD@@@@@MDP4
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5568
QC@@@@@Q@ETA@@@@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5569
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194]; mask:((Depth1Image new) width: 32; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@C''RX\9BT)IPL%K"S@)L $I13FG\@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5570
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5571
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5572
saveImageToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5573
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5574
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5575
    ^ self saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5576
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5577
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5578
saveTextToFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5579
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5580
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5581
    ^ self saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5582
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
  5583
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5584
searchFileIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5585
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5586
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5587
    ^ self search20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5588
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5589
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5590
searchIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5591
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5592
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
  5593
    ^ self search20x20Icon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5594
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5595
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5596
shellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5597
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5598
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5599
    OperatingSystem isMSDOSlike ifTrue:[
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5600
        ^ self dosShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5601
    ].
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5602
    ^ self unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5603
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5604
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5605
stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5606
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5607
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5608
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5609
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5610
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5611
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5612
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5613
     self stxHomeIcon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5614
     ImageEditor openOnClass:self andSelector:#stxHomeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5615
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5616
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5617
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5618
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5619
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5620
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5621
        constantNamed:#'AbstractFileBrowser class stxHomeIcon'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5622
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(nil )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5623
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQICP!!DP@@@@@@DQICL4HQD@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5624
DQICL3MBDQ@@@@DQIFX3L3P!!DP@@DQICY#L3L6HQD@D"ICM&L3M&M@@A@RH$L3Y#M&L4@@D@@@P3L6L6L3P@@@@@ACL3Y&L3M@@@@@@DL3L6L3L4@@@@@@P3
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5625
L6X3L3P@@@@@ACL6L6L3M@@@@@@DM&L3M#L4@@@@@@Q&L3L3X3P@@@@@A&YDQDQ$Q@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192 100 128 255 0 200 48]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5626
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5627
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5628
unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5629
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5630
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
  5631
    ^ self shellWithoutText20x20Icon
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5632
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5633
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5634
viewDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5635
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5636
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5637
    ^ self viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5638
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5639
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5640
viewNoDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5641
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5642
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5643
    ^ self viewNoDetails16x16Icon
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5644
! !
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  5645
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5646
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-ImageEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5647
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5648
loadImageFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5649
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5650
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5651
    ^ self loadFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5652
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5653
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5654
newImageIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5655
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5656
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5657
    ^ self newImage24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5658
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5659
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  5660
saveImageAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  5661
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  5662
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  5663
    ^ self saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  5664
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  5665
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5666
saveImageAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5667
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5668
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5669
    ^ self saveAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5670
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5671
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5672
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-Launcher'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5673
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5674
displayScreenIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5675
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5676
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5677
    ^ self displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5678
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5679
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5680
editorIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5681
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5682
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5683
    ^ self editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5684
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5685
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5686
fontIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5687
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5688
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5689
    ^ self font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5690
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5691
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5692
garbageCollectIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5693
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5694
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5695
    ^ self garbageCollect24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5696
    "/ ^ self garbageCollect28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5697
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5698
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5699
helpIcon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5700
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5701
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5702
    ^ self help28x28Icon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5703
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5704
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5705
helpIcon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5706
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5707
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5708
    ^ self help28x28Icon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5709
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5710
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5711
helpIcon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5712
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5713
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5714
    ^ self help28x28Icon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5715
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5716
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5717
keyboardMappingIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5718
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5719
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5720
    ^ self keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5721
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5722
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5723
languagesIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5724
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5725
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5726
    ^ self languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5727
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5728
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5729
memoryIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5730
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5731
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5732
    ^ self memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5733
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  5734
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5735
saveImageIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5736
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5737
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5738
    ^ self saveImage24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5739
    "/ ^ self saveImage28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5740
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5741
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5742
startChangesBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5743
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5744
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5745
    ^ self changesBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5746
    "/ ^ self changesBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5747
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5748
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5749
startFileBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5750
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5751
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5752
    ^ self fileBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5753
    "/ ^ self fileBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5754
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5755
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5756
startImageEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5757
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5758
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5759
    ^ self imageEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5760
    "/ ^ self imageEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5761
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5762
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5763
startMenuEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5764
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5765
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5766
    ^ self menuEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5767
    "/ ^ self menuEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5768
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5769
3092
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  5770
startNewFileBrowserIcon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  5771
    <resource: #programImage>
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  5772
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  5773
    ^ self newFileBrowser24x24Icon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  5774
!
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
  5775
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5776
startNewSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5777
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5778
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5779
    ^ self newSystemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5780
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5781
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5782
startSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5783
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5784
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5785
    ^ self systemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5786
"/    ^ SystemBrowser defaultIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5787
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5788
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5789
startSystemBrowserOnHistoryClassIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5790
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5791
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5792
    ^ self systemBrowserClassHistory28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5793
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5794
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5795
startUIPainterIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5796
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5797
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5798
    ^ self uiPainter24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5799
    "/ ^ self uiPainter28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5800
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5801
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5802
startWorkspaceIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5803
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5804
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5805
    ^ self workspace24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5806
    "/ ^ self workspace28x28Icon
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  5807
!
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  5808
3171
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  5809
stxHelpIcon
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  5810
    <resource: #programImage>
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  5811
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  5812
    ^ self helpIcon2
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  5813
!
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
  5814
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  5815
stxSettings24x24Icon
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  5816
    <resource: #programImage>
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  5817
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
  5818
    ^ self stxSettings24x24Icon1
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5819
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5820
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5821
stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5822
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5823
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5824
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5825
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5826
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5827
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5828
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5829
     self stxSettings24x24Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5830
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5831
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5832
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5833
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5834
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5835
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5836
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5837
        constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon1'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5838
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5839
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@@@@@@@@@@@@@GA0@@@@@@@@@@@EAWA0BH"H"H"H"H@EAP@@BH"I*H"H"H@EAP@@BH"I&H"H
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5840
"X@EAP@@BH"I&H"H&H@EAP@@BH"H&("I"H@EAP@@BH"H"X"X"H@EAP@@BH"H"Z&H"H@EAP@@BH"H"I"H"H@E@C]0BH"H"Y"H"H@E@@@@BH"H&H&H"H@EAP\@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5841
BH")"H"("H@EAP\@BH*X"H"("H@EAP\@BI&H"H"I"H@E@CM0BH"H"H"H"H@E@C]0@@@@@@@@@@@E@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5842
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 255 0 0 100 100 100 25 25 25 0 204 51 0 168 39]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5843
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5844
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5845
stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5846
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5847
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5848
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5849
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5850
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5851
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5852
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5853
     self stxSettings24x24Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5854
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5855
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5856
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5857
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5858
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5859
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5860
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5861
        constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon2'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5862
        ifAbsentPut:[(Depth4Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5863
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@EAP@@@@@@@@@@@@@EAPB;.;.;.;.;,FA%APB;.;.;.;.;,FA @@B;.1F;.;.;,FA @@B;.1F;.;
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5864
,[,FA @@B;.1F;.;F;,FA @@B;.;D[.1.;,FA @@B;.;,[,[.;,FA @@B;.;,QF;.;,FA @@B;.;.1.;.;,F@IUPB;.;,Q.;.;,F@@@@B;.;F;F;.;,FA T@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5865
B;,Q.;,[.;,FA T@B;D[.;,[.;,FA T@B1F;.;.1.;,F@I%PB;.;.;.;.;,F@IUPB;.;.;.;.;,F@IUP@@@@@@@@@@@@@IUP@@@@@@@@@@@@@I%P@@@@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5866
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 127 127 0 168 39 0 204 51 25 25 25 100 100 100 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255 184 231 231]; mask:((Depth1Image new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@') ; yourself); yourself]
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5867
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  5868
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5869
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-MenuEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5870
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5871
copyMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5872
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5873
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5874
    ^ self copyMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5875
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5876
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5877
cutMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5878
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5879
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5880
    ^ self cutMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5881
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5882
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5883
newMenuIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5884
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5885
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5886
    ^ self newMenu24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5887
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5888
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5889
pasteMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5890
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5891
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5892
    ^ self pasteMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5893
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
  5894
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5895
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser'!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5896
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5897
addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5898
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5899
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5900
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5901
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5902
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5903
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5904
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5905
     self addBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5906
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5907
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5908
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5909
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5910
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5911
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5912
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5913
        constantNamed:#'SystemBrowser class addBreakPointIcon2'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5914
        ifAbsentPut:[(Depth2Image new) width: 12; height: 21; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'****/??>/:+>/%V>.TA..P@..P@..@@./ B>/:+>/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>****') ; colorMapFromArray:#[255 0 0 63 63 63 0 0 0 127 127 127]; mask:((Depth1Image new) width: 12; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5915
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5916
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5917
addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5918
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5919
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5920
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5921
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5922
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5923
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5924
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5925
     self addBuffer13x11Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5926
     ImageEditor openOnClass:self andSelector:#addBuffer13x11Icon1
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5927
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5928
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5929
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5930
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5931
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5932
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5933
        constantNamed:#'GenericToolbarIconLibrary class addBuffer13x11Icon1'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5934
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@;.;.;.; @N???/??8@C.;.;.;.@@Y&Y&Y&XP@FY&Y&Y&D@A&Y&Y&Y!!@@Y&Y&Y&XP@FY&Y&Y&D@@QDQDQDQ@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5935
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5936
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5937
addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5938
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5939
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5940
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5941
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5942
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5943
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5944
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5945
     self addBuffer16x16Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5946
     ImageEditor openOnClass:self andSelector:#addBuffer16x16Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5947
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5948
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5949
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5950
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5951
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5952
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5953
        constantNamed:#'GenericToolbarIconLibrary class addBuffer16x16Icon2'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5954
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5955
@@@@@@@@@@@ADQDPDQDQ@@D3L>@SL38@@SL38AL3O @@@@@@@@@@@@L3L3L3L3L@@3L3L3L3L0@CL3L6L3X3A L3L3M#M#M @3L3L3X6M @@@@@@@FY @@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5956
@@Y&Y&Y&@@@@@@Y&Y&@@@@@@A Y&@@@@@@A Y&A @@@@A @F@@Xb') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 192 192 192 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??;??/?>??;??/?>??;????>??;?? G?@C @U@BR@QDb') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5957
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5958
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5959
padLockBlackMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5960
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5961
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5962
    ^ self padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5963
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5964
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5965
padLockBlueMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5966
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5967
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5968
    ^ self padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5969
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5970
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5971
padLockGrayMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5972
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5973
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5974
    ^ self padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5975
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5976
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5977
padLockGreenMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5978
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5979
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5980
    ^ self padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5981
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5982
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5983
padLockRedMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5984
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5985
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5986
    ^ self padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5987
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  5988
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5989
removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5990
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5991
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5992
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5993
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5994
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5995
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5996
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5997
     self removeBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5998
     ImageEditor openOnClass:self andSelector:#removeBreakPointIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  5999
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6000
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6001
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6002
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6003
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6004
    ^Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6005
        constantNamed:#'SystemBrowser class removeBreakPointIcon2'
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6006
        ifAbsentPut:[(Depth2Image new) width: 12; height: 21; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'****/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>/:+>/%V>.TA..P@..P@..@@./ B>/:+>/??>****') ; colorMapFromArray:#[0 255 0 63 63 63 0 0 0 127 127 127]; mask:((Depth1Image new) width: 12; height: 21; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6007
! !
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
  6008
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6009
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser-classIcons'!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6010
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6011
autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6012
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6013
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6014
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6015
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6016
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6017
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6018
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6019
     self autoloadedClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6020
     ImageEditor openOnClass:self andSelector:#autoloadedClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6021
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6022
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6023
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6024
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6025
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6026
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6027
        constantNamed:#'GenericToolbarIconLibrary class autoloadedClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6028
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@HADQDB@@@B@QDQ@ @@@ DQDPH@@@H @@@B@@@BH"H"H @@@"@@@@H@@@H @ADB@@@@H@@Q@ @@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 194 194 194 129 129 129]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'_?A?<G?0_?A?<G?0_?A?<G?0_?@?<@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6029
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6030
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6031
containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6032
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6033
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6034
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6035
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6036
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6037
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6038
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6039
     self containerClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6040
     ImageEditor openOnClass:self andSelector:#containerClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6041
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6042
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6043
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6044
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6045
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6046
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6047
        constantNamed:#'GenericToolbarIconLibrary class containerClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6048
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'B;.0@K.;@@.;,@B;.0@K,@@@@K,@B;@@@@B;@@.0@@@@.0@K,@@@@K,@B;@@@@B;@@.0@@@@.0@K,@@@@K,@B;.0@K.;@@.;,@B;.0@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'^OA8<F@0XCA LF@0XCA LF@0^OA8<@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6049
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6050
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6051
enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6052
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6053
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6054
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6055
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6056
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6057
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6058
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6059
     self enumTypeBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6060
     ImageEditor openOnClass:self andSelector:#enumTypeBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6061
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6062
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6063
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6064
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6065
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6066
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6067
        constantNamed:#'GenericToolbarIconLibrary class enumTypeBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6068
        ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'(@@@NJ@@@C" @@@@(@@@@J(@J BB@B@@  @ NJ@@@@B @@@@(@@@@J@@@@@b') ; colorMapFromArray:#[0 0 0 127 127 127 255 0 0 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@F60[[@@@@@@@@@@@@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6069
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6070
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6071
errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6072
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6073
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6074
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6075
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6076
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6077
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6078
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6079
     self errorClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6080
     ImageEditor openOnClass:self andSelector:#errorClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6081
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6082
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6083
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6084
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6085
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6086
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6087
        constantNamed:#'GenericToolbarIconLibrary class errorClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6088
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6089
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6090
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6091
exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6092
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6093
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6094
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6095
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6096
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6097
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6098
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6099
     self exceptionClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6100
     ImageEditor openOnClass:self andSelector:#exceptionClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6101
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6102
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6103
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6104
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6105
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6106
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6107
        constantNamed:#'GenericToolbarIconLibrary class exceptionClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6108
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 110 110 110]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6109
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6110
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6111
nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6112
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6113
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6114
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6115
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6116
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6117
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6118
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6119
     self nameSpaceBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6120
     ImageEditor openOnClass:self andSelector:#nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6121
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6122
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6123
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6124
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6125
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6126
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6127
        constantNamed:#'GenericToolbarIconLibrary class nameSpaceBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6128
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@AO8C?DS:"?1D:(/<QN*J?DS*"/1D:(+<QN*J/DR*"+1AJ(*!!@DJJA@@T@E@@@UT@@@a') ; colorMapFromArray:#[0 0 0 190 190 0 194 194 194 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G#1??7??_?=??7??_?=??7??O?8_?@?8@>@b') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6129
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6130
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6131
notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6132
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6133
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6134
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6135
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6136
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6137
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6138
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6139
     self notificationClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6140
     ImageEditor openOnClass:self andSelector:#notificationClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6141
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6142
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6143
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6144
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6145
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6146
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6147
        constantNamed:#'GenericToolbarIconLibrary class notificationClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6148
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 0 127 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6149
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6150
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6151
queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6152
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6153
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6154
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6155
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6156
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6157
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6158
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6159
     self queryClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6160
     ImageEditor openOnClass:self andSelector:#queryClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6161
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6162
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6163
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6164
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6165
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6166
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6167
        constantNamed:#'GenericToolbarIconLibrary class queryClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6168
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 61 173 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6169
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6170
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6171
startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6172
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6173
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6174
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6175
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6176
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6177
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6178
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6179
     self startableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6180
     ImageEditor openOnClass:self andSelector:#startableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6181
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6182
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6183
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6184
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6185
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6186
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6187
        constantNamed:#'GenericToolbarIconLibrary class startableClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6188
        ifAbsentPut:[(Depth2Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'**J*NJ*"*#"*!!J(@*!!T*@J(DJ B*DR(@*!!T*NJ(*J B*O2(@*+.*@J*** @b') ; colorMapFromArray:#[0 0 0 127 127 127 255 0 0 255 255 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ @B@@\@C8@O @>@C8@H @>@A0@G@@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6189
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6190
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6191
visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6192
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6193
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6194
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6195
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6196
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6197
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6198
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6199
     self visualStartableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6200
     ImageEditor openOnClass:self andSelector:#visualStartableClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6201
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6202
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6203
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6204
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6205
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6206
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6207
        constantNamed:#'GenericToolbarIconLibrary class visualStartableClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6208
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@A@P@@@@9&XPE&XP@NY!!C E&D@C&DN; E!!@@9!!@N@AXP@NXP8N@VD@C&DN; E!!@@9!!A&XAXP@NXPY&@VD@C1DVI!!DQ@@@@D"HP@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6209
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6210
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6211
warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6212
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6213
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6214
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6215
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6216
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6217
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6218
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6219
     self warningClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6220
     ImageEditor openOnClass:self andSelector:#warningClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6221
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6222
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6223
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6224
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6225
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6226
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6227
        constantNamed:#'GenericToolbarIconLibrary class warningClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6228
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 127 0]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6229
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6230
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6231
webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6232
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6233
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6234
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6235
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6236
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6237
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6238
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6239
     self webServiceClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6240
     ImageEditor openOnClass:self andSelector:#webServiceClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6241
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6242
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6243
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6244
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6245
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6246
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6247
        constantNamed:#'GenericToolbarIconLibrary class webServiceClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6248
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@ADQD@@@@@DQDQD@@@@QDQDQD@@ACMDP3MD@@P3MDP3M@@DL3QCL3P@ADL4P3L4@@QCMDL3Q@@@QDQCMD@@@@QDQDP@@@@@QDQ@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C8@_0C? _?A?<G?0_?A?<C? G<@O @@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6249
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6250
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6251
windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6252
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6253
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6254
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6255
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6256
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6257
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6258
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6259
     self windowClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6260
     ImageEditor openOnClass:self andSelector:#windowClassBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6261
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6262
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6263
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6264
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6265
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6266
    ^Icon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6267
        constantNamed:#'GenericToolbarIconLibrary class windowClassBrowserIcon'
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6268
        ifAbsentPut:[(Depth4Image new) width: 13; height: 11; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@;.;.;.8P@N??????D@C/?????1@@;?????<P@N??????D@C/?????1@@;?????<P@N??????D@@QDQDQDQ@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127 170 170 170]; mask:((Depth1Image new) width: 13; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@@a') ; yourself); yourself]
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6269
! !
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
  6270
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6271
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-UIPainter'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6272
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6273
copyWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6274
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6275
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6276
    ^ self copy22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6277
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6278
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6279
cutWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6280
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6281
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6282
    ^ self cut22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6283
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6284
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6285
deleteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6286
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6287
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6288
    ^ self delete22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6289
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6290
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6291
loadFromMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6292
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6293
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6294
    ^ self loadFromMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6295
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6296
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6297
moveWidgetDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6298
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6299
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6300
    ^ self down22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6301
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6302
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6303
moveWidgetDownRightIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6304
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6305
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6306
    ^ self downRight22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6307
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6308
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6309
moveWidgetLeftDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6310
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6311
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6312
    ^ self leftDown22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6313
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6314
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6315
moveWidgetUpIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6316
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6317
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6318
    ^ self up22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6319
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6320
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6321
newWindowSpecIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6322
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6323
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6324
    ^ self newWindowSpec24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6325
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6326
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6327
pasteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6328
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6329
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6330
    ^ self paste22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6331
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6332
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6333
saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6334
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6335
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6336
    ^ self saveAsMethod22x22Icon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6337
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
  6338
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6339
saveAsMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6340
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6341
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6342
    ^ self saveAsMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6343
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
  6344
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6345
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-misc'!
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6346
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6347
newDataSetIcon
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6348
    <resource: #programImage>
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6349
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6350
    ^ self newDataSet24x24Icon
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6351
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6352
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6353
newRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6354
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6355
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6356
    ^ self newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6357
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6358
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6359
removeRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6360
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6361
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  6362
    ^ self cutMenuItem22x22Icon
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6363
! !
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
  6364
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6365
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6366
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6367
version
3506
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  6368
    ^ '$Header: /cvs/stx/stx/libwidg/GenericToolbarIconLibrary.st,v 1.52 2007-10-19 11:22:05 cg Exp $'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6369
! !
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
  6370
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
  6371
GenericToolbarIconLibrary initialize!