GenericToolbarIconLibrary.st
author Claus Gittinger <cg@exept.de>
Thu, 18 Jan 2018 17:02:16 +0100
changeset 6265 cee20d1e21a8
parent 6225 0122e4e6c587
child 6271 e296fa4b5ccb
permissions -rw-r--r--
#OTHER by cg code cleanup (beep handling)
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
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
     3
              All Rights Reserved
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    12
"{ Package: 'stx:libwidg' }"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
5238
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
    14
"{ NameSpace: Smalltalk }"
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
    15
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
Object subclass:#GenericToolbarIconLibrary
5257
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
    17
	instanceVariableNames:''
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
    18
	classVariableNames:''
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
    19
	poolDictionaries:''
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
    20
	category:'Interface-Smalltalk'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!GenericToolbarIconLibrary class methodsFor:'documentation'!
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
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
 COPYRIGHT (c) 2001 by eXept Software AG
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
    28
              All Rights Reserved
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 hereby transferred.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
documentation
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    A common place to keep commonly used icons.
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    (also: VW compatibility)
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    43
4095
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    44
    Every method found here returns as value an image instance, which can be
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    45
    directly used for labels, menus, etc.
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    46
    The use of external files for bitmap images is no longer considered good style,
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    47
    and all uses of them within ST/X are replaced by internal icons over the time.
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    48
    (the reason is that it makes packaging, deployment etc. much easier. 
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    49
    Also, systems which have a poor disk performance for small files (aka Windows) 
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    50
    suffer from accessing many small bitmap files. So performance is improved there).
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    51
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    52
    Notice: 
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    53
        now, ToolbarIconLibrary is a reference to the actual IconLibrary,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    54
        which will refer to either this class (GenericToolbarIconLibrary) or
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
    55
        one of its subclasses (especially: XPToolbarIconLibrary).
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
    56
4108
cf211d44ee4b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
    57
    The choice of which concrete iconLibrary class is actually used
4095
5d67cdd38915 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 4092
diff changeset
    58
    is done in the styleSheet, where the global variable ToolbarIconLibrary
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    59
    is set (see mswindowsXP.style as an example). By redefining individual icons
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    60
    in that concrete class, different view styles may provide different looks
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    61
    (try windowsXP vs. Windows95 looks, to see different icons).
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    62
    Please make sure, that no concrete icon library is used in specs (window and menu
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    63
    specs); only refer to ToolbarIconLibrary there, so you won't loose the ability to
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
    64
    change the look with another icon library.
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    68
!GenericToolbarIconLibrary class methodsFor:'class initialization'!
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    69
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    70
initialize
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    71
    ToolbarIconLibrary isNil ifTrue:[
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
    72
        ToolbarIconLibrary := self
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    73
    ]
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    74
! !
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
    75
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    76
!GenericToolbarIconLibrary class methodsFor:'compatibility-VW'!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    77
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
    78
visualFor:aKey
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
    79
    ^ self perform:aKey ifNotUnderstood:[nil]
3894
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    80
! !
695ab7122422 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3883
diff changeset
    81
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    82
!GenericToolbarIconLibrary class methodsFor:'image specs'!
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
    83
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    84
barResizeHorizontalIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    85
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    86
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    87
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    88
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    89
     the ImageEditor may not be able to read the specification."
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    90
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    91
     self barResizeHorizontalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
    92
     ImageEditor openOnClass:self andSelector:#barResizeHorizontalIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    93
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    94
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    95
    ^ Icon 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    96
        constantNamed:'GenericToolbarIconLibrary class barResizeHorizontalIcon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    97
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    98
            (Depth2Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
    99
                width:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   100
                height:19;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   101
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   102
                bitsPerSample:(#[ 2 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   103
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   104
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   105
                            fromPackedString:'@@@B@A@@@A@B@A@@@A@@@A@@@A@@@!!H@B!!J@J!!J B!!JC@!!H@@A@@@A@@@A@@@A@@@A@@@A@@@@@A');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   106
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   107
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   108
                            width:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   109
                            height:19;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   110
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   111
                                        fromPackedString:'@A<DG0P_AA<DG0P_AA<UG3V_]]<5''1T_AA<DG0P_AA<DG0P_@A<b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   112
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   113
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   114
        ]
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   115
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   116
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   117
barResizeVerticalIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   118
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   119
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   120
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   121
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   122
     the ImageEditor may not be able to read the specification."
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   123
    "
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   124
     self barResizeVerticalIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   125
     ImageEditor openOnClass:self andSelector:#barResizeVerticalIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   126
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   127
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   128
    ^ Icon 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   129
        constantNamed:'GenericToolbarIconLibrary class barResizeVerticalIcon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   130
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   131
            (Depth2Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   132
                width:19;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   133
                height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   134
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   135
                bitsPerSample:(#[ 2 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   136
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   137
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   138
                            fromPackedString:'@@@@@@@@@B@@@@@@*@@@@@J*@@@@@@@@@AUUUUUP@@@@@@@@@*(@@@@@*@@@@@@ @@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   139
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   140
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   141
                            width:19;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   142
                            height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   143
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   144
                                        fromPackedString:'@@@S@D@@@N@@@_@@@@@A_??@@@@@@_@@@N@@@D@D@@@H');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   145
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   146
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   147
        ]
4044
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   148
!
Claus Gittinger <cg@exept.de>
parents: 4040
diff changeset
   149
4346
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   150
bookmarks17x18
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   151
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   152
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   153
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   154
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   155
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   156
4346
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   157
    "
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   158
     self bookmarks17x18 inspect
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   159
     ImageEditor openOnClass:self andSelector:#bookmarks17x18
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   160
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   161
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   162
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   163
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   164
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   165
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   166
        constantNamed:'GenericToolbarIconLibrary bookmarks17x18'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   167
        ifAbsentPut:[(Depth4Image width:17 height:18) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   168
DQDQDQDQDQDPDQDQDQDQDQDVDQDQDA@QDQDPDQDQDC@QDQDPDQDQ@2LADQDPDQDQ@2LADQDPDP@@L"H0@ADPDCL3H"H#L0HPDPH"H"H"H DPDQ@!!DQDQHADP
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
   169
DQDBDQDR@QDPDQDBDQDR@QDQDQDBDRDR@QDQDQ@1H H!!LADTDQ@"@A@BHADPDRD@DQDP@RDPDQHQDQDQD!!DQDQDQDQDQDQDP') colorMapFromArray:#[240 76 0 240 151 26 255 213 5 245 234 120] mask:((ImageMask width:17 height:18) bits:(ByteArray fromPackedString:'@@@@@H@@@\@@@\@@@>@@@>@@_?<@_?<@O?8@G?0@C? @C? @C? @G?0@G70@OA8@D@P@@@@@'); yourself); yourself]
4346
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   170
!
bcf1e4b4d313 added: #bookmarks17x18
Claus Gittinger <cg@exept.de>
parents: 4345
diff changeset
   171
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   172
checkToggleOffEnteredIcon
6014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   173
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   174
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   175
    ^ self checkToggleOffIcon
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   176
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   177
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   178
checkToggleOffIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   179
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   180
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   181
    ^ self checkToggleOff13x13Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   182
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   183
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   184
checkToggleOnEnteredIcon
6014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   185
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   186
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   187
    ^ self checkToggleOnIcon
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   188
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   189
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   190
checkToggleOnIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   191
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   192
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   193
    ^ self checkToggleOn13x13Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   194
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   195
5138
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
   196
clearConsoleIcon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
   197
    <resource: #programImage>
5141
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   198
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   199
    ^ self clearConsole22x22Icon
5138
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
   200
!
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
   201
5363
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   202
directoryOpen18x18Icon
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   203
    <resource: #image>
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   204
    "This resource specification was automatically generated
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   205
     by the ImageEditor of ST/X."
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   206
    "Do not manually edit this!! If it is corrupted,
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   207
     the ImageEditor may not be able to read the specification."
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   208
    "
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   209
     self directoryOpen18x18Icon inspect
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   210
     ImageEditor openOnClass:self andSelector:#directoryOpen18x18Icon
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   211
     Icon flushCachedIcons"
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   212
    
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   213
    ^ Icon constantNamed:'XPToolbarIconLibrary class directoryOpen18x18Icon'
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   214
        ifAbsentPut:[
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   215
            (Depth8Image new)
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   216
                width:18;
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   217
                height:18;
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   218
                photometric:(#palette);
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   219
                bitsPerSample:(#[ 8 ]);
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   220
                samplesPerPixel:(1);
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   221
                bits:(ByteArray 
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   222
                            fromPackedString:'
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   223
@@@@@@@@@@@@@@@@@EMST5MS@IJRA0\G@@@@@@AST5MST5MSRQ=M)''MGMUA%L8>O#8=ST5MS]1^B (HW\WEZ]Q%[-H=ST5MS]8JB (JBEHJB (JB (=ST5MS
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   224
]5QTUEQTUEQTM $IBP$IBP$I](NC 8NC 8LIW@8$S4=NOC0%LXRDT"@F#8=!!^WM3\7N%_WHBF3>.+Z!!O)0UDP$IBP$JJRC @LE]#YB"B (JB (JB $HA''7AS
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   225
]F6V)B\''I2\''I2\''I2]Y$P5SWP>3"ADQDQDQDQDQDQDS&%MSQ'')KUUUUUUUUUUUUU[H *UMSF"HH,[F1,[F1,V-QHY@;T5MS(;L-!!XVE W8K*$TLJ)L@T5MS
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   226
QVE**71&QS-0G AST5MST5MSQTT9DJ@@T5MST5MST5MST5MST5MST5MST5MST5MST5MST5MS');
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   227
                colorMapFromArray:#[ 254 201 107 255 238 154 231 208 160 194 135 4 196 136 7 255 255 199 209 157 23 209 166 33 255 242 193 217 175 45 217 158 32 217 165 32 201 152 48 248 240 224 255 255 238 231 172 54 209 168 80 255 242 119 255 221 103 251 230 118 255 254 147 255 212 110 255 201 106 255 252 167 238 221 165 255 251 187 191 130 2 197 139 10 255 233 177 203 146 20 239 224 192 247 238 206 222 173 41 222 177 44 213 165 49 239 239 231 255 255 237 213 174 74 235 177 62 255 252 128 255 255 136 255 202 86 218 184 112 255 224 122 230 206 136 255 225 139 255 217 142 191 131 2 196 138 8 198 140 12 202 144 16 213 167 32 202 143 11 217 176 45 226 197 61 222 159 31 213 174 59 192 136 16 241 240 236 205 160 64 255 255 248 248 183 66 222 189 103 255 198 83 122 152 175 255 252 150 255 255 159 234 213 147 255 255 176 189 129 1 192 131 3 242 230 186 255 255 202 204 147 20 204 151 25 247 237 204 251 244 211 255 255 222 255 242 213 255 255 230 238 209 79 238 199 71 242 198 74 255 255 255 255 251 127 255 229 108 255 204 88 255 191 80 255 206 103 255 238 140 238 217 147 255 252 173 238 222 173 193 135 4 198 140 11 201 144 16 204 146 19 242 230 193 247 237 203 217 154 26 251 247 217 230 196 63 197 138 6 241 242 237 217 175 68 247 238 109 242 191 74 251 216 94 242 187 79 247 188 80 255 206 95 255 238 135 222 192 127 234 209 143 238 222 156 255 255 189 194 136 6 251 242 188 201 143 14 203 146 19 202 147 21 255 255 213 213 154 28 222 166 36 213 156 24 255 255 229 234 187 59 238 197 70 252 248 240 247 202 80 255 255 129 255 230 109 255 213 96 255 212 94 238 211 121 230 203 129 255 246 158 255 255 172 255 238 167 192 132 4 197 138 9 201 142 13 203 145 18 202 151 29 202 146 13 213 173 46 213 159 38 235 216 176 217 169 52 238 222 89 217 173 66 240 244 246 247 209 86 0 0 0 213 176 96 255 206 89 255 189 76 248 194 95 136 162 181 247 238 154 227 200 144 255 252 181 191 130 1 191 129 1 255 254 196 255 238 187 255 255 206 255 255 212 247 238 207 243 232 208 202 144 11 226 169 41 240 240 233 213 173 70 238 181 57 251 247 119 255 238 116 255 222 103 255 199 84 226 197 119 255 254 154 ];
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   228
                mask:((ImageMask new)
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   229
                            width:18;
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   230
                            height:18;
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   231
                            bits:(ByteArray 
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   232
                                        fromPackedString:'@@@@_@@@??0@??0@??0@???@???@???@??>@??>@??>@??<@??<@??8@??0@?<@@>@@@@@@@');
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   233
                            yourself);
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   234
                yourself
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   235
        ]
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   236
!
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
   237
5364
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   238
directoryOpenHalfGrey18x18Icon
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   239
    "This resource specification was automatically generated
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   240
     by the ImageEditor of ST/X."
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   241
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   242
    "Do not manually edit this!! If it is corrupted,
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   243
     the ImageEditor may not be able to read the specification."
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   244
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   245
    "
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   246
     self directoryOpenHalfGrey18x18Icon inspect
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   247
     ImageEditor openOnClass:self andSelector:#directoryOpenHalfGrey18x18Icon
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   248
     Icon flushCachedIcons
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   249
    "
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   250
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   251
    <resource: #image>
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   252
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   253
    ^Icon
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   254
        constantNamed:'GenericToolbarIconLibrary directoryOpenHalfGrey18x18Icon'
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   255
        ifAbsentPut:[(Depth8Image new) width:18; height:18; bits:(ByteArray fromPackedString:'
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   256
/+:>/+:>/+:>/+:>/%MST5MS/,WE2L#H/+:>/+9ST5MST5MS-;V:/L&8.\R?-,GA0\EST5MS.;7@0LB=3L3C1,/G/\EST5MS.<C@0LC@/\C@0LC@0LEST5MS
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   257
.<7M3\7M3\5TM $IBP$IBP$I4L;N3,;N3,8IW@8$S4=NOC0%4]_W42@F#8=!!^WM3\7N%_WHB5-#]+Z!!O)0UDP$IBP$JJRC @4-M#YB"B (JB (JB $HA''7AS
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   258
5]*V)B\''I2\''I2\''I2]Y$P5S5M&3"ADQDQDQDQDQDQDS&%MSQ'')KUUUUUUUUUUUUU[H *UMSF"HH,[F1,[F1,V-QHY@;T5MS(;L-!!XVE W8K*$TLJ)L@T5MS
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   259
QVE**71&QS-0G AST5MST5MSQTT9DJ@@T5MST5MST5MST5MST5MST5MST5MST5MST5MST5MS') ; colorMapFromArray:#[254 201 107 255 238 154 231 208 160 194 135 4 196 136 7 255 255 199 209 157 23 209 166 33 255 242 193 217 175 45 217 158 32 217 165 32 201 152 48 248 240 224 255 255 238 231 172 54 209 168 80 255 242 119 255 221 103 251 230 118 255 254 147 255 212 110 255 201 106 255 252 167 238 221 165 255 251 187 191 130 2 197 139 10 255 233 177 203 146 20 239 224 192 247 238 206 222 173 41 222 177 44 213 165 49 239 239 231 255 255 237 213 174 74 235 177 62 255 252 128 255 255 136 255 202 86 218 184 112 255 224 122 230 206 136 255 225 139 255 217 142 191 131 2 196 138 8 198 140 12 202 144 16 213 167 32 202 143 11 217 176 45 226 197 61 222 159 31 213 174 59 192 136 16 241 240 236 205 160 64 255 255 248 248 183 66 222 189 103 255 198 83 122 152 175 255 252 150 255 255 159 234 213 147 255 255 176 189 129 1 192 131 3 242 230 186 255 255 202 204 147 20 204 151 25 247 237 204 251 244 211 255 255 222 255 242 213 255 255 230 238 209 79 238 199 71 242 198 74 255 255 255 255 251 127 255 229 108 255 204 88 255 191 80 255 206 103 255 238 140 238 217 147 255 252 173 238 222 173 193 135 4 198 140 11 201 144 16 204 146 19 242 230 193 247 237 203 217 154 26 251 247 217 230 196 63 197 138 6 241 242 237 217 175 68 247 238 109 242 191 74 251 216 94 242 187 79 247 188 80 255 206 95 255 238 135 222 192 127 234 209 143 238 222 156 255 255 189 194 136 6 251 242 188 201 143 14 203 146 19 202 147 21 255 255 213 213 154 28 222 166 36 213 156 24 255 255 229 234 187 59 238 197 70 252 248 240 247 202 80 255 255 129 255 230 109 255 213 96 255 212 94 238 211 121 230 203 129 255 246 158 255 255 172 255 238 167 192 132 4 197 138 9 201 142 13 203 145 18 202 151 29 202 146 13 213 173 46 213 159 38 235 216 176 217 169 52 238 222 89 217 173 66 240 244 246 247 209 86 0 0 0 213 176 96 255 206 89 255 189 76 248 194 95 136 162 181 247 238 154 227 200 144 255 252 181 191 130 1 191 129 1 255 254 196 255 238 187 255 255 206 255 255 212 247 238 207 243 232 208 202 144 11 226 169 41 240 240 233 213 173 70 238 181 57 251 247 119 255 238 116 255 222 103 255 199 84 226 197 119 255 254 154 237 237 237 167 167 167 151 151 151 229 229 229 175 175 175 252 252 252 150 150 150 250 250 250 244 244 244 207 207 207 193 193 193 242 242 242 154 154 154 244 244 244 216 216 216 205 205 205 163 163 163 239 239 239 245 245 245 166 166 166 248 248 248 244 244 244 246 246 246 210 210 210 240 240 240 225 225 225 150 150 150 147 147 147 145 145 145 142 142 142 199 199 199 139 139 139 140 140 140 143 143 143 214 214 214 204 204 204 178 178 178 195 195 195 199 199 199 214 214 214 186 186 186]; mask:((ImageMask new) width:18; height:18; bits:(ByteArray fromPackedString:'@@@@_@@@??0@??0@??0@???@???@???@??>@??>@??>@??<@??<@??8@??0@?<@@>@@@@@@@') ; yourself); yourself]
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   260
!
4d6ddb950c35 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
   261
6047
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   262
editOverlay
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   263
    "This resource specification was automatically generated
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   264
     by the ImageEditor of ST/X."
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   265
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   266
    "Do not manually edit this!! If it is corrupted,
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   267
     the ImageEditor may not be able to read the specification."
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   268
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   269
    "
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   270
     self editOverlay inspect
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   271
     ImageEditor openOnClass:self andSelector:#editOverlay
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   272
     Icon flushCachedIcons
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   273
    "
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   274
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   275
    <resource: #image>
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   276
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   277
    ^Icon
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   278
        constantNamed:'GenericToolbarIconLibrary class editOverlay'
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   279
        ifAbsentPut:[(Depth4Image width:11 height:13) bits:(ByteArray fromPackedString:'@@@@@J.0@@@@@K-P@@@@B;UP@@@@.5UP@@@K-UU0@@B;UU]@@@,%UWZ @@H%U6* @KH"I@* @BH''\@* BR]0@@* A$@@@@* @@@@@@* ')
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   280
            colorMapFromArray:#[0 0 0 255 255 255 255 220 168 220 220 220 64 0 0 255 128 0 48 48 48 192 88 0 195 195 195 88 88 88 160 160 160 255 168 88]
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   281
            mask:((ImageMask width:11 height:13) bits:(ByteArray fromPackedString:'@F@@8@G @>@G8@? G<@_ C<@O A8@F@@@@@b'); yourself); yourself]
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   282
!
ee81da6eaeb2 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6017
diff changeset
   283
5886
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   284
onOffSliderIconOff
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   285
    "This resource specification was automatically generated
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   286
     by the ImageEditor of ST/X."
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   287
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   288
    "Do not manually edit this!! If it is corrupted,
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   289
     the ImageEditor may not be able to read the specification."
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   290
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   291
    "
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   292
     self onOffSliderIconOff inspect
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   293
     ImageEditor openOnClass:self andSelector:#onOffSliderIconOff
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   294
     Icon flushCachedIcons
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   295
    "
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   296
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   297
    <resource: #image>
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   298
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   299
    ^Icon
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   300
        constantNamed:'GenericToolbarIconLibrary class onOffSliderIconOff'
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   301
        ifAbsentPut:[(Depth8Image width:25 height:13) bits:(ByteArray fromPackedString:'
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   302
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+AA8^HQ(]GQ4]GQ4]BR<"AP@@@@@@@AXPDBLUE2()G (KB0,KB0 HBP$Y@@@@@@@^I1<SD1LSD1T^C2D!!
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   303
HRDOB!!(KB@D@@@@ HQ,SD0HB@!!LSCRD''LC@0I28^HQ(-@@@@IR8\A0HB@ HBA2P,I1,[J@@#CB\PF @@@B8''A \B@ HB@ \TK"8$IBP_E1,)I2DE@@@%I1PF
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   304
@ HB@ H\IB80EAPTC#D$F00,@@@@HB\*E@XB@!!L\E@@PJ!!PTEAPTLQ\MIP@@@@@0LBPNC!!PNC!!<''I3D1LSD1LSDWCQH@@@@@E#@''@A<_E0@''I1TUEQTUEQTU
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   305
@B@@@@@@@@@@@2\''I2\.I2\''I2\''I2\''IQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   306
            colorMapFromArray:#[189 189 190 215 218 214 255 255 255 172 172 173 118 120 119 227 228 228 248 248 248 251 251 251 36 37 37 21 22 24 71 71 75 50 50 50 160 158 159 180 182 187 238 238 239 82 80 80 103 103 103 207 207 207 225 226 219 254 254 254 242 241 242 209 209 211 233 233 236 216 217 217 250 250 250 168 169 168 59 60 61 200 200 200 244 244 245 9 12 15 109 109 109 222 223 223 217 215 214 91 90 91 122 122 122 178 177 178 229 229 229 161 161 163 250 250 251 139 139 139 191 196 200 171 170 171 202 204 206 179 179 179 117 118 118 109 111 110 128 128 128 58 58 58 149 149 150 233 233 234]
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   307
            mask:((ImageMask width:25 height:13) bits:(ByteArray fromPackedString:'@@@@_0??>G<???1?O??>_7???''=???9?_???_7???''=???9?O??>_3???G<O??!!?@@@@_0@a'); yourself); yourself]
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   308
!
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   309
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   310
onOffSliderIconOn
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   311
    "This resource specification was automatically generated
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   312
     by the ImageEditor of ST/X."
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   313
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   314
    "Do not manually edit this!! If it is corrupted,
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   315
     the ImageEditor may not be able to read the specification."
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   316
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   317
    "
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   318
     self onOffSliderIconOn inspect
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   319
     ImageEditor openOnClass:self andSelector:#onOffSliderIconOn
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   320
     Icon flushCachedIcons
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   321
    "
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   322
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   323
    <resource: #image>
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   324
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   325
    ^Icon
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   326
        constantNamed:'GenericToolbarIconLibrary class onOffSliderIconOn'
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   327
        ifAbsentPut:[(Depth8Image width:25 height:13) bits:(ByteArray fromPackedString:'
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   328
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"MA<8NC 8NC 8NA8OKR4GD0@@@@@@@@@*N@@7M3\7M3\7G"4FI $9H0<D@@@@@@@H@C\/B0,KE0,WE2D''
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   329
@0LC@0L&KPP@@@@$G2<KE0(]GQ4]GQTE@0L2L#HC@1H*D0@@CR<WGR (LB,+J2,!!E 82L#H2L 8.G@P@@A0WGR +MST)JR$)HQ$NL#H2L#HNDCXG@@@LB" +
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   330
JR@ HB@ HBDPFSH2L#H2E"86A@@@IA4+MR@ HB@ HB@%NQ@YL#HCE!!@3C0H@@@@XJ2$ HB@ HB@ DQ(.N#(PN#(''HP\@@@@@@CD5JR$)JR$)JR$1HSL''I0$3
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   331
HP4@@@@@@@@@KATUEQTUEQTUEQT6M"D6M!!P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   332
            colorMapFromArray:#[21 22 24 250 250 251 215 218 223 254 254 254 155 160 165 200 200 200 178 177 178 137 134 128 118 120 119 216 217 217 65 85 109 28 55 81 161 161 163 143 143 146 251 251 251 103 103 103 242 241 242 119 160 203 180 182 187 227 228 228 194 193 190 96 113 136 244 244 245 47 69 95 109 127 148 248 248 248 149 149 150 233 233 236 117 118 118 76 98 126 59 60 61 36 37 37 107 159 232 139 139 139 179 179 179 171 170 171 217 215 214 126 141 161 209 209 211 222 223 223 83 113 165 100 159 211 91 90 91 88 135 188 172 172 173 109 109 109 229 229 229 21 41 61 85 110 182 116 133 181 255 255 255 189 189 190 74 77 81 93 151 201 128 128 128 15 28 42 9 12 15 202 204 206 238 238 239]
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   333
            mask:((ImageMask width:25 height:13) bits:(ByteArray fromPackedString:'@@@@_0??>G<_??1?O??>_7???7=???=?_???_7???7=???=?O??>_1???G<O??!!?@@@@_0@a'); yourself); yourself]
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   334
!
b05ee633575d #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5824
diff changeset
   335
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   336
radioOffDisabledIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   337
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   338
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   339
    ^ self radioOffDisabled17x17Icon    
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   340
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   341
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   342
radioOffEnteredIcon
6014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   343
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   344
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   345
    ^ self radioOffIcon
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   346
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   347
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   348
radioOffIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   349
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   350
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   351
    ^ self radioOff17x17Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   352
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   353
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   354
radioOnDisabledIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   355
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   356
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   357
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   358
    ^ self radioOnDisabled17x17Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   359
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   360
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   361
radioOnEnteredIcon
6014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   362
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
   363
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   364
    ^ self radioOnIcon
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   365
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   366
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   367
radioOnIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   368
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   369
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   370
    ^ self radioOn17x17Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   371
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   372
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   373
scrollDownOffIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   374
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   375
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   376
    ^ self scrollDownOff16x16Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   377
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   378
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   379
scrollLeftOffIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   380
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   381
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   382
    ^ self scrollLeftOff16x16Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   383
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   384
5138
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
   385
scrollLockIcon
5141
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   386
    <resource: #programImage>
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   387
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   388
    ^ self scrollLock22x22Icon
5138
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
   389
!
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
   390
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   391
scrollRightOffIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   392
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   393
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   394
    ^ self scrollRightOff16x16Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   395
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   396
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   397
scrollUpOffIcon
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   398
    <resource: #programImage>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   399
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   400
    ^ self scrollUpOff16x16Icon
5469
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   401
!
9316f35ba70c #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5422
diff changeset
   402
5368
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   403
shiftToggleOff26x15
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   404
    "This resource specification was automatically generated
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   405
     by the ImageEditor of ST/X."
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   406
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   407
    "Do not manually edit this!! If it is corrupted,
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   408
     the ImageEditor may not be able to read the specification."
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   409
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   410
    "
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   411
     self shiftToggleOff26x15 inspect
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   412
     ImageEditor openOnClass:self andSelector:#shiftToggleOff26x15
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   413
     Icon flushCachedIcons
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   414
    "
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   415
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   416
    <resource: #image>
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   417
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   418
    ^Icon
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   419
        constantNamed:'GenericToolbarIconLibrary shiftToggleOff26x15'
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   420
        ifAbsentPut:[(Depth8Image new) width:26; height:15; bits:(ByteArray fromPackedString:'
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   421
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F @TE@@(EQTUEQTUEQTJC0@@@@@@@@@@@APTFRT[IQ$T
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   422
J1 XFA XBP$UEQX@@@@@@@@THRP*J"(*J!!,TG@@@@@@\J2 XBP@@@@@@E0@AJ"(*J"(*J!!<@HQHRD"DQA @(G @@@@@NDR$HJ"(*J"(H@0X!!@PD HA<LHQP(
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   423
@@@@@AD!!GQ4*J"(*J!!4&DQDCA@P$F0DYHP@@@@@@C"D&JR(*J"(*JPLQD"X&I \BA@DLA @@@@@WHRT&JR(*J"$&HAP%I"X&I"XBF1<#@@@@@@@RD PBA2XG
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   424
@"P!!HPHB@ HB@ L[G1@@@@@@@@@RHR@$IBP_HRD%IRT%IRT%IR@W@@@@@@@@@@@''HRD!!HQD!!HRD!!HRD!!HRDND@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   425
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[94 94 94 201 201 201 235 237 237 231 232 232 225 227 229 235 235 236 119 119 119 239 239 239 252 252 252 37 37 37 74 77 80 242 247 250 161 161 160 250 250 250 150 151 153 122 124 127 223 225 218 128 128 128 150 150 151 212 216 210 106 106 105 16 20 24 170 172 173 213 212 210 51 50 51 172 173 173 176 176 177 214 216 216 83 80 81 251 250 251 88 90 91 182 183 186 191 192 193 139 139 139 227 228 227 169 168 169 220 222 223 207 207 209 243 243 243 172 171 171 59 60 60 246 247 247 255 255 255 68 72 75]; mask:((Depth1Image new) width:26; height:15; bits:(ByteArray fromPackedString:'@@@@@@@@@@@G?? @C??>@A??? @???<@O???@C???0@???<@O???@A???0@O??8@A??<@@@@@@@@@@@@') ; yourself); yourself]
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   426
!
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   427
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   428
shiftToggleOnBlue26x15
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   429
    "This resource specification was automatically generated
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   430
     by the ImageEditor of ST/X."
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   431
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   432
    "Do not manually edit this!! If it is corrupted,
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   433
     the ImageEditor may not be able to read the specification."
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   434
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   435
    "
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   436
     self shiftToggleOnBlue26x15 inspect
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   437
     ImageEditor openOnClass:self andSelector:#shiftToggleOnBlue26x15
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   438
     Icon flushCachedIcons
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   439
    "
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   440
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   441
    <resource: #image>
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   442
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   443
    ^Icon
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   444
        constantNamed:'GenericToolbarIconLibrary shiftToggleOnBlue26x15'
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   445
        ifAbsentPut:[(Depth8Image new) width:27; height:15; bits:(ByteArray fromPackedString:'
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   446
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@_C@(-KR4WKR4-KS\TA1PQHP@@@@@@@@@@@CHWE1\#
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   447
H2L#H2L@EAH)L2$REA$@@@@@@@@@EA\#H2\''I1TUEQT^I HB@ HBL1PM@@@@@@@XB"LUBP$0LC@0LB A@ HB@ HB@#T2HP@@@@@OI1T0GQ4DA@PDAA8.NPHB
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   448
@ HBNPLGG0@@@@@GES@]AB0,K2</K186M HB@ HBM"(VDP@@@@@OBQ4DK2H"H"H"H!!8*K HB@ HBK LVCP@@@@@XL@P,H"H"H"H"H!!L)J"8B@ H.J"@TF0@@
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   449
@@@@IPP/H"H"H"H"H!!(\AS HJ  8I!!8P@@@@@@@@@BP,K2</K2</K2<$G"@&I"X5G#D@@@@@@@@@@@@+JB (JB (JB (JAXVG!!XVB0@@@@@@@@@@@@@@@@@@
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   450
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[68 72 75 201 201 201 255 255 255 231 232 232 97 132 184 225 227 229 235 235 236 119 119 119 239 239 239 65 85 109 37 37 37 197 198 199 74 77 80 146 148 149 250 250 250 150 151 153 129 129 129 126 122 111 172 173 173 136 149 166 106 106 105 46 68 94 128 128 128 16 20 24 213 212 210 162 162 163 119 156 198 214 219 227 150 150 151 88 115 164 139 139 139 176 176 177 191 192 193 227 228 227 113 161 232 19 34 51 120 140 179 114 131 152 220 222 223 28 52 77 100 118 137 207 207 209 243 243 243 172 171 171 96 152 199 2 2 2 246 247 247 103 160 209 68 101 141 143 143 144 94 94 94 214 216 216 242 247 250 182 183 186 251 250 251 59 60 60 235 237 237 252 252 252]; mask:((Depth1Image new) width:27; height:15; bits:(ByteArray fromPackedString:'@@@@@@@@@@@G??0@C??>@A???0@???>@O??? C???8@???>@O??? A???0@O??8@A??<@@@@@@@@@@@@') ; yourself); yourself]
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   451
!
eccacd90610c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5364
diff changeset
   452
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   453
sortIndicatorGreyIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   454
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   455
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   456
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   457
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   458
     the ImageEditor may not be able to read the specification."
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   459
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   460
     self sortIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   461
     ImageEditor openOnClass:self andSelector:#sortIndicatorGreyIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   462
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   463
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
   464
    ^ Icon constantNamed:#'GenericToolbarIconLibrary sortIndicatorGreyIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   465
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   466
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   467
                width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   468
                height:5;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   469
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   470
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   471
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   472
                bits:(ByteArray fromPackedString:'@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   473
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   474
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   475
                            width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   476
                            height:5;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   477
                            bits:(ByteArray fromPackedString:'@A@(UJ(b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   478
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   479
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   480
        ]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   481
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   482
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   483
sortIndicatorIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   484
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   485
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   486
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   487
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   488
     the ImageEditor may not be able to read the specification."
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   489
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   490
     self sortIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   491
     ImageEditor openOnClass:self andSelector:#sortIndicatorIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   492
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   493
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
   494
    ^ Icon constantNamed:'GenericToolbarIconLibrary sortIndicatorIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   495
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   496
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   497
                width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   498
                height:4;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   499
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   500
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   501
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   502
                bits:(ByteArray fromPackedString:'@@B@0 @a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   503
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   504
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   505
                            width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   506
                            height:4;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   507
                            bits:(ByteArray fromPackedString:'?''08D@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   508
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   509
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   510
        ]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   511
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   512
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   513
sortReverseIndicatorGreyIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   514
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   515
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   516
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   517
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   518
     the ImageEditor may not be able to read the specification."
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   519
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   520
     self sortReverseIndicatorGreyIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   521
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorGreyIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   522
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   523
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
   524
    ^ Icon constantNamed:#'GenericToolbarIconLibrary sortReverseIndicatorGreyIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   525
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   526
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   527
                width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   528
                height:5;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   529
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   530
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   531
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   532
                bits:(ByteArray fromPackedString:'@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   533
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   534
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   535
                            width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   536
                            height:5;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   537
                            bits:(ByteArray fromPackedString:'*%P(D@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   538
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   539
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   540
        ]
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   541
!
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   542
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   543
sortReverseIndicatorIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   544
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   545
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   546
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   547
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   548
     the ImageEditor may not be able to read the specification."
3983
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   549
    "
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   550
     self sortReverseIndicatorIcon inspect
Claus Gittinger <cg@exept.de>
parents: 3978
diff changeset
   551
     ImageEditor openOnClass:self andSelector:#sortReverseIndicatorIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   552
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   553
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
   554
    ^ Icon constantNamed:'GenericToolbarIconLibrary sortReverseIndicatorIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   555
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   556
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   557
                width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   558
                height:4;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   559
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   560
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   561
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   562
                bits:(ByteArray fromPackedString:'0(@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   563
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   564
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   565
                            width:7;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   566
                            height:4;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   567
                            bits:(ByteArray fromPackedString:'DC!!<? @a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   568
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   569
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
   570
        ]
4096
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   571
!
a16d36bcd5e6 added: #standaloneStartupIcon
Claus Gittinger <cg@exept.de>
parents: 4095
diff changeset
   572
5938
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   573
warn16x16Icon
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   574
    "This resource specification was automatically generated
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   575
     by the ImageEditor of ST/X."
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   576
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   577
    "Do not manually edit this!! If it is corrupted,
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   578
     the ImageEditor may not be able to read the specification."
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   579
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   580
    "
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   581
     self warn16x16Icon inspect
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   582
     ImageEditor openOnClass:self andSelector:#warn16x16Icon
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   583
     Icon flushCachedIcons
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   584
    "
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   585
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   586
    <resource: #image>
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   587
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   588
    ^Icon
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   589
        constantNamed:'GenericToolbarIconLibrary class warn16x16Icon'
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   590
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   591
@@@@@B@@@@@@@@@BH@@@@@@@@@H"@@@@@@@@H"H@@@@@@@@"D"@@@@@@@"DRH@@@@@@BH@D"@@@@@BHP@RH@@@@@H!!@AD"@@@@H!!D@DRH@@@@"DP@QD"@@@"
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   592
DQDQDRH@@BHQD@DQD"@BHQDP@QDRH@H"H"H"H"H"H"H"H"H"H"Hb')
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   593
            colorMapFromArray:#[0 0 0 255 255 255 255 0 0]
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   594
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@H@A @G@@<@C8@_ A?@O<@?8G? _?C?<O?9??''????<b'); yourself); yourself]
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   595
!
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   596
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   597
warn32x32Icon
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   598
    "This resource specification was automatically generated
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   599
     by the ImageEditor of ST/X."
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   600
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   601
    "Do not manually edit this!! If it is corrupted,
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   602
     the ImageEditor may not be able to read the specification."
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   603
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   604
    "
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   605
     self warn32x32Icon inspect
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   606
     ImageEditor openOnClass:self andSelector:#warn32x32Icon
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   607
     Icon flushCachedIcons
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   608
    "
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   609
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   610
    <resource: #image>
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   611
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   612
    ^Icon
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   613
        constantNamed:'GenericToolbarIconLibrary class warn32x32Icon'
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   614
        ifAbsentPut:[(Depth4Image width:32 height:32) bits:(ByteArray fromPackedString:'
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   615
@@@@@@@@@@H @@@@@@@@@@@@@@@@@@@BH@@@@@@@@@@@@@@@@@@@H"H@@@@@@@@@@@@@@@@@@BH"@@@@@@@@@@@@@@@@@@H"H"@@@@@@@@@@@@@@@@@BH"H 
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   616
@@@@@@@@@@@@@@@@H"H"H @@@@@@@@@@@@@@@BH"H"H@@@@@@@@@@@@@@@H"HQH"H@@@@@@@@@@@@@@BH"DRH"@@@@@@@@@@@@@@H"HQDRH"@@@@@@@@@@@@
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   617
@BH"D@D"H @@@@@@@@@@@@H"HP@@D"H @@@@@@@@@@@BH"D@@AH"H@@@@@@@@@@@H"HQ@@@QH"H@@@@@@@@@@BH"DP@@DRH"@@@@@@@@@@H"HQD@@ADRH"@@
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   618
@@@@@@@BH"DQ@@@QD"H @@@@@@@@H"HQDP@@DQD"H @@@@@@@BH"DQD@@ADQH"H@@@@@@@H"HQDQ@@@QDQH"H@@@@@@BH"DQDQ@ADQDRH"@@@@@@H"HQDQDQ
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   619
DQDQDRH"@@@@@BH"DQDQD@DQDQD"H @@@@H"HQDQDP@@DQDQD"H @@@BH"DQDQD@@ADQDQH"H@@@H"HQDQDQD@DQDQDQH"H@@BH"DQDQDQDQDQDQDRH"@@H"
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   620
H"H"H"H"H"H"H"H"H"@BH"H"H"H"H"H"H"H"H"H H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"Hb')
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   621
            colorMapFromArray:#[0 0 0 255 255 255 255 0 0]
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   622
            mask:((ImageMask width:32 height:32) bits:(ByteArray fromPackedString:'
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   623
@@F@@@@A @@@@<@@@@O@@@@G8@@@A>@@@@?0@@@O<@@@G? @@A?8@@@??@@@O?0@@G?>@@A?? @@??<@@O??@@G??8@A??>@@???0@O??<@G??? A???8@??
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   624
??@O???0G???>A???? ????<O????G????9????>??????????<b'); yourself); yourself]
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   625
!
075863332625 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 5886
diff changeset
   626
5150
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   627
worldIcon25_25
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   628
    "This resource specification was automatically generated
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   629
     by the ImageEditor of ST/X."
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   630
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   631
    "Do not manually edit this!! If it is corrupted,
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   632
     the ImageEditor may not be able to read the specification."
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   633
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   634
    "
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   635
     self worldIcon25_25 inspect
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   636
     ImageEditor openOnClass:self andSelector:#worldIcon25_25
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   637
     Icon flushCachedIcons
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   638
    "
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   639
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   640
    <resource: #image>
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   641
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   642
    ^Icon
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   643
        constantNamed:'GenericToolbarIconLibrary worldIcon25_25'
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   644
        ifAbsentPut:[(Depth8Image new) width:25; height:25; bits:(ByteArray fromPackedString:'
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   645
IRT%IRT%IS2&S&)V*0-VTV:2IRT%IRT%IRT%IRT%G*E"ZDJEQ36Y%S@:KTV2IRT%IRT%IRT%W4IOC$<IX")=_T\0N)6D( 0%IRT%IRT%RVE(W)=B-@8*O$^U
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   646
(%%;''SJDA2T%IRT%W6 9Z"(NBR,>]GQ4 25Y^96]L(R0IRT%,)QSU#4=OV%)GA(''BU09VW.]''SH2JKH%IR2QK(X=OYZVZU]NX+Q!!NU%;''Y42 ZMQIPE<$R:''
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   647
OS6V''46_I4I!!XS%Y^96]L(F,!!@1PX9FQ)34=OY<CI6J4XVEYVW.]''SJA+JL O4"Q$X"''OQ%V-KQ!!XVD9VS);''SH2 Z2#^S]HX9FQK(Y\X$<NX&D(S3(Q!!I42
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   648
 XF, TAZPT"Q$X"UWI!!>B:6"HZ8:N(P2L(F, [FLM4EHX6NK&E%YVYH_K0UTLY6]L#H2+@5,D56$PTEZXIM;^5$:XF=3!!I6]]WV[YAZBSF4&"TDOY)6]''SD1
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   649
LSF]''XRDL#JGYH<8PD1J+:"I"RP2L)6]''Y6]''SH2@(\2P8BI#60;EV:MV8&(@CH2L#H2L#H2L(]5)QBO"U,;H!!,%DS-["W^Z''SH2L#JA XF,(9@S"U,J(I8%
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   650
ITT"H *OSAL4MXF,+J2,+@ZWB ("(G**IRT%FJ@"B )[N;F,+J2A!!8D6N3,"(G(S@RT%IW=U^*B H#-UA*2, XD5URI:^''B)""T%IRT%QQM0^''* ^)2,+HD2
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   651
MW!!DQ PPQRT%IRT%IRU?JU!!0\@PV+J2,(15KR6\)_2T%IRT%IRT%IRV3T(92L92#E6-2#%J3IRT%IRT%IRT%IRT%IRTH]# #YQH8\QP%IRT%IRT%IP@a') ; colorMapFromArray:#[224 224 60 224 240 255 160 192 140 208 240 160 0 80 190 80 160 210 224 224 50 224 240 220 160 208 220 176 224 180 16 80 240 80 160 220 240 240 240 192 224 80 192 224 180 32 112 220 32 112 210 176 208 140 48 128 180 48 112 210 160 192 220 96 128 220 176 208 100 192 208 60 64 112 210 80 176 240 112 208 220 160 176 240 64 208 255 64 128 140 255 255 240 32 144 220 208 224 210 208 224 130 16 64 220 64 128 180 112 176 180 0 0 0 128 176 190 224 240 160 176 208 160 64 128 210 96 192 220 160 208 190 160 208 255 208 224 140 48 160 255 64 144 210 144 192 180 240 240 60 224 240 50 64 144 180 96 144 180 192 224 60 128 176 130 64 128 240 48 128 210 240 240 110 224 240 100 16 80 220 255 255 220 64 176 255 80 192 240 112 176 240 160 192 130 32 112 255 208 224 160 128 176 140 80 128 180 176 208 220 16 80 190 64 176 240 32 128 255 240 255 210 80 128 190 64 128 160 32 96 220 160 224 210 224 240 180 160 208 180 176 208 255 208 224 190 48 144 210 128 176 220 160 208 140 48 96 210 128 192 210 128 208 220 0 96 210 240 240 100 48 128 240 16 80 255 192 224 160 96 144 210 144 192 210 240 255 220 192 224 130 240 240 130 224 240 140 48 128 255 80 144 190 64 144 160 80 144 210 0 96 190 224 240 130 96 192 240 176 208 180 96 160 140 32 96 210 64 128 190 224 240 210 208 224 110 0 80 210 96 160 220 0 112 210 192 224 110 64 192 240 176 208 130 112 160 220 112 160 160 64 112 180 160 192 190 0 64 210 240 240 80 80 144 240 64 192 255 96 176 210 208 224 240 32 96 240 224 240 30 160 192 100 80 176 220 208 224 100 112 176 220 64 160 240 208 224 60 48 144 240 16 96 255 208 224 220 64 144 220 144 192 140 112 160 180 16 112 210 16 96 240 192 224 100 48 144 255 128 192 180 224 240 80 128 192 220 64 160 220 80 192 255 112 160 140 160 208 160 48 176 240 208 224 80 96 160 180 192 208 80 224 240 60 48 96 220 144 208 210 0 64 220 224 240 190 192 224 140 208 224 50 32 96 255 144 192 130 240 240 210 64 160 255 48 112 220 32 112 190 144 160 220 112 192 220 224 240 20 112 176 210 224 240 110 192 208 190 224 240 240 144 176 130 240 240 255 144 192 220 240 240 140]; mask:((ImageMask new) width:25; height:25; bits:(ByteArray fromPackedString:'@_?@_0_?<G<O??!!?G??<_3???''=???=?_???_?????????????????????????????????????????????????????=???=?_???_3???7<???9?G??<_0??
06f4df1245d1 class: GenericToolbarIconLibrary
sr
parents: 5143
diff changeset
   652
>G<C?>A?@O>@_0@a') ; yourself); yourself]
3978
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   653
! !
Claus Gittinger <cg@exept.de>
parents: 3977
diff changeset
   654
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   655
!GenericToolbarIconLibrary class methodsFor:'image specs-09x09'!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   656
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   657
breakpointBlueDisabled9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   658
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   659
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   660
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   661
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   662
     the ImageEditor may not be able to read the specification."
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   663
    "
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   664
     self breakpointBlueDisabled9x9 inspect
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   665
     ImageEditor openOnClass:self andSelector:#breakpointBlueDisabled9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   666
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   667
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   668
    ^ Icon 
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   669
        constantNamed:'GenericToolbarIconLibrary breakpointBlueDisabled9x9'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   670
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   671
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   672
                width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   673
                height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   674
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   675
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   676
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   677
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   678
                            fromPackedString:'H$QDQBADX7M$HDZTQIY@RDQDRDA@QDQ@PD!!DQD!!@R%QDV$@$(PF$HDQDQDH ');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   679
                colorMapFromArray:#[ 79 80 79 85 85 85 255 255 255 135 135 135 227 235 248 122 122 122 201 201 201 105 105 105 98 98 98 103 103 103 182 182 182 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   680
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   681
                            width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   682
                            height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   683
                            bits:(ByteArray fromPackedString:'@@@>@G\@X0AA@FL@]0@>@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   684
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   685
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   686
        ]
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   687
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   688
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   689
breakpointBlueEnabled9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   690
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   691
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   692
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   693
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   694
     the ImageEditor may not be able to read the specification."
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   695
    "
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   696
     self breakpointBlueEnabled9x9 inspect
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   697
     ImageEditor openOnClass:self andSelector:#breakpointBlueEnabled9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   698
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   699
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   700
    ^ Icon constantNamed:'GenericToolbarIconLibrary breakpointBlueEnabled9x9'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   701
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   702
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   703
                width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   704
                height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   705
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   706
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   707
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   708
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   709
                            fromPackedString:'D1L@@@@@@@@SD0@J@0HCB @S@@<ABP,I@P<@@@LHDQDQB@L@@@HDCP0RA@H@@@LEC 8NAPL@@@<AA!!@G@P<@D0@J@0HCB @@D0@@@@@@@ALS');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   710
                colorMapFromArray:#[ 255 252 255 46 85 127 38 78 114 54 98 139 108 165 203 107 159 195 131 175 205 130 174 204 130 172 200 152 185 208 169 202 225 180 209 229 83 149 190 90 154 194 115 169 204 144 188 216 145 188 215 152 193 219 89 154 192 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   711
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   712
                            width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   713
                            height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   714
                            bits:(ByteArray fromPackedString:'@@@>@G<@_0A?@G<@_0@>@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   715
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   716
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   717
        ]
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   718
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   719
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   720
breakpointDisabled9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   721
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   722
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   723
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   724
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   725
     the ImageEditor may not be able to read the specification."
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   726
    "
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   727
     self breakpointRedDisabled9x9 inspect
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   728
     ImageEditor openOnClass:self andSelector:#breakpointRedDisabled9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   729
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   730
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   731
    ^ Icon constantNamed:'GenericToolbarIconLibrary breakpointRedDisabled9x9'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   732
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   733
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   734
                width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   735
                height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   736
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   737
                bitsPerSample:(#[ 4 ]);
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   738
                samplesPerPixel:1;
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   739
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   740
                            fromPackedString:'H$QDQBADX7M$HDZTQIY@RDQDRDA@QDQ@PD!!DQD!!@R%QDV$@$(PF$HDQDQDH ');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   741
                colorMapFromArray:#[ 79 80 79 85 85 85 255 255 255 135 135 135 227 235 248 122 122 122 201 201 201 105 105 105 98 98 98 103 103 103 182 182 182 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   742
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   743
                            width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   744
                            height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   745
                            bits:(ByteArray fromPackedString:'@@@>@G\@X0AA@FL@]0@>@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   746
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   747
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   748
        ]
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   749
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   750
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   751
breakpointDisabledWithWarning9x9
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   752
    <resource: #image>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   753
    "This resource specification was automatically generated
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   754
     by the ImageEditor of ST/X."
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   755
    "Do not manually edit this!! If it is corrupted,
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   756
     the ImageEditor may not be able to read the specification."
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   757
    "
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   758
     self breakpointRedDisabledWithWarning9x9 inspect
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   759
     ImageEditor openOnClass:self andSelector:#breakpointRedDisabledWithWarning9x9
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   760
     Icon flushCachedIcons"
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   761
    
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   762
    ^ Icon 
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   763
        constantNamed:'GenericToolbarIconLibrary breakpointRedDisabledWithWarning9x9'
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   764
        ifAbsentPut:[
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   765
            (Depth4Image width:9 height:9)
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   766
                bits:(ByteArray 
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   767
                            fromPackedString:'DTQDQB@QX7M$HAFTQIY@DTQDRD@QQDQ@PAEDQD!!@R%QDV$@Q(@B$HAEDQDH ')
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   768
                    colorMapFromArray:#[ 79 80 79 255 0 0 255 255 255 135 135 135 227 235 248 122 122 122 201 201 201 105 105 105 98 98 98 103 103 103 182 182 182 ]
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   769
                    mask:((ImageMask width:9 height:9)
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   770
                            bits:(ByteArray fromPackedString:'0@C>@O\@80CA@NL@]0C>@L@@');
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   771
                            yourself);
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   772
                yourself
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   773
        ]
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   774
!
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   775
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   776
breakpointRedEnabled9x9
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   777
    <resource: #image>
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   778
    "This resource specification was automatically generated
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   779
     by the ImageEditor of ST/X."
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   780
    "Do not manually edit this!! If it is corrupted,
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   781
     the ImageEditor may not be able to read the specification."
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   782
    "
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   783
     self breakpointRedEnabled9x9 inspect
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   784
     ImageEditor openOnClass:self andSelector:#breakpointRedEnabled9x9
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   785
     Icon flushCachedIcons"
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   786
    
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   787
    ^ Icon constantNamed:'GenericToolbarIconLibrary breakpointRedEnabled9x9'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   788
        ifAbsentPut:[
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   789
            (Depth8Image new)
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   790
                width:9;
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   791
                height:9;
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   792
                photometric:(#palette);
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   793
                bitsPerSample:(#[ 8 ]);
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   794
                samplesPerPixel:(1);
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   795
                bits:(ByteArray 
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   796
                            fromPackedString:'D1L@@@@@@@@SD0@J@0HCB @S@@<ABP,I@P<@@@LHDQDQB@L@@@HDCP0RA@H@@@LEC 8NAPL@@@<AA!!@G@P<@D0@J@0HCB @@D0@@@@@@@ALS');
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   797
                colorMapFromArray:#[ 253 255 252 127 73 46 114 60 38 139 79 54 203 129 108 195 127 107 205 147 131 204 146 130 200 145 130 208 165 152 225 182 169 229 191 180 190 104 83 194 111 90 204 134 115 216 159 144 215 159 145 219 166 152 192 108 89 255 255 255 ];
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   798
                mask:((ImageMask new)
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   799
                            width:9;
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   800
                            height:9;
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   801
                            bits:(ByteArray fromPackedString:'@@@>@G<@_0A?@G<@_0@>@@@@');
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   802
                            yourself);
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   803
                yourself
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   804
        ]
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   805
!
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   806
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   807
breakpointRedEnabledWithWarning9x9
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   808
    "This resource specification was automatically generated
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   809
     by the ImageEditor of ST/X."
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   810
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   811
    "Do not manually edit this!! If it is corrupted,
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   812
     the ImageEditor may not be able to read the specification."
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   813
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   814
    "
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   815
     self breakpointRedEnabledWithWarning9x9 inspect
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   816
     ImageEditor openOnClass:self andSelector:#breakpointRedEnabledWithWarning9x9
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   817
     Icon flushCachedIcons
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   818
    "
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   819
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   820
    <resource: #image>
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   821
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   822
    ^Icon
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   823
        constantNamed:'GenericToolbarIconLibrary breakpointRedEnabledWithWarning9x9'
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   824
        ifAbsentPut:[(Depth8Image width:9 height:9) bits:(ByteArray fromPackedString:'D1L@@@@@@@@SD1LJ@0HCB @SD1LABP,I@P<@D1LHDQDQB@L@D1LDCP0RA@H@D1LEC 8NAPL@@@<AA!!@G@P<@D1LJ@0HCB @@D1L@@@@@@ALS')
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   825
            colorMapFromArray:#[253 255 252 127 73 46 114 60 38 139 79 54 203 129 108 195 127 107 205 147 131 204 146 130 200 145 130 208 165 152 225 182 169 229 191 180 190 104 83 194 111 90 204 134 115 216 159 144 215 159 145 219 166 152 192 108 89 255 0 0]
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
   826
            mask:((ImageMask width:9 height:9) bits:(ByteArray fromPackedString:'0@C>@O<@?0C?@O<@_0C>@L@@'); yourself); yourself]
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   827
!
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
   828
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   829
closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   830
    "This resource specification was automatically generated
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   831
     by the ImageEditor of ST/X."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   832
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   833
    "Do not manually edit this!! If it is corrupted,
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   834
     the ImageEditor may not be able to read the specification."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   835
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   836
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   837
     self closeIndicatorInTree9x9Icon inspect
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   838
     ImageEditor openOnClass:self andSelector:#closeIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   839
     Icon flushCachedIcons
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   840
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   841
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   842
    <resource: #image>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   843
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   844
    ^Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   845
        constantNamed:'GenericToolbarIconLibrary class closeIndicatorInTree9x9Icon'
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   846
        ifAbsentPut:[(Depth2Image new) width: 9; height: 9; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUU@Z*)@Z")@Z")@X@I-Z")@Z")KZ*)@UUU;') ; colorMapFromArray:#[0 0 0 128 128 128 255 255 255]; yourself]
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   847
!
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   848
5257
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   849
fullBreakPoint9x9Icon
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   850
    "This resource specification was automatically generated
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   851
     by the ImageEditor of ST/X."
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   852
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   853
    "Do not manually edit this!! If it is corrupted,
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   854
     the ImageEditor may not be able to read the specification."
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   855
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   856
    "
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   857
     self fullBreakPoint9x9Icon inspect
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   858
     ImageEditor openOnClass:self andSelector:#fullBreakPoint9x9Icon
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   859
     Icon flushCachedIcons
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   860
    "
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   861
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   862
    <resource: #image>
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   863
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   864
    ^Icon
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   865
        constantNamed:'GenericToolbarIconLibrary fullBreakPoint9x9Icon'
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   866
        ifAbsentPut:[(Depth4Image new) width:9; height:9; bits:(ByteArray fromPackedString:'L0L3@C@0Y5] L@:8FK8@M9DQ%3@54@CULC_AD\\0C+)B/ @0Y5] @@@CL0@@') ; colorMapFromArray:#[255 255 255 196 96 86 164 75 67 176 176 176 182 74 66 79 34 26 193 90 78 96 47 37 171 87 78 158 77 70 165 75 67 88 43 32 148 68 60 159 65 56 184 74 65]; mask:((Depth1Image new) width:9; height:9; bits:(ByteArray fromPackedString:'G@@>@G<@?8C? O>@_0@>@A0@') ; yourself); yourself]
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   867
!
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   868
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   869
lineBreakPoint9x9Icon
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   870
    "This resource specification was automatically generated
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   871
     by the ImageEditor of ST/X."
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   872
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   873
    "Do not manually edit this!! If it is corrupted,
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   874
     the ImageEditor may not be able to read the specification."
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   875
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   876
    "
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   877
     self lineBreakPoint9x9Icon inspect
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   878
     ImageEditor openOnClass:self andSelector:#lineBreakPoint9x9Icon
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   879
     Icon flushCachedIcons
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   880
    "
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   881
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   882
    <resource: #image>
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   883
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   884
    ^Icon
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   885
        constantNamed:'GenericToolbarIconLibrary lineBreakPoint9x9Icon'
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   886
        ifAbsentPut:[(Depth4Image new) width:9; height:9; bits:(ByteArray fromPackedString:'L0L3@C@0Y5] L@:8FK8@M9DQ%3@54QGULC_AD\\0C+)B/ @0Y5] @C@CL0L0') ; colorMapFromArray:#[255 255 255 196 96 86 164 75 67 176 176 176 182 74 66 79 34 26 193 90 78 96 47 37 171 87 78 158 77 70 165 75 67 88 43 32 148 68 60 159 65 56 184 74 65]; mask:((Depth1Image new) width:9; height:9; bits:(ByteArray fromPackedString:'G@@>@G<@?8C? O>@_0@>@A0@') ; yourself); yourself]
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   887
!
703ac623379b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5256
diff changeset
   888
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   889
lineTracePoint9x9Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   890
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   891
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   892
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   893
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   894
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   895
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   896
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   897
     self lineTracePoint9x9Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   898
     ImageEditor openOnClass:self andSelector:#lineTracePoint9x9Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   899
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   900
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   901
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   902
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   903
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   904
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   905
        constantNamed:'GenericToolbarIconLibrary lineTracePoint9x9Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   906
        ifAbsentPut:[(Depth4Image width:9 height:9) bits:(ByteArray fromPackedString:'L0L3@C@0Y5] L@:8FK8@M9DQ%3@54QGULC_AD\\0C+)B/ @0Y5] @C@CL0L0') colorMapFromArray:#[255 255 255 86 186 196 67 156 164 176 176 176 66 174 182 26 71 79 78 181 193 37 86 96 78 162 171 70 151 158 67 157 165 32 77 88 60 140 148 56 150 159 65 175 184] mask:((Depth1Image width:9 height:9) bits:(ByteArray fromPackedString:'G@@>@G<@?8C? O>@_0@>@A0@'); yourself); yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   907
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
   908
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   909
openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   910
    "This resource specification was automatically generated
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   911
     by the ImageEditor of ST/X."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   912
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   913
    "Do not manually edit this!! If it is corrupted,
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   914
     the ImageEditor may not be able to read the specification."
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   915
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   916
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   917
     self openIndicatorInTree9x9Icon inspect
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   918
     ImageEditor openOnClass:self andSelector:#openIndicatorInTree9x9Icon
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   919
     Icon flushCachedIcons
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   920
    "
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   921
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   922
    <resource: #image>
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   923
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   924
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
   925
        constantNamed:'GenericToolbarIconLibrary openIndicatorInTree9x9Icon'
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
   926
        ifAbsentPut:[(Depth2Image new) width:9; height:9; bits:(ByteArray fromPackedString:'UUU@Z*)@Z*)(Z*)HX@I@Z*)@Z*)@Z*)@UUU.') ; colorMapFromArray:#[0 0 0 128 128 128 255 255 255]; yourself]
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   927
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   928
4598
516223cbcfeb class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4597
diff changeset
   929
stopPoint9x9
5258
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   930
    "This resource specification was automatically generated
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   931
     by the ImageEditor of ST/X."
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   932
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   933
    "Do not manually edit this!! If it is corrupted,
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   934
     the ImageEditor may not be able to read the specification."
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   935
4598
516223cbcfeb class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4597
diff changeset
   936
    "
516223cbcfeb class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4597
diff changeset
   937
     self stopPoint9x9 inspect
516223cbcfeb class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4597
diff changeset
   938
     ImageEditor openOnClass:self andSelector:#stopPoint9x9
5258
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   939
     Icon flushCachedIcons
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   940
    "
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   941
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   942
    <resource: #image>
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   943
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   944
    ^Icon
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   945
        constantNamed:'GenericToolbarIconLibrary stopPoint9x9'
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
   946
        ifAbsentPut:[(Depth4Image new) width:9; height:9; bits:(ByteArray fromPackedString:'L0L3@C@0Y5] L@:8FK8@M9DQ%3@54@CULC_AD\\0C+)B/ @0Y5] @C@CL0L0') ; colorMapFromArray:#[255 255 255 196 96 86 164 75 67 176 176 176 182 74 66 79 34 26 193 90 78 96 47 37 171 87 78 158 77 70 165 75 67 88 43 32 148 68 60 159 65 56 184 74 65]; mask:((Depth1Image new) width:9; height:9; bits:(ByteArray fromPackedString:'G@@>@G<@?8C? O>@_0@>@A0@') ; yourself); yourself]
4598
516223cbcfeb class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4597
diff changeset
   947
!
516223cbcfeb class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4597
diff changeset
   948
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   949
tracepointBlue9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   950
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   951
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   952
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   953
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   954
     the ImageEditor may not be able to read the specification."
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   955
    "
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   956
     self tracepointBlue9x9 inspect
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
   957
     ImageEditor openOnClass:self andSelector:#tracepointBlue9x9
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   958
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   959
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   960
    ^ Icon constantNamed:'GenericToolbarIconLibrary tracepointBlue9x9'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   961
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   962
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   963
                width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   964
                height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   965
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   966
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   967
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   968
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   969
                            fromPackedString:'D1L@@@@@@@@SD0@J@0HCB @S@@<ABP,I@P<@@@LHDQDQB@L@@@HDCP0RA@H@@@LEC 8NAPL@@@<AA!!@G@P<@D0@J@0HCB @@D0@@@@@@@ALS');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   970
                colorMapFromArray:#[ 254 252 255 46 104 127 38 96 114 54 118 139 108 187 203 107 179 195 131 193 205 130 192 204 130 188 200 152 198 208 169 215 225 180 220 229 83 174 190 90 178 194 115 189 204 144 205 216 145 204 215 152 208 219 89 178 192 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   971
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   972
                            width:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   973
                            height:9;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   974
                            bits:(ByteArray fromPackedString:'@@@>@G<@_0A?@G<@_0@>@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   975
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   976
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
   977
        ]
4205
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   978
! !
9ebe97f40c57 tree control icons
Claus Gittinger <cg@exept.de>
parents: 4200
diff changeset
   979
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
   980
!GenericToolbarIconLibrary class methodsFor:'image specs-10x11'!
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
   981
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   982
ledDarkRed14x14
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   983
    "This resource specification was automatically generated
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   984
     by the ImageEditor of ST/X."
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   985
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   986
    "Do not manually edit this!! If it is corrupted,
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   987
     the ImageEditor may not be able to read the specification."
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   988
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   989
    "
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   990
     self ledDarkRed14x14 inspect
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   991
     ImageEditor openOnClass:self andSelector:#ledDarkRed14x14
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   992
     Icon flushCachedIcons
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   993
    "
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   994
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   995
    <resource: #image>
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   996
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   997
    ^Icon
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   998
        constantNamed:'GenericToolbarIconLibrary ledDarkRed14x14'
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
   999
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1000
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DB@0DA@0HA@@@@@@DAA@TFA0\FAPPA@@@@@P IB ,LC@,JBP A@@@ACP8ODADQD@<NCPD@@@DRD1PU
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1001
E!!XUEALR@P@@@Q\XFQ([F1,\FA\A@@@AGQ ^G2@!!HRHXGPD@@@D#IBT&I2\(IRP#@P@@@PD)G2(+J20 KPDA@@@@@PD.K3@0K28A@PD@@@@@@PD1L#H1@PD@
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1002
@@@@@@@@@PDA@PDA@P@@@@@a') ; colorMapFromArray:#[76 94 60 46 12 10 90 75 80 64 39 40 80 59 60 60 1 0 92 52 50 106 68 70 90 74 75 62 1 0 104 56 55 118 86 85 126 103 105 68 37 40 82 18 20 106 48 50 110 58 60 106 47 45 56 11 10 92 7 5 98 15 15 104 24 25 106 24 25 60 10 10 90 0 0 104 8 10 110 9 10 112 9 10 106 8 10 72 33 35 114 0 0 118 0 0 120 0 0 122 0 0 116 0 0 88 63 65 92 0 0 127 15 15 127 4 5 127 12 10 127 6 5 94 45 45 127 35 35 127 52 50 127 41 40 96 45 45 98 56 60 110 28 30 122 20 20 90 93 95 86 89 95]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?@G>@?<C?0O?H?<C?0O?@_8@?@A8@@@@@a') ; yourself); yourself]
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1003
!
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1004
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1005
ledGrayedRed10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1006
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1007
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1008
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1009
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1010
     the ImageEditor may not be able to read the specification."
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1011
    "
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1012
     self ledGrayedRed10x11 inspect
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1013
     ImageEditor openOnClass:self andSelector:#ledGrayedRed10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1014
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1015
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1016
    ^ Icon constantNamed:'GenericToolbarIconLibrary ledGrayedRed10x11'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1017
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1018
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1019
                width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1020
                height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1021
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1022
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1023
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1024
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1025
                            fromPackedString:'
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1026
@@DB@0DA@0HA@@DDAPXGA0XEA@DHBP(KC@0KB $HCP8ODADQD@<NCQHSEATVE!!TTD1HWFA$ZF1,[GA WGQ ^G2@!!HRHXGRL$IRX''I2 %IBLAJQ<*J2,,HB4A
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1027
@PD.K3@0K28A@P@A@SD2L#DA@P@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1028
                colorMapFromArray:#[ 165 174 157 150 133 132 172 165 167 159 147 147 167 157 157 157 128 127 173 153 152 180 161 162 172 164 165 158 128 127 179 155 155 186 170 170 190 179 180 161 146 147 168 136 137 180 151 152 182 156 157 180 151 150 155 133 132 173 131 130 176 135 135 179 139 140 180 139 140 157 132 132 172 127 127 179 131 132 182 132 132 183 132 132 180 131 132 163 144 145 184 127 127 186 127 127 187 127 127 188 127 127 185 127 127 171 159 160 173 127 127 191 135 135 191 129 130 191 133 132 191 130 130 174 150 150 191 145 145 191 153 152 191 148 147 175 150 150 176 155 157 182 141 142 188 137 137 172 174 175 170 172 175 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1029
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1030
                            width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1031
                            height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1032
                            bits:(ByteArray fromPackedString:'O0A? O?@?<C?0O?@?<C?0G>@O0@^@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1033
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1034
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1035
        ]
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1036
!
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1037
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1038
ledGrayedRed14x14
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1039
    "This resource specification was automatically generated
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1040
     by the ImageEditor of ST/X."
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1041
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1042
    "Do not manually edit this!! If it is corrupted,
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1043
     the ImageEditor may not be able to read the specification."
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1044
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1045
    "
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1046
     self ledGrayedRed14x14 inspect
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1047
     ImageEditor openOnClass:self andSelector:#ledGrayedRed14x14
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1048
     Icon flushCachedIcons
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1049
    "
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1050
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1051
    <resource: #image>
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1052
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1053
    ^Icon
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1054
        constantNamed:'GenericToolbarIconLibrary ledGrayedRed14x14'
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1055
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1056
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DB@0DA@0HA@@@@@@DAA@TFA0\FAPPA@@@@@P IB ,LC@,JBP A@@@ACP8ODADQD@<NCPD@@@DRD1PU
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1057
E!!XUEALR@P@@@Q\XFQ([F1,\FA\A@@@AGQ ^G2@!!HRHXGPD@@@D#IBT&I2\(IRP#@P@@@PD)G2(+J20 KPDA@@@@@PD.K3@0K28A@PD@@@@@@PD1L#H1@PD@
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1058
@@@@@@@@@PDA@PDA@P@@@@@a') ; colorMapFromArray:#[165 174 157 150 133 132 172 165 167 159 147 147 167 157 157 157 128 127 173 153 152 180 161 162 172 164 165 158 128 127 179 155 155 186 170 170 190 179 180 161 146 147 168 136 137 180 151 152 182 156 157 180 151 150 155 133 132 173 131 130 176 135 135 179 139 140 180 139 140 157 132 132 172 127 127 179 131 132 182 132 132 183 132 132 180 131 132 163 144 145 184 127 127 186 127 127 187 127 127 188 127 127 185 127 127 171 159 160 173 127 127 191 135 135 191 129 130 191 133 132 191 130 130 174 150 150 191 145 145 191 153 152 191 148 147 175 150 150 176 155 157 182 141 142 188 137 137 172 174 175 170 172 175]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?@G>@?<C?0O?H?<C?0O?@_8@?@A8@@@@@a') ; yourself); yourself]
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1059
!
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1060
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1061
ledGreen10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1062
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1063
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1064
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1065
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1066
     the ImageEditor may not be able to read the specification."
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1067
    "
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1068
     self ledGreen10x11 inspect
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1069
     ImageEditor openOnClass:self andSelector:#ledGreen10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1070
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1071
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1072
    ^ Icon constantNamed:'GenericToolbarIconLibrary ledGreen10x11'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1073
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1074
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1075
                width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1076
                height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1077
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1078
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1079
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1080
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1081
                            fromPackedString:'
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1082
K @+A0@@A2,@K @Q@QT/K1TADP@*@"T:P4L:IPH*B ,#LBX&LBLKB LIC!!HSFAHNBPLDAP<TFQ,[D@TDCP ZG2\)KA0FCR LKSD4M#H-CB @GQX7PTT;E2D@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1083
@C .G"@$H"88@B8@@CT3L3T@@B8b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1084
                colorMapFromArray:#[ 24 86 20 32 110 0 36 116 0 40 108 20 48 114 20 60 172 0 72 172 0 76 128 80 76 172 0 76 174 10 80 134 80 80 156 40 88 164 0 92 144 70 96 188 30 104 200 20 108 200 20 116 158 120 116 198 50 120 202 50 120 206 20 124 180 100 124 198 0 124 200 0 124 202 50 124 208 20 124 214 0 128 210 20 128 214 0 132 174 90 132 196 60 132 218 0 132 218 40 136 176 90 136 198 60 136 206 100 136 224 60 140 204 110 140 208 100 140 220 0 144 178 130 144 222 0 148 182 150 148 182 160 148 224 0 148 230 0 152 188 120 156 206 140 156 216 120 156 234 0 164 236 0 172 178 190 176 240 30 180 186 190 184 244 40 184 244 70 188 194 200 192 200 210 192 234 170 192 248 90 196 202 210 208 216 220 212 218 230 212 220 230 216 222 230 216 255 120 220 226 240 220 248 210 224 232 240 224 255 130 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1085
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1086
                            width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1087
                            height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1088
                            bits:(ByteArray fromPackedString:'O0A? O?@?<C?0O?@?<C?0G>@_8@^@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1089
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1090
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1091
        ]
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1092
!
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1093
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1094
ledGrey10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1095
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1096
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1097
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1098
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1099
     the ImageEditor may not be able to read the specification."
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1100
    "
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1101
     self ledGrey10x11 inspect
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1102
     ImageEditor openOnClass:self andSelector:#ledGrey10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1103
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1104
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1105
    ^ Icon constantNamed:'GenericToolbarIconLibrary ledGrey10x11'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1106
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1107
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1108
                width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1109
                height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1110
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1111
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1112
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1113
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1114
                            fromPackedString:'
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1115
@@@B@0PD@0H@@@@EA \HB@\FAP@IB ,LCP4LB0(IC1@QD!!LTD!!DPC1XWFA$ZF1$\E1X^G2@!!H"L#IA<^I"\(JR(+J2 ,I"4.K1H0LSH/K#L@MSX7NC$:M#,@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1116
@C0=O#=@PS4<@@@@@DP3L4P@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1117
                colorMapFromArray:#[ 170 170 170 235 235 235 179 179 179 123 123 123 83 83 83 154 154 154 105 105 105 178 178 178 203 203 203 179 179 179 111 111 111 197 197 197 226 226 226 241 241 241 230 230 230 132 132 132 151 151 151 197 197 197 208 208 208 199 199 199 200 200 200 225 225 225 107 107 107 163 163 163 177 177 177 187 187 187 188 188 188 189 189 189 175 175 175 221 221 221 118 118 118 159 159 159 184 184 184 189 189 189 192 192 192 193 193 193 185 185 185 218 218 218 146 146 146 163 163 163 194 194 194 197 197 197 198 198 198 201 201 201 162 162 162 176 176 176 160 160 160 206 206 206 217 217 217 220 220 220 210 210 210 177 177 177 201 201 201 168 168 168 182 182 182 225 225 225 240 240 240 242 242 242 229 229 229 169 169 169 192 192 192 181 181 181 183 183 183 200 200 200 206 206 206 184 184 184 217 217 217 198 198 198 184 184 184 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1118
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1119
                            width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1120
                            height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1121
                            bits:(ByteArray fromPackedString:'O0A? O?@?<C?0O?@?<C?0G>@_8@^@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1122
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1123
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1124
        ]
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1125
!
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1126
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1127
ledRed10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1128
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1129
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1130
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1131
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1132
     the ImageEditor may not be able to read the specification."
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1133
    "
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1134
     self ledRed10x11 inspect
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1135
     ImageEditor openOnClass:self andSelector:#ledRed10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1136
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1137
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1138
    ^ Icon constantNamed:'GenericToolbarIconLibrary ledRed10x11'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1139
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1140
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1141
                width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1142
                height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1143
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1144
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1145
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1146
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1147
                            fromPackedString:'
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1148
B@@OAP@@AP<@B@@I@!!L#H1LBBP@NAA41MST1GPPNA ("JRD!!JRHJA DRFA0 HA0XD DCCQ,''J2,+G04CA04-LCH3L2<MA00QNSX8NC\9DP0@EC@:OC0;L!!X@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1149
@@@YJCP4JA$@@@ @@A@KB1@@@@ b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1150
                colorMapFromArray:#[ 92 24 20 112 22 20 120 2 0 120 20 20 124 2 0 128 78 80 136 74 80 144 66 70 152 188 120 160 118 120 164 36 40 172 178 190 176 126 130 180 0 0 180 148 150 180 150 160 180 186 190 184 0 0 184 14 10 184 104 100 188 90 90 188 194 200 192 90 90 192 200 210 196 30 30 196 112 120 196 202 210 208 16 20 208 48 50 208 112 110 208 216 220 212 16 20 212 48 50 212 94 90 212 96 100 212 136 140 212 218 230 212 220 230 216 222 230 220 18 20 220 56 60 220 116 120 220 226 240 224 18 20 224 232 240 228 0 0 228 236 250 232 0 0 236 0 0 236 172 170 240 0 0 244 0 0 244 40 40 252 206 210 255 8 10 255 12 10 255 24 20 255 30 30 255 70 70 255 82 80 255 104 100 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1151
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1152
                            width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1153
                            height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1154
                            bits:(ByteArray fromPackedString:'O0A? O?@?<C?0O?@?<C?0G>@O0@^@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1155
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1156
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1157
        ]
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1158
!
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1159
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1160
ledYellow10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1161
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1162
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1163
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1164
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1165
     the ImageEditor may not be able to read the specification."
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1166
    "
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1167
     self ledYellow10x11 inspect
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1168
     ImageEditor openOnClass:self andSelector:#ledYellow10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1169
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1170
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1171
    ^ Icon constantNamed:'GenericToolbarIconLibrary ledYellow10x11'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1172
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1173
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1174
                width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1175
                height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1176
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1177
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1178
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1179
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1180
                            fromPackedString:'
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1181
@P@R@ @@@!!H@@P@JA2L3L2LGB @SBS@?QTT?L@$SAQ,2NSP6NSH[APL%JR0.K20(IPLHIB,1MS\7KRPHCRH8N#,<OC !!CP< OS9AP$@=HA@@EB)CQ$]DJ!!T@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1182
@@,QGBX''GQDK@@D@@@XDA@X@@@Db');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1183
                colorMapFromArray:#[ 144 64 20 152 188 120 168 108 80 172 90 20 172 178 190 180 118 80 180 186 190 184 84 0 184 102 20 188 92 0 188 144 120 188 194 200 192 200 210 196 134 70 196 202 210 200 172 130 200 174 130 200 182 120 204 170 160 204 172 150 208 162 90 208 164 90 208 216 220 212 218 230 212 220 230 216 222 230 220 226 240 224 134 40 224 184 60 224 186 60 224 232 240 228 236 250 236 150 0 236 152 0 236 154 0 236 162 100 240 146 0 240 150 10 244 206 40 244 212 60 248 164 30 248 166 30 252 178 0 252 178 20 252 178 50 252 180 20 252 180 50 252 182 50 252 184 110 252 186 20 252 186 100 252 190 140 255 188 100 255 190 20 255 190 100 255 192 20 255 196 0 255 200 120 255 202 0 255 204 0 255 208 0 255 216 0 255 220 0 255 222 170 255 224 0 255 230 30 255 234 40 255 236 70 255 240 90 255 240 210 255 254 120 255 255 130 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1184
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1185
                            width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1186
                            height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1187
                            bits:(ByteArray fromPackedString:'O0A? O?@?<C?0O?@?<C?0G>@_8@^@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1188
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1189
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1190
        ]
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1191
! !
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
  1192
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1193
!GenericToolbarIconLibrary class methodsFor:'image specs-12x12'!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1194
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1195
dart12x12Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1196
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1197
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1198
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1199
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1200
     the ImageEditor may not be able to read the specification."
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1201
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1202
     self dart12x12Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1203
     ImageEditor openOnClass:self andSelector:#dart12x12Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1204
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1205
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1206
    ^ Icon constantNamed:'GenericToolbarIconLibrary dart12x12Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1207
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1208
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1209
                width:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1210
                height:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1211
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1212
                bitsPerSample:(#( 8 ));
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1213
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1214
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1215
                            fromPackedString:'
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1216
@@@@@@@@@ @@@@@@@@@@@@ FB0(@@@@@@@@@D@(KB0,O@@@@@@@ZGA8^G!!8^G0@@@@@!!B2P%IRT%IR,@@BD%H0,$IRT%IR(''MBT^B0,KIBT%IR<*@B8^H0,K
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1217
B2P%IRT*@@@9B0,KB0,$IRT*@@@@OADFA ,KO"T*@@@@@A@IO@XFA$ME@@@@@@@PD@$IDC,@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1218
                colorMapFromArray:#[ 0 0 0 176 216 240 48 208 200 15 216 184 144 216 224 48 216 200 0 208 184 31 216 200 191 216 240 95 216 208 0 216 184 0 208 176 16 216 184 143 216 224 32 216 200 0 224 200 80 216 208 15 208 184 79 216 200 47 176 200 0 168 208 0 152 200 0 152 184 0 160 200 16 168 200 112 192 240 95 160 216 0 192 208 15 168 184 0 112 200 0 120 200 0 160 240 31 176 240 0 128 208 0 184 184 0 216 176 0 160 184 0 128 200 0 144 208 0 168 240 15 168 240 32 144 208 0 160 224 0 168 224 15 168 224 95 168 216 0 136 208 0 152 216 0 176 184 16 168 224 47 144 208 15 160 224 47 152 208 15 128 200 31 136 208 16 136 208 16 144 208 0 136 216 31 184 200 160 224 224 63 216 200 32 208 184 0 168 184 111 216 208 0 176 240 31 168 224 31 208 184 15 176 200 79 184 224 143 208 240 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1219
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1220
                            width:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1221
                            height:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1222
                            bits:(ByteArray fromPackedString:'@ @O@A>@O<@?8G?0??A?<C?0G?@O<@_ ');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1223
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1224
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1225
        ]
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1226
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  1227
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1228
iconEqual12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1229
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1230
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1231
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1232
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1233
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1234
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1235
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1236
     self iconEqual12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1237
     ImageEditor openOnClass:self andSelector:#iconEqual12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1238
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1239
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1240
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1241
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1242
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1243
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1244
        constantNamed:'GenericToolbarIconLibrary class iconEqual12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1245
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1246
@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PE
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1247
A \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 248 250 96 160 50 0 160 0 0 176 0 16 176 20 32 160 30 32 144 20 0 128 0 0 112 0 0 96 0 144 224 130 176 240 140 192 240 160 160 240 130 144 224 110 128 208 100 96 208 80 80 192 60 64 160 50 16 80 0 128 224 110 144 240 110 144 240 130 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 16 128 20 0 80 0 16 64 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@/?<O?5??G?<@@@@@C?<O?6??G?<@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1248
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1249
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1250
iconEqualGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1251
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1252
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1253
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1254
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1255
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1256
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1257
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1258
     self iconEqualGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1259
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1260
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1261
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1262
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1263
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1264
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1265
        constantNamed:'GenericToolbarIconLibrary class iconEqualGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1266
        ifAbsentPut:[self iconEqual12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1267
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1268
    "Created: / 31-08-2011 / 10:53:15 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1269
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1270
4306
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1271
iconEqualOrange12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1272
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1273
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1274
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1275
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1276
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1277
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1278
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1279
     self iconEqualOrange12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1280
     ImageEditor openOnClass:self andSelector:#iconEqualOrange12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1281
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1282
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1283
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1284
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1285
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1286
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1287
        constantNamed:'GenericToolbarIconLibrary class iconEqualOrange12x12'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1288
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1289
@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PE
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1290
A \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 197 104 70 203 139 0 224 153 0 224 165 20 203 149 38 183 118 25 163 111 0 142 97 0 122 83 0 243 227 207 252 237 231 255 253 253 251 232 219 240 205 184 227 191 164 224 188 141 210 163 110 197 141 70 102 49 0 240 213 184 249 218 196 251 237 219 239 203 173 224 178 141 211 176 134 202 165 98 198 158 66 102 81 20 122 76 25 163 124 20 102 70 0 81 67 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@/?<O?5??G?<@@@@@C?<O?6??G?<@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1291
!
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1292
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1293
iconEqualYellow12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1294
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1295
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1296
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1297
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1298
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1299
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1300
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1301
     self iconEqualYellow12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1302
     ImageEditor openOnClass:self andSelector:#iconEqualYellow12x12
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1303
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1304
    "
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1305
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1306
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1307
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1308
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1309
        constantNamed:'GenericToolbarIconLibrary class iconEqualYellow12x12'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1310
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1311
@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PE
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1312
A \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\D0$IG2@ @@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 197 144 70 203 203 0 224 224 0 218 224 20 203 201 38 183 168 25 163 163 0 142 142 0 122 122 0 243 238 207 252 244 231 255 254 253 251 242 219 240 223 184 227 211 164 224 214 141 210 195 110 197 181 70 102 81 0 240 231 184 249 235 196 251 247 219 239 224 173 224 204 141 211 200 134 202 198 98 196 198 66 97 102 20 122 107 25 157 163 20 102 102 0 76 81 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@/?<O?5??G?<@@@@@C?<O?6??G?<@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1313
!
Claus Gittinger <cg@exept.de>
parents: 4305
diff changeset
  1314
4560
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1315
iconExclaRed12x12
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1316
    "This resource specification was automatically generated
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1317
     by the ImageEditor of ST/X."
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1318
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1319
    "Do not manually edit this!! If it is corrupted,
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1320
     the ImageEditor may not be able to read the specification."
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1321
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1322
    "
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1323
     self iconExclaRed12x12 inspect
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1324
     ImageEditor openOnClass:self andSelector:#iconExclaRed12x12
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1325
     Icon flushCachedIcons
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1326
    "
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1327
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1328
    <resource: #image>
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1329
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1330
    ^Icon
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1331
        constantNamed:'GenericToolbarIconLibrary iconExclaRed12x12'
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1332
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1333
EQTUEP8LA04UEQTUEQTUEP,TD (UEQTUEQTUEP(RD0LUEQTUEQTUEPXSD@TUEQTUEQTUEPPPDPHUEQTUEQTUEPDQC0HUEQTUEQTUEP$B@@ UEQTUEQTUEQTU
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1334
EQTUEQTUEQTUEP8LA04UEQTUEQTUEP,TD (UEQTUEQTUEPDQC0HUEQTUEQTUEP$B@@ UEQTU') ; colorMapFromArray:#[80 0 31 80 0 15 80 16 24 100 0 16 110 0 22 100 16 26 110 16 30 140 20 56 110 80 103 110 60 75 130 16 33 160 16 39 160 32 56 160 80 111 180 60 100 160 48 68 190 60 106 180 52 86 210 100 148 210 80 120 240 132 165 250 251 255]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0,O@@<EC0DO@@<@C0@@@@<FC0DO@@<@') ; yourself); yourself]
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1335
!
e26c31be5593 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4558
diff changeset
  1336
4304
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1337
iconMinus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1338
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1339
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1340
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1341
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1342
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1343
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1344
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1345
     self iconMinus12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1346
     ImageEditor openOnClass:self andSelector:#iconMinus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1347
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1348
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1349
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1350
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1351
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1352
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1353
        constantNamed:'GenericToolbarIconLibrary class iconMinus12x12'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1354
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1355
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1356
D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 248 250 96 160 50 0 160 0 0 176 0 16 176 20 32 160 30 32 144 20 0 128 0 0 112 0 0 96 0 144 224 130 176 240 140 192 240 160 160 240 130 144 224 110 128 208 100 96 208 80 80 192 60 64 160 50 16 80 0 128 224 110 144 240 110 144 240 130 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 16 128 20 0 80 0 16 64 20]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@,@@@@E@@G?<O?0??C?<@@F@@D@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1357
!
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1358
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1359
iconMinusGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1360
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1361
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1362
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1363
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1364
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1365
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1366
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1367
     self iconMinusGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1368
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1369
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1370
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1371
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1372
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1373
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1374
        constantNamed:'GenericToolbarIconLibrary class iconMinusGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1375
        ifAbsentPut:[self iconMinus12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1376
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1377
    "Created: / 31-08-2011 / 10:54:22 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1378
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1379
4434
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1380
iconMinusRed12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1381
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1382
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1383
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1384
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1385
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1386
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1387
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1388
     self iconMinusRed12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1389
     ImageEditor openOnClass:self andSelector:#iconMinusRed12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1390
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1391
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1392
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1393
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1394
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1395
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1396
        constantNamed:'GenericToolbarIconLibrary iconMinusRed12x12'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1397
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1398
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PHC@0PEA \HBP$IAP(KC@,MC <PDQHSAQPUE!!XNE1 YF!!,\GP\GA18\
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1399
D0$IG2@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[248 248 255 160 50 56 160 59 0 176 65 0 176 79 16 160 76 30 144 53 20 128 47 0 112 41 0 96 35 0 224 150 130 240 141 140 240 160 163 240 140 130 224 118 110 208 112 100 208 111 80 192 88 60 160 76 50 80 13 0 224 134 110 240 124 110 240 156 130 224 117 100 208 95 80 192 105 80 176 99 60 160 91 48 80 43 16 96 36 20 128 61 16 80 29 0 64 38 16]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@,@@@@E@@G?<O?0??C?<@@F@@D@@@@@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1400
!
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1401
4304
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1402
iconPlus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1403
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1404
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1405
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1406
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1407
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1408
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1409
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1410
     self iconPlus12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1411
     ImageEditor openOnClass:self andSelector:#iconPlus12x12
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1412
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1413
    "
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1414
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1415
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1416
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1417
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1418
        constantNamed:'GenericToolbarIconLibrary class iconPlus12x12'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1419
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1420
@@@@@@DB@0P@@@@@@@@@@@TFA0 @@@@@@@@@@@$JB0 @@@@@@@@@@@$LCP8@@@@@C1@QDP$LCP8RD1LS@!!PJEP(VCP\WFA$Z@ ,[A XMGA4^G2@!!H 8NC  G
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1421
E1LSH2P$@@@@@BTWFBX@@@@@@@@@@AHXI2D@@@@@@@@@@BL''HBD@@@@@@@@@@B !!F"$@@@@@') ; colorMapFromArray:#[255 248 250 80 176 60 32 160 30 32 144 20 96 160 80 16 160 20 144 240 130 128 208 100 16 128 20 16 176 20 176 240 140 128 224 110 176 240 160 144 224 110 0 128 0 96 160 50 0 160 0 0 176 0 0 112 0 0 96 0 144 224 130 192 240 160 160 240 130 96 208 80 80 192 60 64 160 50 16 80 0 144 240 110 128 224 100 112 208 80 96 192 80 64 176 60 48 160 50 16 80 20 32 96 20 0 80 0 16 64 20 16 112 20 16 96 20 64 176 50 64 112 60 96 112 80]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0,O@@<EC0G?<O?0??C?<@<FC0DO@@<@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1422
!
Claus Gittinger <cg@exept.de>
parents: 4297
diff changeset
  1423
4434
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1424
iconPlusBlue12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1425
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1426
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1427
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1428
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1429
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1430
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1431
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1432
     self iconPlusBlue12x12 inspect
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1433
     ImageEditor openOnClass:self andSelector:#iconPlusBlue12x12
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1434
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1435
    "
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1436
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1437
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1438
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1439
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1440
        constantNamed:'GenericToolbarIconLibrary iconPlusBlue12x12'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1441
        ifAbsentPut:[(Depth8Image new) width: 12; height: 12; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1442
@@@@@@DB@0P@@@@@@@@@@@TFA0 @@@@@@@@@@@$JB0 @@@@@@@@@@@$LCP8@@@@@C1@QDP$LCP8RD1LS@!!PJEP(VCP\WFA$Z@ ,[A XMGA4^G2@!!H 8NC  G
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1443
E1LSH2P$@@@@@BTWFBX@@@@@@@@@@AHXI2D@@@@@@@@@@BL''HBD@@@@@@@@@@B !!F"$@@@@@') ; colorMapFromArray:#[253 255 248 60 126 176 30 84 160 20 82 144 80 128 160 16 70 160 130 188 240 100 171 208 16 57 128 16 76 176 140 216 240 110 174 224 160 208 240 110 190 224 0 51 128 50 140 160 0 64 160 0 70 176 0 45 112 0 38 96 130 182 224 160 224 240 130 204 240 80 147 208 60 133 192 50 108 160 0 48 80 110 196 240 100 178 224 80 163 208 80 141 192 60 110 176 48 91 160 16 38 80 20 62 96 0 32 80 16 31 64 16 50 112 16 44 96 50 114 176 60 85 112 80 109 112]; mask:((ImageMask new) width: 12; height: 12; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C0,O@@<EC0G?<O?0??C?<@<FC0DO@@<@') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1444
!
Claus Gittinger <cg@exept.de>
parents: 4426
diff changeset
  1445
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1446
iconPlusGray12x12
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1447
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1448
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1449
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1450
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1451
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1452
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1453
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1454
     self iconPlusGray12x12  inspect
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1455
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1456
    "
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1457
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1458
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1459
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1460
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1461
        constantNamed:'GenericToolbarIconLibrary class iconPlusGray12x12'
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1462
        ifAbsentPut:[self iconPlus12x12 asGrayImageDepth: 8]
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1463
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1464
    "Created: / 31-08-2011 / 10:54:27 / cg"
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1465
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
  1466
4447
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
  1467
javascript12x12Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1468
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1469
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1470
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1471
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1472
     the ImageEditor may not be able to read the specification."
4447
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
  1473
    "
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
  1474
     self javascript12x12Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
  1475
     ImageEditor openOnClass:self andSelector:#javascript12x12Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1476
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1477
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1478
    ^ Icon constantNamed:'GenericToolbarIconLibrary javascript12x12Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1479
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1480
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1481
                width:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1482
                height:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1483
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1484
                bitsPerSample:(#( 8 ));
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1485
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1486
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1487
                            fromPackedString:'
4447
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
  1488
S0@@E1\WE1\KHA]O@@, E!!XVJ2ELSAML@AXVJ0!!LD1LSU18SPR-LD1LLG!!8RD!!HRBALSG!!HLR ,KB4)JD1H=MT)NR"H[SB]UD5T\T$\KC -VJ4\NA2X@GC!!D
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1489
ID0;@BHNA2YG@@0+C @L@D\EU4YFATX2Q#<;Q$YFU4YFQ$YFQ$YFQ$YFS4YFQ$YFQ$YFQ$X@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1490
                colorMapFromArray:#[ 240 255 255 96 128 160 112 160 190 128 160 190 144 160 180 112 128 190 176 176 180 192 208 210 208 224 220 176 176 220 240 255 240 240 240 240 255 255 255 255 240 255 96 128 180 112 160 210 160 176 190 128 128 180 176 192 210 192 208 220 160 160 210 192 208 240 224 224 240 240 240 255 96 96 140 128 160 180 144 144 160 144 160 190 144 144 180 144 144 190 176 192 220 208 208 210 224 240 240 208 208 240 224 224 255 128 128 140 112 144 180 112 112 160 128 144 190 160 160 180 176 176 190 160 176 220 192 192 210 208 224 240 208 224 255 128 144 140 112 112 140 128 144 160 128 128 160 160 176 180 112 144 210 160 160 190 112 128 210 176 176 210 240 240 220 224 240 255 112 128 140 96 144 180 96 112 160 96 128 190 96 112 180 160 192 210 144 176 220 128 144 210 192 224 240 224 224 220 96 128 140 96 112 140 255 240 240 112 128 160 112 144 190 112 128 180 144 176 210 176 208 220 160 176 210 240 255 220 208 208 220 255 240 220 255 255 240 0 0 0 96 144 190 144 176 190 128 144 180 128 160 210 160 192 220 144 160 210 224 240 220 192 192 220 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1491
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1492
                            width:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1493
                            height:12;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1494
                            bits:(ByteArray fromPackedString:'_>C?<O?0??C?<O?0??C?<O?0??C?<G? ');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1495
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1496
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1497
        ]
4447
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
  1498
!
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
  1499
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1500
padLockBlack12x12Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1501
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1502
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1503
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1504
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1505
     the ImageEditor may not be able to read the specification."
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1506
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1507
     self padLockBlack12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1508
     ImageEditor openOnClass:self andSelector:#padLockBlack12x12Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1509
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1510
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1511
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1512
        constantNamed:#'GenericToolbarIconLibrary class padLockBlack12x12Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1513
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1514
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1515
                width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1516
                height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1517
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1518
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1519
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1520
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1521
                            fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1522
                colorMapFromArray:#[ 0 0 0 63 63 63 127 127 127 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1523
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1524
                            width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1525
                            height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1526
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1527
                                        fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1528
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1529
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1530
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1531
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1532
        ]
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1533
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1534
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1535
padLockBlue12x12Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1536
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1537
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1538
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1539
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1540
     the ImageEditor may not be able to read the specification."
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1541
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1542
     self padLockBlue12x12Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1543
     ImageEditor openOnClass:self andSelector:#padLockBlue12x12Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1544
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1545
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1546
        constantNamed:#'GenericToolbarIconLibrary class padLockBlue12x12Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1547
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1548
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1549
                width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1550
                height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1551
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1552
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1553
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1554
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1555
                            fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1556
                colorMapFromArray:#[ 0 0 0 128 128 255 212 212 255 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1557
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1558
                            width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1559
                            height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1560
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1561
                                        fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1562
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1563
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1564
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1565
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1566
        ]
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1567
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1568
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1569
padLockGray12x12Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1570
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1571
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1572
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1573
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1574
     the ImageEditor may not be able to read the specification."
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1575
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1576
     self padLockGray12x12Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1577
     ImageEditor openOnClass:self andSelector:#padLockGray12x12Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1578
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1579
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1580
        constantNamed:#'GenericToolbarIconLibrary class padLockGray12x12Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1581
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1582
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1583
                width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1584
                height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1585
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1586
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1587
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1588
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1589
                            fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1590
                colorMapFromArray:#[ 0 0 0 128 128 128 212 212 212 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1591
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1592
                            width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1593
                            height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1594
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1595
                                        fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1596
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1597
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1598
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1599
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1600
        ]
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1601
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1602
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1603
padLockGreen12x12Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1604
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1605
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1606
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1607
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1608
     the ImageEditor may not be able to read the specification."
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1609
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1610
     self padLockGreen12x12Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1611
     ImageEditor openOnClass:self andSelector:#padLockGreen12x12Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1612
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1613
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1614
        constantNamed:#'GenericToolbarIconLibrary class padLockGreen12x12Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1615
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1616
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1617
                width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1618
                height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1619
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1620
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1621
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1622
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1623
                            fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1624
                colorMapFromArray:#[ 0 0 0 128 255 128 212 255 212 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1625
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1626
                            width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1627
                            height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1628
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1629
                                        fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1630
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1631
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1632
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1633
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1634
        ]
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1635
!
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1636
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1637
padLockRed12x12Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1638
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1639
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1640
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1641
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1642
     the ImageEditor may not be able to read the specification."
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1643
    "
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1644
     self padLockRed12x12Icon inspect
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
  1645
     ImageEditor openOnClass:self andSelector:#padLockRed12x12Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1646
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1647
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1648
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1649
        constantNamed:#'GenericToolbarIconLibrary class padLockRed12x12Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1650
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1651
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1652
                width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1653
                height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1654
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1655
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1656
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1657
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1658
                            fromPackedString:'?0C??F$?<TEO<S1O<@@O2**#2UUS2TES2VES2UUS<@@O????');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1659
                colorMapFromArray:#[ 0 0 0 255 128 128 255 212 212 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1660
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1661
                            width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1662
                            height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1663
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1664
                                        fromPackedString:'
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1665
C0@_ C?@N\@?0G? _>A?8G? _>@?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1666
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1667
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1668
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  1669
        ]
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1670
! !
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  1671
5329
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1672
!GenericToolbarIconLibrary class methodsFor:'image specs-13x13'!
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1673
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1674
checkToggleOff13x13Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1675
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1676
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1677
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1678
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1679
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1680
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1681
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1682
     self checkToggleOff13x13Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1683
     ImageEditor openOnClass:self andSelector:#checkToggleOff13x13Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1684
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1685
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1686
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1687
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1688
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1689
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1690
        constantNamed:'GenericToolbarIconLibrary checkToggleOff13x13Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1691
        ifAbsentPut:[(Depth8Image width:13 height:13) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1692
@@@@@@@@@@@@@@@@@@@GA0\GA0\GA0\GA0@@A0\GA0\GA0\GA0\@@@\GA0\GA0\GA0\G@@@GA0\GA0\GA0\GA0@@A0\GA0\GA0\GA0\@@@\GA0\GA0\GA0\G
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1693
@@@GA0\GA0\GA0\GA0@@A0\GA0\GA0\GA0\@@@\GA0\GA0\GA0\G@@@GA0\GA0\GA0\GA0@@A0\GA0\GA0\GA0\@@@@@@@@@@@@@@@@@@@@a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1694
            colorMapFromArray:#[142 143 143 242 242 242 212 215 219 202 203 204 230 230 230 237 237 237 246 246 246 244 244 244]; yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1695
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1696
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1697
checkToggleOn13x13Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1698
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1699
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1700
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1701
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1702
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1704
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1705
     self checkToggleOn13x13Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1706
     ImageEditor openOnClass:self andSelector:#checkToggleOn13x13Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1707
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1708
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1709
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1710
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1711
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1712
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1713
        constantNamed:'GenericToolbarIconLibrary checkToggleOn13x13Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1714
        ifAbsentPut:[(Depth8Image width:13 height:13) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1715
E1\WE1\WE1\WE1\WE1\/K2</K2</MP(^K1\WK2</K2</K1=@H"<WE2</K2</K2<IA1@/E1\/K2</K2<(LPH/K1\WK2</K2</BC@RK2<WE2</C3<=KPD8K2</
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1716
E1\/K0@0GAP3PR</K1\WK2</CTL3C!!$/K2<WE2</K2YBO"\JK2</E1\/K2</M#$SK2</K1\WK2</K2</K2</K2<WE1\WE1\WE1\WE1\WE0@a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1717
            colorMapFromArray:#[110 127 170 73 94 150 101 119 165 205 207 209 245 245 245 231 231 232 230 230 230 68 90 146 94 113 161 87 106 157 249 249 249 201 204 208 222 224 225 72 93 149 97 115 164 201 207 221 185 191 208 203 207 213 188 195 214 242 243 246 103 120 167 223 226 233 213 216 220 142 143 143 198 200 202 248 249 250 236 237 237 202 203 204 207 212 226 219 220 220 246 246 246 157 167 192 237 238 241 234 236 240 220 223 228 242 243 244 204 208 214 213 217 221 139 153 187 176 185 209 175 184 207 235 235 236 233 233 234 220 221 222 218 218 219 186 193 213 223 226 229 244 244 244 71 92 148 69 90 146 225 226 226 75 96 151 205 209 214 248 248 248 140 153 186 174 179 185 100 118 165 144 157 189 213 213 214 197 201 205 222 225 233 237 238 238 76 97 152 163 174 200 119 134 171 183 191 213 74 95 151 73 95 150]; yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1718
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  1719
5329
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1720
clock13x13Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1721
    "This resource specification was automatically generated
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1722
     by the ImageEditor of ST/X."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1723
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1724
    "Do not manually edit this!! If it is corrupted,
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1725
     the ImageEditor may not be able to read the specification."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1726
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1727
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1728
     self clock13x13Icon inspect
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1729
     ImageEditor openOnClass:self andSelector:#clock13x13Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1730
     Icon flushCachedIcons
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1731
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1732
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1733
    <resource: #image>
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1734
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1735
    ^Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1736
        constantNamed:'GenericToolbarIconLibrary clock13x13Icon'
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1737
        ifAbsentPut:[(Depth4Image new) width:13; height:13; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@H@@ @@@@@AL3D@@@@@L3@3L@@@HSL0L3D @@L3LCL3@@@CL3@@@0@@@3L3L3L@@BD3L3L1H@@@L3L3L@@@@@D3LP@@@@@B@@H@@@@@@@@@@@
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1738
@@@a') ; colorMapFromArray:#[0 0 0 128 128 128 97 97 97 255 255 255]; mask:((Depth1Image new) width:13; height:13; bits:(ByteArray fromPackedString:'@@@O A?@O>A?<G?0_?A?<G?0O>@_0@>@@@@b') ; yourself); yourself]
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1739
!
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1740
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1741
clockPink13x13Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1742
    "This resource specification was automatically generated
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1743
     by the ImageEditor of ST/X."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1744
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1745
    "Do not manually edit this!! If it is corrupted,
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1746
     the ImageEditor may not be able to read the specification."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1747
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1748
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1749
     self clockPink13x13Icon inspect
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1750
     ImageEditor openOnClass:self andSelector:#clockPink13x13Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1751
     Icon flushCachedIcons
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1752
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1753
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1754
    <resource: #image>
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1755
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1756
    ^Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1757
        constantNamed:'GenericToolbarIconLibrary clockPink13x13Icon'
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1758
        ifAbsentPut:[(Depth4Image new) width:13; height:13; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@H@@ @@@@@AQDD@@@@@QDADP@@@HTQ@QDD @@QDPDQD@@@DQD@@A@@@ADQDQDP@@BEDQDQAH@@@QDQDP@@@@@EDPP@@@@@B@@H@@@@@@@@@@@
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1759
@@@a') ; colorMapFromArray:#[0 0 0 128 128 128 97 97 97 255 255 255 255 127 127]; mask:((Depth1Image new) width:13; height:13; bits:(ByteArray fromPackedString:'@@@O A?@O>A?<G?0_?A?<G?0O>@_0@>@@@@b') ; yourself); yourself]
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1760
!
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1761
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1762
console13x13Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1763
    "This resource specification was automatically generated
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1764
     by the ImageEditor of ST/X."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1765
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1766
    "Do not manually edit this!! If it is corrupted,
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1767
     the ImageEditor may not be able to read the specification."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1768
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1769
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1770
     self console13x13Icon inspect
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1771
     ImageEditor openOnClass:self andSelector:#console13x13Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1772
     Icon flushCachedIcons
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1773
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1774
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1775
    <resource: #image>
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1776
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1777
    ^Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1778
        constantNamed:'GenericToolbarIconLibrary console13x13Icon'
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1779
        ifAbsentPut:[(Depth8Image new) width:13; height:13; bits:(ByteArray fromPackedString:'
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1780
@PHB@ HB@ HB@ HB@PLDA@PDA@PDA@PDA@LCAPXFA XFA XFA TC@0\FB@ HB@ HB@ G@0$JA ,LCP8ODA@PB $QB XPDAHPDA@PD (QD1PFB0,UE!!\XC1HT
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1781
D1LYA!!(ZF!!(ZF!!(ZF1L\GPXZF!!(ZF!!(ZF!!4\G!!<_G1<_G1<_G1<_G"@@@@@@@@@@@@@@@B@@@@@@H@@@@B@@@@@@@B@!!HRD!!HRD!!HRD @@@a') ; colorMapFromArray:#[47 88 144 95 128 176 47 112 200 47 104 184 80 96 128 95 104 128 208 232 248 95 104 136 255 248 248 47 104 176 96 112 136 111 128 176 95 112 168 80 96 144 64 88 136 63 72 128 240 240 248 47 96 176 239 240 248 47 96 168 111 120 144 96 120 168 95 104 160 79 96 144 64 80 136 112 128 144 224 232 248 112 120 144 47 96 160 112 128 160 47 88 160 127 136 160 79 112 168 47 88 136]; mask:((Depth1Image new) width:13; height:13; bits:(ByteArray fromPackedString:'??#?>O?8??#?>O?8??#?>O?8??#?>@>@_?@b') ; yourself); yourself]
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1782
! !
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1783
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1784
!GenericToolbarIconLibrary class methodsFor:'image specs-14x14'!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1785
5422
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1786
addTabEntered14x14Icon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1787
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1788
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1789
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1790
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1791
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1792
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1793
    "
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1794
     self addTabEntered14x14Icon inspect
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1795
     ImageEditor openOnClass:self andSelector:#addTabEntered14x14Icon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1796
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1797
    "
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1798
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1799
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1800
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1801
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1802
        constantNamed:'XPToolbarIconLibrary addTabEntered14x14Icon'
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1803
        ifAbsentPut:[(Depth4Image new) width:14; height:14; bits:(ByteArray fromPackedString:'@RH"H"H"LAHQDQDQDRL!!L3L3L3L2HSL3L3L3L"D3L4P3L3H!!L3MDL3L2HSMDQDP3L"D3PTQDL3H!!L3LQL3L2HSL3QCL3L"D3L3L3L3H!!L3L3L3L2L#L3L3L3
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1804
H0L"H"H"H#@b') ; colorMapFromArray:#[127 127 127 238 238 238 153 153 153 221 221 221 246 246 246]; mask:((ImageMask new) width:14; height:14; bits:(ByteArray fromPackedString:'_?/???????????????????????????????=?>0@a') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1805
!
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  1806
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  1807
bookmarks14x14
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1808
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1809
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1810
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1811
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1812
     the ImageEditor may not be able to read the specification."
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  1813
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  1814
     self bookmarks14x14 inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  1815
     ImageEditor openOnClass:self andSelector:#bookmarks14x14
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1816
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1817
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1818
    ^ Icon constantNamed:'GenericToolbarIconLibrary bookmarks14x14'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1819
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1820
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1821
                width:14;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1822
                height:14;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1823
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1824
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1825
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1826
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1827
                            fromPackedString:'
4552
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1828
@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@@@@@@@@@@@@@@BPDABP@@@@@@@@@@@@@UJ"(U@@@@@@@@@@@BJB<WE2<(@ @@@@@!!H"L]LA0\LA4#H"D@@@<HDB$.
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1829
I2\.JQ@HC0@@@@@TA!!(KB1(FE@@@@@@@@B4,IQ$YIR0-@@@@@@@@F0TRA@PRAQ,@@@@@@@@ML2X HBX3CP@@@@@@@ALLL!!XVL 0S@@@@@@@@M@8@@@@$C#P@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1830
@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1831
                colorMapFromArray:#[ 204 180 130 228 201 132 205 197 179 206 217 231 255 237 92 245 219 101 254 243 126 206 180 127 233 208 130 204 197 178 206 213 221 255 231 79 241 217 97 210 175 98 205 176 116 204 182 135 255 255 185 206 210 213 255 235 81 215 180 85 231 204 105 206 176 115 203 180 133 255 253 181 206 208 209 255 225 70 255 235 98 204 174 114 255 244 145 239 223 167 205 205 199 207 219 236 237 212 92 206 176 111 225 196 126 234 211 152 205 202 194 255 233 73 253 241 103 255 239 125 202 179 132 255 254 167 249 243 190 206 218 234 244 218 87 204 172 107 255 245 144 224 197 133 251 244 184 207 218 232 217 178 74 254 238 111 207 175 107 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1832
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1833
                            width:14;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1834
                            height:14;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1835
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1836
                                        fromPackedString:'@@LC@0^CA8L_87?;_?,?<1?#G>L_81?#FNL@@0@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1837
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1838
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1839
        ]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  1840
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  1841
5985
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1842
ledBlue14x14
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1843
    "This resource specification was automatically generated
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1844
     by the ImageEditor of ST/X."
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1845
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1846
    "Do not manually edit this!! If it is corrupted,
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1847
     the ImageEditor may not be able to read the specification."
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1848
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1849
    "
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1850
     self ledBlue14x14 inspect
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1851
     ImageEditor openOnClass:self andSelector:#ledBlue14x14
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1852
     Icon flushCachedIcons
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1853
    "
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1854
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1855
    <resource: #image>
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1856
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1857
    ^Icon
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1858
        constantNamed:'GenericToolbarIconLibrary class ledBlue14x14'
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1859
        ifAbsentPut:[(Depth8Image width:14 height:14) bits:(ByteArray fromPackedString:'
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1860
K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K @+A0@@A2,@K"8.K"8@DPDUK2<U@QD@K"8.@B(BIS)CP3(%@"(@K"8@B ,#LBX&LBLKB @.K @CBP8R
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1861
D1 RC $C@@@.@@PEC1PYF1,PAPP@K"8@CP ZG2\)KA0FCP@.K @(CB41MCX2KP0(@B8.@@@]E#]AQS,WHP@@@B8.@C .G"@$H"88@B8@K"8.@@@5L3L5@@@.
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1862
@@@.K"8.@@@@@@@@K"8.K @a')
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1863
            colorMapFromArray:#[20 29 86 0 41 110 0 46 116 20 47 108 20 56 114 0 74 172 0 86 172 76 76 128 0 90 172 10 90 174 80 84 134 40 90 156 0 102 164 70 98 144 30 109 188 20 119 200 20 123 200 116 116 158 50 128 198 50 133 202 20 135 206 100 131 180 0 140 198 0 141 200 50 137 202 20 140 208 0 142 214 20 144 210 0 146 214 90 139 174 60 143 196 0 150 218 40 147 218 90 143 176 60 147 198 100 145 206 60 150 224 110 148 204 100 149 208 0 158 220 130 148 178 0 162 222 148 149 182 157 148 182 0 167 224 0 167 230 120 158 188 140 161 206 120 164 216 0 175 234 0 184 236 190 172 179 30 193 240 190 180 187 40 201 244 70 198 244 200 188 195 210 192 201 170 197 234 90 205 248 210 196 203 220 208 217 230 212 219 230 212 221 230 216 223 120 227 255 240 220 228 210 223 248 240 224 233 130 234 255]
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1864
            mask:((ImageMask width:14 height:14) bits:(ByteArray fromPackedString:'@@@@@@?@G>@?<C?0O?L?<C?0O?@_8A? A8@@@@@a'); yourself); yourself]
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1865
!
646411f4536b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 5984
diff changeset
  1866
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1867
ledDarkRed10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1868
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1869
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1870
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1871
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1872
     the ImageEditor may not be able to read the specification."
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1873
    "
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1874
     self ledDarkRed10x11 inspect
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1875
     ImageEditor openOnClass:self andSelector:#ledDarkRed10x11
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1876
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1877
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1878
    ^ Icon constantNamed:'GenericToolbarIconLibrary ledDarkRed10x11'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1879
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1880
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1881
                width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1882
                height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1883
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1884
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1885
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1886
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1887
                            fromPackedString:'
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1888
B@@OAP@@AP<@B@@I@!!L#H1LBBP@NAA41MST1GPPNA ("JRD!!JRHJA DRFA0 HA0XD DCCQ,''J2,+G04CA04-LCH3L2<MA00QNSX8NC\9DP0@EC@:OC0;L!!X@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1889
@@@YJCP4JA$@@@ @@A@KB1@@@@ b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1890
                colorMapFromArray:#[ 46 12 10 56 11 10 60 1 0 60 10 10 62 1 0 64 39 40 68 37 40 72 33 35 76 94 60 80 59 60 82 18 20 86 89 95 88 63 65 90 0 0 90 74 75 90 75 80 90 93 95 92 0 0 92 7 5 92 52 50 94 45 45 94 97 100 96 45 45 96 100 105 98 15 15 98 56 60 98 101 105 104 8 10 104 24 25 104 56 55 104 108 110 106 8 10 106 24 25 106 47 45 106 48 50 106 68 70 106 109 115 106 110 115 108 111 115 110 9 10 110 28 30 110 58 60 110 113 120 112 9 10 112 116 120 114 0 0 114 118 125 116 0 0 118 0 0 118 86 85 120 0 0 122 0 0 122 20 20 126 103 105 127 4 5 127 6 5 127 12 10 127 15 15 127 35 35 127 41 40 127 52 50 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1891
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1892
                            width:10;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1893
                            height:11;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1894
                            bits:(ByteArray fromPackedString:'O0A? O?@?<C?0O?@?<C?0G>@O0@^@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1895
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1896
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  1897
        ]
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1898
!
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
  1899
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1900
ledGreen14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1901
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1902
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1903
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1904
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1905
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1906
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1907
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1908
     self ledGreen14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1909
     ImageEditor openOnClass:self andSelector:#ledGreen14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1910
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1911
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1912
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1913
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1914
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1915
    ^Icon
4552
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1916
        constantNamed:'GenericToolbarIconLibrary ledGreen14x14'
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1917
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1918
K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K @+A0@@A2,@K"8.K"8@DPDUK2<U@QD@K"8.@B(BIS)CP3(%@"(@K"8@B ,#LBX&LBLKB @.K @CBP8R
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1919
D1 RC $C@@@.@@PEC1PYF1,PAPP@K"8@CP ZG2\)KA0FCP@.K @(CB41MCX2KP0(@B8.@@@]E#]AQS,WHP@@@B8.@C .G"@$H"88@B8@K"8.@@@5L3L5@@@.
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1920
@@@.K"8.@@@@@@@@K"8.K @a') ; colorMapFromArray:#[24 86 20 32 110 0 36 116 0 40 108 20 48 114 20 60 172 0 72 172 0 76 128 80 76 172 0 76 174 10 80 134 80 80 156 40 88 164 0 92 144 70 96 188 30 104 200 20 108 200 20 116 158 120 116 198 50 120 202 50 120 206 20 124 180 100 124 198 0 124 200 0 124 202 50 124 208 20 124 214 0 128 210 20 128 214 0 132 174 90 132 196 60 132 218 0 132 218 40 136 176 90 136 198 60 136 206 100 136 224 60 140 204 110 140 208 100 140 220 0 144 178 130 144 222 0 148 182 150 148 182 160 148 224 0 148 230 0 152 188 120 156 206 140 156 216 120 156 234 0 164 236 0 172 178 190 176 240 30 180 186 190 184 244 40 184 244 70 188 194 200 192 200 210 192 234 170 192 248 90 196 202 210 208 216 220 212 218 230 212 220 230 216 222 230 216 255 120 220 226 240 220 248 210 224 232 240 224 255 130]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?@G>@?<C?0O?L?<C?0O?@_8A? A8@@@@@a') ; yourself); yourself]
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1921
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1922
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1923
ledGrey14x14
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1924
    "This resource specification was automatically generated
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1925
     by the ImageEditor of ST/X."
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1926
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1927
    "Do not manually edit this!! If it is corrupted,
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1928
     the ImageEditor may not be able to read the specification."
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1929
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1930
    "
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1931
     self ledGrey14x14 inspect
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1932
     ImageEditor openOnClass:self andSelector:#ledGrey14x14
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1933
     Icon flushCachedIcons
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1934
    "
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1935
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1936
    <resource: #image>
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1937
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1938
    ^Icon
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1939
        constantNamed:'GenericToolbarIconLibrary ledGrey14x14'
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1940
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4552
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1941
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@0PD@0H@@@@@@@@@APXGB@ GA T@@@@@@@$JB00MCP0KB $@@@@@C1@QD!!LTD!!DPC0@@@@@VE1 Y
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1942
F!!,YGA\V@@@@@A8_HBD"H2L$G18@@@@@I"\(JR(+J2 ,I @@@@@-K"<RLCD2K283@@@@@@@5M#\8NS(6N0@@@@@@@C0=O#=@PS4<@@@@@@@@@@ADL3MD@@@@
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1943
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[170 170 170 235 235 235 179 179 179 123 123 123 83 83 83 154 154 154 105 105 105 178 178 178 203 203 203 179 179 179 111 111 111 197 197 197 226 226 226 241 241 241 230 230 230 132 132 132 151 151 151 197 197 197 208 208 208 199 199 199 200 200 200 225 225 225 107 107 107 163 163 163 177 177 177 187 187 187 188 188 188 189 189 189 175 175 175 221 221 221 118 118 118 159 159 159 184 184 184 189 189 189 192 192 192 193 193 193 185 185 185 218 218 218 146 146 146 163 163 163 194 194 194 197 197 197 198 198 198 201 201 201 162 162 162 176 176 176 160 160 160 206 206 206 217 217 217 220 220 220 210 210 210 177 177 177 201 201 201 168 168 168 182 182 182 225 225 225 240 240 240 242 242 242 229 229 229 169 169 169 192 192 192 181 181 181 183 183 183 200 200 200 206 206 206 184 184 184 217 217 217 198 198 198 184 184 184]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?CG>@?<3?0O?@?<C?0O?@_81? A8@@@@@a') ; yourself); yourself]
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1944
!
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
  1945
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1946
ledRed14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1947
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1948
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1949
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1950
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1951
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1952
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1953
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1954
     self ledRed14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1955
     ImageEditor openOnClass:self andSelector:#ledRed14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1956
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1957
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1958
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1959
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1960
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1961
    ^Icon
4552
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1962
        constantNamed:'GenericToolbarIconLibrary ledRed14x14'
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1963
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1964
B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@@OAP@@AP<@B@ HB@@@BPHSH2LS@ $@B@ H@@8DGSD5MSD]A@8@B@ @A ("JRD!!JRHJA @HB@@AD!! \
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1965
HB@\FAHA@@ H@@LMF2\+J2,_CPL@B@ @A04-LCH3L2<MA0@HB@@LDS$6NC 7NQDL@@ H@@@TLC(<OC,2E @@B@ H@@@YJCP4JA$@@@@HB@ H@@@PB0,P@@@H
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1966
B@ HB@ H@@@@@@@@@@ HB@@a') ; colorMapFromArray:#[92 24 20 112 22 20 120 2 0 120 20 20 124 2 0 128 78 80 136 74 80 144 66 70 152 188 120 160 118 120 164 36 40 172 178 190 176 126 130 180 0 0 180 148 150 180 150 160 180 186 190 184 0 0 184 14 10 184 104 100 188 90 90 188 194 200 192 90 90 192 200 210 196 30 30 196 112 120 196 202 210 208 16 20 208 48 50 208 112 110 208 216 220 212 16 20 212 48 50 212 94 90 212 96 100 212 136 140 212 218 230 212 220 230 216 222 230 220 18 20 220 56 60 220 116 120 220 226 240 224 18 20 224 232 240 228 0 0 228 236 250 232 0 0 236 0 0 236 172 170 240 0 0 244 0 0 244 40 40 252 206 210 255 8 10 255 12 10 255 24 20 255 30 30 255 70 70 255 82 80 255 104 100]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?@G>@?<C?0O?H?<C?0O?@_8@?@A8@@@@@a') ; yourself); yourself]
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1967
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1968
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1969
ledYellow14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1970
    "This resource specification was automatically generated
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1971
     by the ImageEditor of ST/X."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1972
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1973
    "Do not manually edit this!! If it is corrupted,
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1974
     the ImageEditor may not be able to read the specification."
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1975
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1976
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1977
     self ledYellow14x14 inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1978
     ImageEditor openOnClass:self andSelector:#ledYellow14x14
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1979
     Icon flushCachedIcons
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1980
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1981
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1982
    <resource: #image>
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1983
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  1984
    ^Icon
4552
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1985
        constantNamed:'GenericToolbarIconLibrary ledYellow14x14'
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1986
        ifAbsentPut:[(Depth8Image new) width: 14; height: 14; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1987
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@R@ @@@!!H@@PDA@PD@B \#L3L#A0(@@PDA@ALILC=EQS<0BQL@@PD@AQ,2NSP6NSH[AP@A@P@CIR$,
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1988
K"<,JBTC@@DA@@ $J3D5M3\-I@ @@PD@CRH8N#,<OC !!CP@A@P@OHC4>PTI@OR@P@@DA@@@TJ$MFQ4P*EP@@@PDA@@,QGBX''GQDK@@@A@PDA@@@FA@PF@@@A
e402765df18e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4551
diff changeset
  1989
@PDA@PD@@@@@@@@@@@DA@P@a') ; colorMapFromArray:#[144 64 20 152 188 120 168 108 80 172 90 20 172 178 190 180 118 80 180 186 190 184 84 0 184 102 20 188 92 0 188 144 120 188 194 200 192 200 210 196 134 70 196 202 210 200 172 130 200 174 130 200 182 120 204 170 160 204 172 150 208 162 90 208 164 90 208 216 220 212 218 230 212 220 230 216 222 230 220 226 240 224 134 40 224 184 60 224 186 60 224 232 240 228 236 250 236 150 0 236 152 0 236 154 0 236 162 100 240 146 0 240 150 10 244 206 40 244 212 60 248 164 30 248 166 30 252 178 0 252 178 20 252 178 50 252 180 20 252 180 50 252 182 50 252 184 110 252 186 20 252 186 100 252 190 140 255 188 100 255 190 20 255 190 100 255 192 20 255 196 0 255 200 120 255 202 0 255 204 0 255 208 0 255 216 0 255 220 0 255 222 170 255 224 0 255 230 30 255 234 40 255 236 70 255 240 90 255 240 210 255 254 120 255 255 130]; mask:((ImageMask new) width: 14; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@?CG>@?<3?0O?@?<C?0O?@_81? A8@@@@@a') ; yourself); yourself]
6071
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1990
!
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1991
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1992
removeTab14x14Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1993
    <resource: #image>
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1994
    "This resource specification was automatically generated
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1995
     by the ImageEditor of ST/X."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1996
    "Do not manually edit this!! If it is corrupted,
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1997
     the ImageEditor may not be able to read the specification."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1998
    "
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  1999
     self removeTab14x14Icon inspect
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2000
     ImageEditor openOnClass:self andSelector:#removeTab14x14Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2001
     Icon flushCachedIcons"
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2002
    
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2003
    ^ Icon constantNamed:'XPToolbarIconLibrary class removeTab14x14Icon'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2004
        ifAbsentPut:[
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2005
            (Depth8Image new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2006
                width:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2007
                height:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2008
                photometric:(#palette);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2009
                bitsPerSample:(#[ 8 ]);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2010
                samplesPerPixel:(1);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2011
                bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2012
                            fromPackedString:'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2013
@HD4JB (JB (JB 0\ BAM8BL"8.K"8.K#HP6YCE"[&]''YV]''Y&Y''[V /JVMXVD1+T%MYVUMXWCH,X5%N$Y5,SY&YV%-]MRE[TU:Z'')2W'')9@N5X%E5]HPR*X
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2014
&9.[HBL3NQ8QXT]FP(JV%(4-R%U0F@Y*QDU6]75/^''!!< 8 R@V%COR-IGQ(>N#2E# 0@]E@.D1$''S1,TUH&OC T?R2X"IC!!__''NG!!)@DG0];\VA5_8*R%IRS
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2015
EQX@G@HKB@$JCP<OD@LV@@@a');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2016
                colorMapFromArray:#[ 129 65 62 131 63 61 131 74 71 135 64 67 135 67 67 138 81 79 146 67 67 149 71 67 155 76 70 155 78 70 156 76 70 157 76 71 158 69 70 158 79 68 159 71 71 159 78 68 161 79 68 162 70 71 170 73 75 171 71 80 172 95 104 175 84 71 175 138 136 178 74 75 179 74 79 181 123 128 182 88 95 183 97 105 184 150 150 186 125 132 189 75 82 191 162 161 194 135 141 199 79 81 203 59 91 206 61 78 207 61 87 207 103 107 209 63 91 211 62 81 213 77 82 213 81 86 213 162 165 213 207 210 214 81 86 214 91 102 215 83 98 215 86 92 216 92 97 217 102 106 217 105 110 218 62 87 218 100 105 218 102 109 218 105 109 218 106 110 219 63 91 220 61 85 220 225 226 221 110 128 222 102 112 222 116 121 222 225 226 223 83 95 223 154 164 224 147 158 225 136 142 226 119 122 226 132 137 226 134 138 226 142 147 226 142 148 226 150 160 226 230 231 227 63 85 227 83 97 227 152 165 227 153 165 227 153 166 228 64 86 228 107 110 228 156 167 228 156 168 228 157 169 229 68 83 229 70 90 229 151 163 229 155 166 229 158 170 229 159 171 229 161 172 229 161 173 229 162 174 229 163 176 229 166 176 230 67 91 230 111 80 230 146 153 230 164 174 230 164 177 230 165 168 230 167 178 230 168 179 230 169 179 230 169 180 231 122 126 231 136 142 231 168 178 231 169 179 231 170 180 231 171 181 231 230 231 233 70 90 233 107 80 233 177 180 234 68 88 234 109 112 234 113 80 234 226 227 234 236 238 235 232 234 235 235 235 235 236 238 236 85 83 236 102 116 236 238 240 238 68 88 238 115 80 238 196 202 238 203 204 238 230 230 240 70 86 240 202 208 241 70 87 241 71 91 242 71 91 242 74 90 242 75 90 242 116 80 242 212 218 242 213 220 242 240 240 243 74 90 244 75 91 244 75 92 245 223 227 246 118 79 247 117 81 247 118 79 247 247 247 247 247 248 248 237 238 248 246 246 249 241 243 250 248 248 250 250 250 251 248 248 252 249 249 252 252 252 ];
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2017
                mask:((ImageMask new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2018
                            width:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2019
                            height:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2020
                            bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2021
                                        fromPackedString:'_?/???????????????????????????????=?>0@a');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2022
                            yourself);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2023
                yourself
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2024
        ]
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2025
!
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2026
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2027
removeTabEntered14x14Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2028
    <resource: #image>
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2029
    "This resource specification was automatically generated
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2030
     by the ImageEditor of ST/X."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2031
    "Do not manually edit this!! If it is corrupted,
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2032
     the ImageEditor may not be able to read the specification."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2033
    "
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2034
     self removeTabEntered14x14Icon inspect
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2035
     ImageEditor openOnClass:self andSelector:#removeTabEntered14x14Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2036
     Icon flushCachedIcons"
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2037
    
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2038
    ^ Icon 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2039
        constantNamed:'XPToolbarIconLibrary class removeTabEntered14x14Icon'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2040
        ifAbsentPut:[
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2041
            (Depth8Image new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2042
                width:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2043
                height:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2044
                photometric:(#palette);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2045
                bitsPerSample:(#[ 8 ]);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2046
                samplesPerPixel:(1);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2047
                bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2048
                            fromPackedString:'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2049
@HD4JB (JB (JB 0\ BAQ(.Q$YFQ$YFQ$X1FYCF@ HB@ HB@ HB@ H@/JXA2\''J@\''I2\''I2 CH, GI2%9.@\)"X\(B@MRF@\(B['')6Y'')92XWH%E7I2[''JZ
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2050
''):^J#,;N18Q\&-+YH6[&9%DN6%)F@Y$YFQ8#X5:#W5!!ZV$R@U]!!XS97J"A/[4])ZP0@XTYDFQ<;N2@ ZV%)C UDQC,;N3-)ZV%)ZV$DG1%)ZV%)ZV%)ZV%)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2051
GQX@G@HKB@$JCP<OD@LV@@@a');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2052
                colorMapFromArray:#[ 129 65 62 131 63 61 131 74 71 135 64 67 135 67 67 138 81 79 146 67 67 149 71 67 155 76 70 155 78 70 156 76 70 157 76 71 158 69 70 158 79 68 159 71 71 159 78 68 161 79 68 162 70 71 170 73 75 171 71 80 172 95 104 175 84 71 175 138 136 178 74 75 179 74 79 181 123 128 182 88 95 183 97 105 184 150 150 186 125 132 189 75 82 191 162 161 194 135 141 199 79 81 203 59 91 206 61 78 207 61 87 207 103 107 209 63 91 211 62 81 213 77 82 213 81 86 213 162 165 213 207 210 214 81 86 214 91 102 215 83 98 215 86 92 216 92 97 217 102 106 217 105 110 218 62 87 218 100 105 218 102 109 218 105 109 218 106 110 219 63 91 220 61 85 220 225 226 221 110 128 222 102 112 222 116 121 222 225 226 223 83 95 223 154 164 224 147 158 225 136 142 226 119 122 226 132 137 226 134 138 226 142 147 226 142 148 226 150 160 226 230 231 227 63 85 227 83 97 227 152 165 227 153 165 227 153 166 228 64 86 228 107 110 228 156 167 228 156 168 228 157 169 229 68 83 229 70 90 229 151 163 229 155 166 229 158 170 229 159 171 229 161 172 229 161 173 229 162 174 229 163 176 229 166 176 230 67 91 230 111 80 230 146 153 230 164 174 230 164 177 230 165 168 230 167 178 230 168 179 230 169 179 230 169 180 231 122 126 231 136 142 231 168 178 231 169 179 231 170 180 231 171 181 231 230 231 233 70 90 233 107 80 233 177 180 234 68 88 234 109 112 234 113 80 234 226 227 234 236 238 235 232 234 235 235 235 235 236 238 236 85 83 236 102 116 236 238 240 238 68 88 238 115 80 238 196 202 238 203 204 238 230 230 240 70 86 240 202 208 241 70 87 241 71 91 242 71 91 242 74 90 242 75 90 242 116 80 242 212 218 242 213 220 242 240 240 243 74 90 244 75 91 244 75 92 245 223 227 246 118 79 247 117 81 247 118 79 247 247 247 247 247 248 248 237 238 248 246 246 249 241 243 250 248 248 250 250 250 251 248 248 252 249 249 252 252 252 ];
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2053
                mask:((ImageMask new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2054
                            width:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2055
                            height:14;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2056
                            bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2057
                                        fromPackedString:'_?/???????????????????????????????=?>0@a');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2058
                            yourself);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2059
                yourself
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  2060
        ]
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2061
! !
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2062
3183
5f7670800c42 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3171
diff changeset
  2063
!GenericToolbarIconLibrary class methodsFor:'image specs-15x15'!
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2064
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2065
edit_anchor15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2066
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2067
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2068
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2069
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2070
     the ImageEditor may not be able to read the specification."
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2071
    "
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2072
     self edit_anchor15x15 inspect
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2073
     ImageEditor openOnClass:self andSelector:#edit_anchor15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2074
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2075
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2076
    ^ Icon constantNamed:'GenericToolbarIconLibrary edit_anchor15x15'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2077
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2078
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2079
                width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2080
                height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2081
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2082
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2083
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2084
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2085
                            fromPackedString:'
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2086
DQDQDQDQDQ@QDQD].!!DQDADQD]D8DQDPDQDQ,9 QDQ@QDQDTRQDQDAD1DQAADQDPDQDQDHDQFQ@Q4QD[ QDPDAF;(Q.AD; PD[(QF8DQ%Q@Q69H; R5EDAD$
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2087
B7AVQ^\PDQI%U^W.0Q@QDQI%9GLQDADQDQDQDQDP');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2088
                colorMapFromArray:#[ 88 113 160 165 174 205 194 198 206 211 212 217 81 99 143 58 78 114 95 108 136 136 148 166 60 84 129 165 173 191 189 196 217 101 122 176 167 170 178 123 144 186 43 63 103 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2089
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2090
                            width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2091
                            height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2092
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2093
                                        fromPackedString:'@@@A0@O@@<@C0BF@HXP1#C&\LX0?/C?<G? G<@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2094
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2095
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2096
        ]
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2097
!
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2098
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2099
edit_bold_15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2100
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2101
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2102
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2103
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2104
     the ImageEditor may not be able to read the specification."
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2105
    "
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2106
     self edit_bold_15x15 inspect
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2107
     ImageEditor openOnClass:self andSelector:#edit_bold_15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2108
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2109
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2110
    ^ Icon constantNamed:'GenericToolbarIconLibrary edit_bold_15x15'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2111
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2112
            (Depth1Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2113
                width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2114
                height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2115
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2116
                bitsPerSample:(#[ 1 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2117
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2118
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2119
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2120
                colorMapFromArray:#[ 0 0 0 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2121
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2122
                            width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2123
                            height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2124
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2125
                                        fromPackedString:'@@@@@@@@G>@N\@90C''@O8@90C''@N\A? @@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2126
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2127
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2128
        ]
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2129
!
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2130
4681
8e75820273a8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4665
diff changeset
  2131
edit_code_15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2132
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2133
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2134
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2135
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2136
     the ImageEditor may not be able to read the specification."
4681
8e75820273a8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4665
diff changeset
  2137
    "
8e75820273a8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4665
diff changeset
  2138
     self edit_code_15x15 inspect
8e75820273a8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4665
diff changeset
  2139
     ImageEditor openOnClass:self andSelector:#edit_code_15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2140
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2141
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2142
    ^ Icon constantNamed:'GenericToolbarIconLibrary edit_code_15x15'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2143
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2144
            (Depth2Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2145
                width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2146
                height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2147
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2148
                bitsPerSample:(#[ 2 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2149
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2150
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2151
                            fromPackedString:'@@@@@P@@@@L@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@D@@@@A@@@@@0@@@@@@@@@B@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2152
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2153
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2154
                            width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2155
                            height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2156
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2157
                                        fromPackedString:'@@@@@A8@@@@],@@@F; @@A4@@@@[@@@@GX@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2158
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2159
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2160
        ]
4681
8e75820273a8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4665
diff changeset
  2161
!
8e75820273a8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4665
diff changeset
  2162
5140
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2163
edit_escapeHTMLCharacters
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2164
    "This resource specification was automatically generated
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2165
     by the ImageEditor of ST/X."
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2166
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2167
    "Do not manually edit this!! If it is corrupted,
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2168
     the ImageEditor may not be able to read the specification."
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2169
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2170
    "
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2171
     self edit_escapeHTMLCharacters inspect
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2172
     ImageEditor openOnClass:self andSelector:#edit_escapeHTMLCharacters
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2173
     Icon flushCachedIcons
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2174
    "
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2175
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2176
    <resource: #image>
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2177
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2178
    ^Icon
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2179
        constantNamed:'GenericToolbarIconLibrary edit_escapeHTMLCharacters'
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2180
        ifAbsentPut:[(Depth2Image new) width:15; height:15; bits:(ByteArray fromPackedString:'@@@@@P@@@@L@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@D@@@@A@@@@@0@@@@@@@@@B@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 84 84 84 170 170 170 255 255 255]; mask:((ImageMask new) width:15; height:15; bits:(ByteArray fromPackedString:'@@@@@A0@H @"@BH@E@@H@APLH(0!!@BJLGD @F@@@') ; yourself); yourself]
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2181
!
f4b89edf195d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5139
diff changeset
  2182
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2183
edit_image_15x15
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2184
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2185
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2186
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2187
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2188
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2189
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2190
    "
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2191
     self edit_image_15x15 inspect
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2192
     ImageEditor openOnClass:self andSelector:#edit_image_15x15
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2193
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2194
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2195
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2196
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2197
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2198
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2199
        constantNamed:'GenericToolbarIconLibrary edit_image_15x15'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2200
        ifAbsentPut:[(Depth4Image width:15 height:15) bits:(ByteArray fromPackedString:'
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2201
Y&Y&Y&Y&Y&A%UUUUUUUUXFUUUWU0UUU YUU5&W]4UVA%U9&Y$WUUXFUW&Y$RUUU"YWUY&W\RUVA%Q7%R\''\TX&Y7]4IHP''Y Y&](I8]6Y&I&Y&ZCY&Y&XF&Y
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2202
&YNI&Y% Y7]7!!8]7]6A"D!!HRD!!HRXFY&Y&Y&Y&Y ') colorMapFromArray:#[153 153 153 51 94 9 59 145 19 50 50 50 225 225 225 164 207 242 255 255 255 111 147 26 147 63 49 165 199 47]; yourself]
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2203
!
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2204
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2205
edit_italic_15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2206
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2207
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2208
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2209
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2210
     the ImageEditor may not be able to read the specification."
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2211
    "
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2212
     self edit_italic_15x15 inspect
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2213
     ImageEditor openOnClass:self andSelector:#edit_italic_15x15
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2214
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2215
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2216
    ^ Icon constantNamed:'GenericToolbarIconLibrary edit_italic_15x15'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2217
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2218
            (Depth2Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2219
                width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2220
                height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2221
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2222
                bitsPerSample:(#[ 2 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2223
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2224
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2225
                            fromPackedString:'@@@@@P@@@@L@@@@@@@@@@ @@B@@@@P@@@@@P@@@D@@D@@D@A@A@@@0@A@@@@@@@B@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2226
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2227
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2228
                            width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2229
                            height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2230
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2231
                                        fromPackedString:'@@@@@@@@@_@@8@G@@\@C @N@A0@G@A>@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2232
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2233
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2234
        ]
4665
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2235
!
138716ae0e55 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4652
diff changeset
  2236
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2237
padLockGold15x15Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2238
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2239
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2240
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2241
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2242
     the ImageEditor may not be able to read the specification."
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2243
    "
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2244
     self padLockGold15x15Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2245
     ImageEditor openOnClass:self andSelector:#padLockGold15x15Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2246
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2247
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  2248
    ^ Icon constantNamed:'GenericToolbarIconLibrary class padLockGold15x15Icon'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2249
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2250
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2251
                width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2252
                height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2253
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2254
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2255
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2256
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2257
                            fromPackedString:'
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2258
^G!!8]3<0P4MZ$@@@^G!!8^G!!7@C1\K8TLD8<@@G!!8(J@AI1H=NH,[ 6MR@JB (J@*O$0UH)9X[4M;@JB IRP,H3X"IRT%DU-T@BT%S$6N%WVJS$9NN%NL@D9N
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2259
S)%VU2:AVTPGA%TDRFENS"@<(UE&^&X;YRZ"R3QNYG@NL6@!!Q9Z[!!16HG8Y$S64MZ8I*E4FS F8(QWIO''1)1$T@VFG8Y%A2MB@._''9\2@2-?P"4E[DZ\LP._
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2260
D@$NEG1(Y2$BZW6X!!I(PI@*R^UA6C954RU4^\5<@IH%_R$)JR$)JR$)JW8$@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2261
                colorMapFromArray:#[ 132 141 152 147 150 154 250 223 1 246 214 0 205 172 133 238 195 0 213 180 146 217 186 150 188 136 0 206 151 0 183 125 9 208 208 202 196 204 214 255 255 210 255 255 219 210 178 65 242 242 235 106 112 117 96 107 126 250 255 255 255 241 0 154 154 151 255 227 0 67 35 0 52 17 0 253 211 0 208 159 0 167 178 193 222 168 0 248 231 45 208 174 26 199 152 26 225 184 36 255 249 75 220 220 215 77 88 108 241 241 235 245 245 239 255 250 109 242 249 255 255 255 142 255 237 1 142 148 162 242 212 1 143 154 176 174 133 0 222 189 144 169 179 192 177 184 193 184 129 0 255 255 194 253 241 60 210 210 205 214 214 209 77 83 92 230 230 225 98 106 114 243 243 238 117 117 114 255 252 115 255 255 255 115 123 147 130 140 156 152 156 159 241 210 0 53 18 0 151 116 0 162 170 184 218 187 150 193 143 4 220 165 0 206 188 46 181 130 21 204 173 44 206 206 201 208 167 44 72 84 108 240 240 234 244 244 238 243 243 237 212 182 79 255 255 126 131 135 141 119 133 159 132 141 163 195 162 126 219 188 133 218 185 135 180 180 176 221 190 150 175 181 191 176 183 196 181 189 201 202 170 38 209 209 204 207 207 202 251 241 74 229 229 224 238 238 233 226 234 245 244 244 237 255 251 113 255 255 124 255 241 2 255 234 3 249 219 0 255 249 29 252 243 30 227 181 0 212 165 5 222 170 0 173 179 194 216 171 19 255 255 198 208 208 203 156 90 7 206 175 50 91 91 95 211 180 71 242 242 237 246 246 241 212 182 80 255 255 123 129 137 152 255 239 8 251 223 0 59 25 0 251 215 0 228 183 0 222 191 149 249 238 43 177 186 197 187 129 0 186 194 206 209 209 203 249 238 67 255 255 211 226 226 221 235 235 229 100 103 111 76 93 127 255 255 112 88 104 139 130 135 148 149 155 158 247 218 0 224 194 126 255 217 0 228 184 0 13 30 68 161 138 32 204 152 0 255 255 53 206 155 18 207 207 201 255 250 72 255 255 82 209 176 59 232 232 227 243 243 236 245 245 240 255 255 115 255 255 251 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2262
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2263
                            width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2264
                            height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2265
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2266
                                        fromPackedString:'C<D_8S?1OOD8\S!!1_?5??W?=_?5??W?=_?5??S?9');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2267
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2268
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2269
        ]
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2270
!
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2271
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2272
padLockGoldOpen15x15Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2273
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2274
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2275
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2276
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2277
     the ImageEditor may not be able to read the specification."
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2278
    "
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2279
     self padLockGoldOpen15x15Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2280
     ImageEditor openOnClass:self andSelector:#padLockGoldOpen15x15Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2281
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2282
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2283
    ^ Icon 
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  2284
        constantNamed:'GenericToolbarIconLibrary padLockGoldOpen15x15Icon'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2285
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2286
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2287
                width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2288
                height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2289
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2290
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2291
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2292
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2293
                            fromPackedString:'
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2294
^G!!8]3<0P4MZ$@@@^G!!8^G @@C1\K8TLD8<@@G!!8(J@@I1H=NH,[ 6MR@JB (J@@O$0UH)9X[4M;@JB IRP@@@@"IRT%DU-T@BT%S$4@@@@@S$9NN%NL@D9N
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2295
S)%VU2:AVTPGA%TDRFENS"@<(UE&^&X;YRZ"R3QNYG@NL6@!!Q9Z[!!16HG8Y$S64MZ8I*E4FS F8(QWIO''1)1$T@VFG8Y%A2MB@._''9\2@2-?P"4E[DZ\LP._
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2296
D@$NEG1(Y2$BZW6X!!I(PI@*R^UA6C954RU4^\5<@IH%_R$)JR$)JR$)JW8$@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2297
                colorMapFromArray:#[ 132 141 152 147 150 154 250 223 1 246 214 0 205 172 133 238 195 0 213 180 146 217 186 150 188 136 0 206 151 0 183 125 9 208 208 202 196 204 214 255 255 210 255 255 219 210 178 65 242 242 235 106 112 117 96 107 126 250 255 255 255 241 0 154 154 151 255 227 0 67 35 0 52 17 0 253 211 0 208 159 0 167 178 193 222 168 0 248 231 45 208 174 26 199 152 26 225 184 36 255 249 75 220 220 215 77 88 108 241 241 235 245 245 239 255 250 109 242 249 255 255 255 142 255 237 1 142 148 162 242 212 1 143 154 176 174 133 0 222 189 144 169 179 192 177 184 193 184 129 0 255 255 194 253 241 60 210 210 205 214 214 209 77 83 92 230 230 225 98 106 114 243 243 238 117 117 114 255 252 115 255 255 255 115 123 147 130 140 156 152 156 159 241 210 0 53 18 0 151 116 0 162 170 184 218 187 150 193 143 4 220 165 0 206 188 46 181 130 21 204 173 44 206 206 201 208 167 44 72 84 108 240 240 234 244 244 238 243 243 237 212 182 79 255 255 126 131 135 141 119 133 159 132 141 163 195 162 126 219 188 133 218 185 135 180 180 176 221 190 150 175 181 191 176 183 196 181 189 201 202 170 38 209 209 204 207 207 202 251 241 74 229 229 224 238 238 233 226 234 245 244 244 237 255 251 113 255 255 124 255 241 2 255 234 3 249 219 0 255 249 29 252 243 30 227 181 0 212 165 5 222 170 0 173 179 194 216 171 19 255 255 198 208 208 203 156 90 7 206 175 50 91 91 95 211 180 71 242 242 237 246 246 241 212 182 80 255 255 123 129 137 152 255 239 8 251 223 0 59 25 0 251 215 0 228 183 0 222 191 149 249 238 43 177 186 197 187 129 0 186 194 206 209 209 203 249 238 67 255 255 211 226 226 221 235 235 229 100 103 111 76 93 127 255 255 112 88 104 139 130 135 148 149 155 158 247 218 0 224 194 126 255 217 0 228 184 0 13 30 68 161 138 32 204 152 0 255 255 53 206 155 18 207 207 201 255 250 72 255 255 82 209 176 59 232 232 227 243 243 236 245 245 240 255 255 115 255 255 251 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2298
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2299
                            width:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2300
                            height:15;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2301
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2302
                                        fromPackedString:'C<D_8Q?1GOD@\PA1_?5??W?=_?5??W?=_?5??S?9');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2303
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2304
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2305
        ]
4337
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2306
!
Claus Gittinger <cg@exept.de>
parents: 4335
diff changeset
  2307
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2308
smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2309
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2310
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2311
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2312
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2313
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2314
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2315
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2316
     self smiley_angry inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2317
     ImageEditor openOnClass:self andSelector:#smiley_angry
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2318
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2319
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2320
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2321
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2322
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2323
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2324
        constantNamed:#'GenericToolbarIconLibrary class smiley_angry'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2325
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2326
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
  2327
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
  2328
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
  2329
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2330
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2331
smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2332
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2333
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2334
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2335
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2336
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2337
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2338
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2339
     self smiley_biggrin inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2340
     ImageEditor openOnClass:self andSelector:#smiley_biggrin
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2341
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2342
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2343
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2344
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2345
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2346
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2347
        constantNamed:#'GenericToolbarIconLibrary class smiley_biggrin'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2348
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2349
@ 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
  2350
@@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
  2351
@ 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
  2352
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2353
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2354
smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2355
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2356
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2357
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2358
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2359
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2360
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2361
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2362
     self smiley_cool inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2363
     ImageEditor openOnClass:self andSelector:#smiley_cool
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2364
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2365
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2366
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2367
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2368
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2369
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2370
        constantNamed:#'GenericToolbarIconLibrary class smiley_cool'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2371
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2372
@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@ HB@ HB@ HB@@@@@@@B@ HB@ HB@ HB@ @@@@@B@ @@@ HB@@@B@ @@@@@@@@@@@@H@@@@@@@@@
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2373
@@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
  2374
@@@@@ 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
  2375
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2376
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2377
smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2378
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2379
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2380
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2381
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2382
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2383
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2384
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2385
     self smiley_eek inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2386
     ImageEditor openOnClass:self andSelector:#smiley_eek
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2387
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2388
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2389
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2390
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2391
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2392
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2393
        constantNamed:#'GenericToolbarIconLibrary class smiley_eek'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2394
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2395
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2396
@@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
  2397
@@@@@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
  2398
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2399
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2400
smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2401
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2402
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2403
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2404
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2405
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2406
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2407
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2408
     self smiley_frown inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2409
     ImageEditor openOnClass:self andSelector:#smiley_frown
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2410
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2411
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2412
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2413
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2414
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2415
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2416
        constantNamed:#'GenericToolbarIconLibrary class smiley_frown'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2417
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2418
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2419
@@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
  2420
@@@@@ 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
  2421
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2422
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2423
smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2424
    "This resource specification was automatically generated
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2425
     by the ImageEditor of ST/X."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2426
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2427
    "Do not manually edit this!! If it is corrupted,
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2428
     the ImageEditor may not be able to read the specification."
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2429
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2430
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2431
     self smiley_mhmh inspect
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2432
     ImageEditor openOnClass:self andSelector:#smiley_mhmh
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2433
     Icon flushCachedIcons
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2434
    "
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2435
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2436
    <resource: #image>
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2437
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2438
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2439
        constantNamed:#'GenericToolbarIconLibrary class smiley_mhmh'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2440
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3159
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2441
@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  2442
@@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
  2443
@@@@@ 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
  2444
!
29f7d422c8df *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3158
diff changeset
  2445
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2446
smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2447
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2448
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2449
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2450
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2451
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2452
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2453
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2454
     self smiley_ok inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2455
     ImageEditor openOnClass:self andSelector:#smiley_ok
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2456
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2457
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2458
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2459
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2460
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2461
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2462
        constantNamed:#'GenericToolbarIconLibrary class smiley_ok'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2463
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2464
@ 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
  2465
@@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
  2466
@ 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
  2467
!
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2468
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2469
smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2470
    "This resource specification was automatically generated
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2471
     by the ImageEditor of ST/X."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2472
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2473
    "Do not manually edit this!! If it is corrupted,
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2474
     the ImageEditor may not be able to read the specification."
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2475
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2476
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2477
     self smiley_smile inspect
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2478
     ImageEditor openOnClass:self andSelector:#smiley_smile
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2479
     Icon flushCachedIcons
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2480
    "
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2481
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2482
    <resource: #image>
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2483
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2484
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2485
        constantNamed:#'GenericToolbarIconLibrary class smiley_smile'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2486
        ifAbsentPut:[(Depth8Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3158
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2487
@ 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
  2488
@@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
  2489
@ 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
  2490
! !
31f443e9cd26 smileys
Claus Gittinger <cg@exept.de>
parents: 3139
diff changeset
  2491
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2492
!GenericToolbarIconLibrary class methodsFor:'image specs-16x16'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2493
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2494
back16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2495
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2496
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2497
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2498
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2499
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2500
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2501
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2502
     self back16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2503
     ImageEditor openOnClass:self andSelector:#back16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2504
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2505
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2506
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2507
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2508
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2509
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2510
        constantNamed:'GenericToolbarIconLibrary back16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2511
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2512
@@@@@@@@@@@@@@@@@@@@@@@@@@T@@@@@@@@@D @@@@@@@@D#@@@@@@@@D#L@@@@@@@D#L2UUH@@@D#L3L3M @@T#L3L3L6@@@DX3L3L3X@@@AFL3Y&Y @@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2513
Q#L@@@@@@@@DX0@@@@@@@@AF@@@@@@@@@@P@@@@@@@@@@@@@@@@b') colorMapFromArray:#[0 0 0 255 255 255 0 255 255 0 192 192 0 64 64 192 255 255 0 128 128] mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@A @N@A8@O A?<O?1??O?<_?0??A?<C8@G @N@@X@b'); yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2514
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2515
5329
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2516
bookmarks16x16
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2517
    "This resource specification was automatically generated
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2518
     by the ImageEditor of ST/X."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2519
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2520
    "Do not manually edit this!! If it is corrupted,
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2521
     the ImageEditor may not be able to read the specification."
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2522
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2523
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2524
     self bookmarks16x16 inspect
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2525
     ImageEditor openOnClass:self andSelector:#bookmarks16x16
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2526
     Icon flushCachedIcons
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2527
    "
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2528
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2529
    <resource: #image>
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2530
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2531
    ^Icon
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2532
        constantNamed:'GenericToolbarIconLibrary bookmarks16x16'
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2533
        ifAbsentPut:[(Depth8Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2534
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@A@@@@@@@@@@@@@@@@@@D@ P@@@@@@@@@@@@@@@@D@ DBA@@@@@@@@@@@@@@@A@HA@ P@@@@@@@@@A@PDA@HA@PDB
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2535
A@PD@@@@A@HB@ HA@PDA@PHB@ PA@@@D@PDA@PDA@PDA@PDD@@@@@@PA@@@@@@@@@@DD@@@@@@@@A@D@@@@@@@DD@@@@@@@@@@PA@@@@@@@AA@@@@@@@@@@D
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2536
@P@@@P@@@PP@@@@@@@@D@ @A@PPA@P@BA@@@@@@@A@DAA@P@A@PA@PP@@@@@@P@DA@@@@@@@A@P@@P@@@@@A@@@@@@@@@@@@@P@@@@@a') ; colorMapFromArray:#[240 151 26 255 213 5 245 234 120 240 243 250 240 76 0]; mask:((Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@P@C @N@A<@G0O?>??9??C?8G?@_<A?0O? >>G <H@ b') ; yourself); yourself]
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2537
!
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  2538
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2539
bottom16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2540
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2541
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2542
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2543
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2544
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2545
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2546
     self bottom16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2547
     ImageEditor openOnClass:self andSelector:#bottom16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2548
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2549
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2550
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class bottom16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2551
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2552
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2553
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2554
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2555
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2556
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2557
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2558
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2559
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2560
@@@@@@@@@@@@@DQDQD@@@@@@QUY"P@@@@@AEH"M@@@@@@DT"H4@@@@@@Q"H#P@@@QDQAH"MDQDAFD"H"H"H0P@Q!!H"H"H0P@@DXRH"H0P@@@AFD"H0P@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2561
Q!!H0P@@@@@@DX0P@@@@@@@A@P@@@@@QDQDQDQDP@ADQDQDQDQ@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2562
                colorMapFromArray:#[ 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255 192 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2563
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2564
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2565
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2566
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2567
                                        fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C G?<_?0b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2568
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2569
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2570
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2571
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2572
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2573
browseIt16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2574
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2575
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2576
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2577
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2578
     the ImageEditor may not be able to read the specification."
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2579
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2580
     self browseIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2581
     ImageEditor openOnClass:self andSelector:#browseIt16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2582
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2583
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2584
    ^ Icon constantNamed:'GenericToolbarIconLibrary class browseIt16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2585
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2586
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2587
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2588
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2589
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2590
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2591
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2592
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2593
                            fromPackedString:'
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2594
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDPXB@@@@D3L0XCT@@@@SL0Y MP@@@BUPY!!@@@@@@@@Y!!E&X@@@@@Y!!E&X@@@@@@@A&X@@@@@@ADFXADR@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2595
E@XDQDT@@@@ XEUUUP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2596
                colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 127 127 127 248 252 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2597
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2598
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2599
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2600
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2601
                                        fromPackedString:'@@@@HG?8_?!!?>G?8_?1?>A?0O?8_?!!?>G?8_? P@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2602
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2603
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2604
        ]
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2605
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  2606
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2607
bugGrey16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2608
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2609
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2610
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2611
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2612
     the ImageEditor may not be able to read the specification."
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2613
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2614
     self bugGrey16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2615
     ImageEditor openOnClass:self andSelector:#bugGrey16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2616
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2617
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2618
    ^ Icon constantNamed:'GenericToolbarIconLibrary class bugGrey16x16Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2619
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2620
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2621
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2622
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2623
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2624
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2625
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2626
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2627
                            fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2628
@@@@@@@@@@@@@@@@@@@@@@@@@@@GA0@NC @GA0\@@@@@@@@G@@ IB ,LA0@G@@@@@@@@C @PDQHRD1P@C @@@@@@@@@WFA$Z@!!,\GP@@@@@@@@@@G2@@HRH[
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2629
H2P@@@@@@@@@I"\(JR(+KB4.I @@@@@@@B<0LSH3MCT6M3 @@@@@@C$:N30=O#=@PTIC\P@@@GEGRD%JR39LST9O@@A1@@AQ@EISUEUVU5!!YV%,@TP@@@@A]
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2630
W%= XVI#YFU&@@@@@@A1W#!!(ZV)+[F5.[7D@@@@@\PAX\&53]GU6]0A1@@@@@G$@@@A;_G1=@@@@^P@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2631
                colorMapFromArray:#[ 180 180 180 237 237 237 189 189 189 255 255 255 243 243 243 250 250 250 246 246 246 137 137 137 255 255 255 13 13 13 23 23 23 25 25 25 8 8 8 202 202 202 207 207 207 255 255 255 84 84 84 5 5 5 1 1 1 4 4 4 56 56 56 255 255 255 253 253 253 19 19 19 71 71 71 169 169 169 197 197 197 150 150 150 58 58 58 0 0 0 250 250 250 207 207 207 232 232 232 135 135 135 116 116 116 180 180 180 169 169 169 255 255 255 201 201 201 255 255 255 255 255 255 255 255 255 234 234 234 199 199 199 255 255 255 240 240 240 224 224 224 185 185 185 255 255 255 255 255 255 255 255 255 253 253 253 224 224 224 255 255 255 234 234 234 230 230 230 187 187 187 142 142 142 179 179 179 255 255 255 255 255 255 255 255 255 251 251 251 226 226 226 255 255 255 220 220 220 224 224 224 180 180 180 159 159 159 255 255 255 161 161 161 255 255 255 179 179 179 255 255 255 255 255 255 255 255 255 230 230 230 249 249 249 207 207 207 210 210 210 255 255 255 103 103 103 184 184 184 244 244 244 255 255 255 255 255 255 250 250 250 216 216 216 213 213 213 187 187 187 201 201 201 193 193 193 255 255 255 187 187 187 212 212 212 227 227 227 226 226 226 208 208 208 183 183 183 183 183 183 184 184 184 192 192 192 203 203 203 194 194 194 217 217 217 201 201 201 182 182 182 173 173 173 178 178 178 201 201 201 189 189 189 235 235 235 255 255 255 124 124 124 189 189 189 204 204 204 203 203 203 199 199 199 188 188 188 226 226 226 255 255 255 130 130 130 255 255 255 194 194 194 182 182 182 198 198 198 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2632
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2633
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2634
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2635
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2636
                                        fromPackedString:'@@@M.A_(E> O<@?0G? _>C?<_?)_>!!?8O?0/=BOD@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2637
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2638
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2639
        ]
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2640
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2641
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2642
bugRed16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2643
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2644
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2645
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2646
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2647
     the ImageEditor may not be able to read the specification."
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2648
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2649
     self bugRed16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2650
     ImageEditor openOnClass:self andSelector:#bugRed16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2651
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2652
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2653
    ^ Icon constantNamed:'GenericToolbarIconLibrary class bugRed16x16Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2654
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2655
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2656
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2657
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2658
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2659
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2660
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2661
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2662
                            fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2663
@@@@@@@@@@@@@@@@@@@@@@@@@@@JN0A9]0@]PP@@@@@@@@@!!@F\BAB$A!! @!!@@@@@@@@F 6IRRP$[S=UF @@@@@@@DHCPC^EN6.HRH(@@@@@@@A&WP$UZW)+
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2664
EG4K@@@@@@@@W&VKLR0%KS4X 0@@@@@@@G<0G(0[E''Y_FQL@@@@@@E!!>UELL!!41QNC1,MX4@@E(_M&QRGGQKXAH9@F)Z@@AC@E-"TFLW F9FWBX@P0@@L AJ
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2665
 R]/VU]EH!!EM@CH@@@@*BHI0Q3LN_C((K"(@@@BNU @G\PVD\$8F]PAV# @@ZG,@@B=!!S4<+^@@@^6 @@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2666
                colorMapFromArray:#[ 165 43 7 6 6 6 10 10 10 18 6 2 18 18 18 171 89 52 167 60 24 184 100 74 173 141 131 188 163 150 187 187 187 213 158 142 254 157 105 214 207 206 153 55 4 237 237 237 245 245 245 165 76 37 181 80 27 169 50 15 145 132 125 143 140 139 192 108 62 220 91 21 188 114 80 193 127 92 163 163 163 212 140 101 253 132 65 197 197 197 253 159 107 212 212 212 230 230 230 108 108 108 160 78 34 254 254 254 1 1 1 169 104 68 172 61 26 198 90 33 168 58 20 20 20 21 153 153 153 175 71 38 196 132 98 230 118 58 192 159 151 212 158 142 248 159 112 253 172 130 228 228 228 162 59 4 243 243 243 125 125 125 164 42 5 133 133 133 192 90 35 177 108 72 171 101 64 149 149 149 188 122 87 205 115 67 254 253 253 47 29 23 57 52 50 194 194 194 201 196 196 81 81 81 227 227 227 164 58 0 165 66 14 176 78 26 0 0 0 4 4 4 164 73 45 202 89 27 195 100 49 176 88 60 170 89 52 166 43 6 234 92 17 240 107 36 253 124 53 253 144 84 252 152 100 208 200 199 98 98 98 163 57 0 112 112 112 186 65 0 127 127 127 166 53 18 171 97 60 178 84 46 177 72 39 202 101 47 219 95 28 173 67 35 209 110 60 249 100 19 237 131 75 240 144 95 216 161 145 206 206 206 225 225 225 106 106 106 240 240 240 118 118 118 165 42 4 3 3 3 189 75 14 202 71 0 185 106 63 168 60 23 173 105 68 254 252 252 218 110 51 193 111 85 248 116 44 191 191 191 216 165 148 205 205 205 91 91 91 102 102 102 156 72 26 147 66 37 164 40 3 168 49 12 191 78 17 182 83 38 166 55 18 178 73 42 174 105 68 155 155 155 159 159 159 214 128 81 48 44 43 71 46 36 199 194 194 253 165 117 254 177 137 231 231 231 238 238 238 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2667
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2668
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2669
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2670
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2671
                                        fromPackedString:'@@@M,A_(G? _>A?8G? _>C?>_?9_>%?:O?1/=&_&@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2672
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2673
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2674
        ]
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2675
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2676
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2677
bugYellow16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2678
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2679
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2680
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2681
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2682
     the ImageEditor may not be able to read the specification."
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2683
    "
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2684
     self bugYellow16x16Icon inspect
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2685
     ImageEditor openOnClass:self andSelector:#bugYellow16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2686
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2687
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2688
    ^ Icon constantNamed:'GenericToolbarIconLibrary class bugYellow16x16Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2689
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2690
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2691
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2692
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2693
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2694
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2695
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2696
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2697
                            fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2698
@@@@@@@@@@@@@@@@@@@@@@@@@@@JN0A9]0@]PP@@@@@@@@@!!@F\BAB$A!! @!!@@@@@@@@F 6IRRP$[S=UF @@@@@@@DHCPC^EN6.HRH(@@@@@@@A&WP$UZW)+
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2699
EG4K@@@@@@@@W&VKLR0%KS4X 0@@@@@@@G<0G(0[E''Y_FQL@@@@@@E!!>UELL!!41QNC1,MX4@@E(_M&QRGGQKXAH9@F)Z@@AC@E-"TFLW F9FWBX@P0@@L AJ
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2700
 R]/VU]EH!!EM@CH@@@@*BHI0Q3LN_C((K"(@@@BNU @G\PVD\$8F]PAV# @@ZG,@@B=!!S4<+^@@@^6 @@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2701
                colorMapFromArray:#[ 165 154 7 6 6 6 10 10 10 18 17 2 18 18 18 170 171 52 167 160 24 184 177 74 173 170 131 186 188 150 187 187 187 213 208 142 247 254 105 214 213 206 147 153 4 237 237 237 245 245 245 164 165 37 174 181 27 169 158 15 144 145 125 143 143 139 185 192 62 210 220 21 186 188 80 188 193 92 163 163 163 206 212 101 242 253 65 197 197 197 245 253 107 212 212 212 230 230 230 108 108 108 154 160 34 254 254 254 1 1 1 163 169 68 172 163 26 190 198 33 168 162 20 21 20 21 153 153 153 175 167 38 191 196 98 222 230 58 192 188 151 212 207 142 242 248 112 248 253 130 228 228 228 154 162 4 243 243 243 125 125 125 164 153 5 133 133 133 184 192 35 172 177 72 166 171 64 149 149 149 183 188 87 198 205 67 254 254 253 47 46 23 57 57 50 194 194 194 201 199 196 81 81 81 227 227 227 155 164 0 158 165 14 169 176 26 0 0 0 4 4 4 164 156 45 192 202 27 188 195 49 176 169 60 168 170 52 166 155 6 224 234 17 230 240 36 242 253 53 244 253 84 246 252 100 208 206 199 98 98 98 155 163 0 112 112 112 177 186 0 127 127 127 166 157 18 167 171 60 178 176 46 177 169 39 194 202 47 209 219 28 173 164 35 204 209 60 237 249 19 230 237 75 234 240 95 216 211 145 206 206 206 225 225 225 106 106 106 240 240 240 118 118 118 165 155 4 3 3 3 180 189 14 192 202 0 179 185 63 168 161 23 167 173 68 254 253 252 209 218 51 193 187 85 237 248 44 191 191 191 216 213 148 205 205 205 91 91 91 102 102 102 149 156 26 147 143 37 164 153 3 168 158 12 182 191 17 180 182 38 166 159 18 178 168 42 169 174 68 155 155 155 159 159 159 207 214 81 48 47 43 71 70 36 199 197 194 246 253 117 249 254 137 231 231 231 238 238 238 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2702
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2703
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2704
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2705
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2706
                                        fromPackedString:'@@@M,A_(G? _>A?8G? _>C?>_?9_>%?:O?1/=&_&@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2707
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2708
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2709
        ]
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2710
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
  2711
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2712
centerAdjust16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2713
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2714
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2715
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2716
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2717
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2718
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2719
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2720
     self centerAdjust16x16Icon inspect
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2721
     ImageEditor openOnClass:self andSelector:#centerAdjust16x16Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2722
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2723
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2724
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2725
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2726
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2727
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2728
        constantNamed:'GenericToolbarIconLibrary centerAdjust16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  2729
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@@DEUUUUAU@@UPUUUUTD@@@AAUUUUPUP@ETEUUUUA@@@@PUUUUTET@AUAUUUUPUUUUT@@@@@@@a') colorMapFromArray:#[0 0 0 255 255 255]; yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2730
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2731
5327
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2732
clock16x16Icon
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2733
    "This resource specification was automatically generated
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2734
     by the ImageEditor of ST/X."
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2735
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2736
    "Do not manually edit this!! If it is corrupted,
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2737
     the ImageEditor may not be able to read the specification."
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2738
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2739
    "
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2740
     self clock16x16Icon inspect
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2741
     ImageEditor openOnClass:self andSelector:#clock16x16Icon
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2742
     Icon flushCachedIcons
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2743
    "
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2744
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2745
    <resource: #image>
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2746
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2747
    ^Icon
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2748
        constantNamed:'GenericToolbarIconLibrary clock16x16Icon'
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2749
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@]0A7@O^@<HC? G<@_0@\@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@\@G<@?8C? _?A?<G?0O>@?8A?@A0@@@@@@b') ; yourself); yourself]
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2750
!
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  2751
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2752
colorHistory16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2753
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2754
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2755
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2756
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2757
     the ImageEditor may not be able to read the specification."
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2758
    "
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2759
     self colorHistory16x16Icon inspect
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2760
     ImageEditor openOnClass:self andSelector:#colorHistory16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2761
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2762
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2763
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2764
        constantNamed:'GenericToolbarIconLibrary class colorHistory16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2765
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2766
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2767
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2768
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2769
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2770
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2771
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2772
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2773
                            fromPackedString:'
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2774
@@@@@@@@@@@EUUUUT@@@@@UUUUUP@@@@AUUUUU@@@@@EUUUUTB@@@@UUUUUPH@@@@@@@@@@ @@@@@"H"H"@0@@@BH"H"HC@@@@@@@@@@L@@@@@L3L3L0P@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2775
@3L3L3A@@@@@@@@@@D@@@@@DQDQDP@@@@@QDQDQ@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2776
                colorMapFromArray:#[ 1 104 205 255 255 255 255 0 0 0 255 0 0 0 255 255 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2777
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2778
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2779
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2780
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2781
                                        fromPackedString:'?<C?0O?@??C?<O?0??0??C?<O?<O?0??C?<C?0O?@?<b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2782
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2783
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2784
        ]
3941
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2785
!
65a4b8b36b58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2786
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2787
configure16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2788
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2789
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2790
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2791
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2792
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2793
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2794
     self configure16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2795
     ImageEditor openOnClass:self andSelector:#configure16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2796
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2797
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2798
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2799
        constantNamed:#'GenericToolbarIconLibrary class configure16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2800
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2801
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2802
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2803
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2804
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2805
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2806
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2807
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2808
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2809
@@@@@@@@@@@@@DH3\@@@@@@@ARH5\@@@@@@@ARM0@@@A\@DPH3\@@@D3LBH3M0@@@!!D3L3L3\@A!!H!!D3L3L7\@T1H"I1D3L7@@T5U2H!!D3L@@@A5UWH!!D0@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2810
@@@@L7H!!@@@@@@@@L7H@@@@@@@@@L0@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2811
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2812
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2813
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2814
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2815
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2816
                                        fromPackedString:'G8@_8@?09?C?>O?8??;?????_?<_?0O?@C<@C0@C@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2817
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2818
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2819
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2820
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2821
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2822
copy16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2823
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2824
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2825
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2826
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2827
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2828
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2829
     self copy16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2830
     ImageEditor openOnClass:self andSelector:#copy16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2831
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2832
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class copy16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2833
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2834
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2835
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2836
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2837
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2838
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2839
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2840
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2841
                            fromPackedString:'@@@@@@@@@@@* @@@J( @@BBEUP@*)*%@H@Z)$B*&BUP A**$J*X@I@@F**P@A @$@@Z*)@@EUUP@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2842
                colorMapFromArray:#[ 0 0 0 0 0 128 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2843
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2844
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2845
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2846
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2847
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2848
@@C<@O8@?0C?<O?8??3??/?>??;?? O>@?8C? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2849
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2850
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2851
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2852
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2853
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2854
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2855
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2856
cut16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2857
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2858
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2859
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2860
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2861
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2862
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2863
     self cut16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2864
     ImageEditor openOnClass:self andSelector:#cut16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2865
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2866
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2867
        ifAbsentPut:[
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  2868
            (Depth2Image new)
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  2869
                width:16 ;
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  2870
                height:16;
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  2871
                photometric:(#palette);
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  2872
                bitsPerSample:(#( 2 ));
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2873
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2874
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2875
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@E@@W@GR@%HBT IL@X@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2876
                colorMapFromArray:#[ 0 0 0 0 0 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2877
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2878
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2879
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2880
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2881
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2882
@@@BH@H @"@CX@E@@\@@ @G@@W@GR@%HBT IL@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2883
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2884
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2885
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2886
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2887
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2888
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2889
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2890
cut16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2891
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2892
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2893
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2894
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2895
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2896
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2897
     self cut16x16Icon2 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2898
     ImageEditor openOnClass:self andSelector:#cut16x16Icon2"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2899
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2900
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class cut16x16Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2901
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2902
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2903
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2904
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2905
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2906
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2907
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2908
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2909
                            fromPackedString:'@@@@@EUP@@A*%@@@Z)$@@FBUP@A**$@@X@I@@F**P@A @$@@Z*)@@EUUP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2910
                colorMapFromArray:#[ 0 0 0 0 0 128 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2911
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2912
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2913
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2914
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2915
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2916
@@C<@O9D?4S?1O?,?:#?.O>P?;#?+ C)@R$AJPD&@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2917
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2918
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2919
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2920
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2921
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2922
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2923
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2924
delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2925
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2926
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2927
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2928
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2929
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2930
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2931
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2932
     self delete16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2933
     ImageEditor openOnClass:self andSelector:#delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2934
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2935
    "
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2936
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2937
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2938
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2939
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2940
        constantNamed:'GenericToolbarIconLibrary class delete16x16Icon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  2941
        ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@0@'' LOA N\@_ @<@C0@_@C&@\LC P^@ 0@@@D@@@b') ; colorMapFromArray:#[255 255 255 65 65 65]; yourself]
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2942
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
  2943
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2944
desktop16x16Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2945
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2946
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2947
    ^self desktop16x16Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2948
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2949
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2950
desktop16x16Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2951
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2952
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2953
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2954
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2955
     the ImageEditor may not be able to read the specification."
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2956
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2957
     self desktop16x16Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2958
     ImageEditor openOnClass:self andSelector:#desktop16x16Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2959
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2960
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2961
    ^ Icon constantNamed:'GenericToolbarIconLibrary class desktop16x16Icon2'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2962
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2963
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2964
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2965
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2966
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2967
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2968
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2969
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2970
                            fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2971
@@@@@@@@@@@@@@@@@@@@@BL#H2L#_!!HSW@LDJB]J@%,#EF<9 %:CW44;JPY S&E-H1Q@]5L.T%EPA8U4X  =_2NAPP)%"A0?]R0I!!2<]F D#WP-6"W!!&UDH0
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2972
G 19CX(AH55#KV]UP3D_"7(NU3M(@RM]J39$U$P2HH1E_CQY^0D#WQ^D!!&$!!C85*VAAGDTXAH54YRBH[# >MZ''4PQ1E+@RL5RBTUH$=OS4=OS4=OS0D#OBH:
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2973
J''H@@@@@@@@@@@@AH3Y1\!!YKV%)ZV%)ZV%)Z@V0$RX@&\D0ENF87_0DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2974
                colorMapFromArray:#[ 53 53 53 165 184 209 191 203 219 217 221 225 225 228 230 222 226 231 59 101 158 67 116 189 82 134 196 72 125 201 80 118 190 76 115 189 82 141 218 93 152 223 87 149 230 56 122 226 91 156 241 103 168 246 176 189 203 189 200 211 8 51 135 118 198 49 16 82 167 41 81 155 255 255 255 107 153 185 99 137 181 102 158 195 71 118 197 87 142 207 77 136 216 60 122 218 62 126 225 47 112 220 52 136 255 163 179 196 173 187 202 247 62 14 214 219 224 220 224 230 227 229 232 56 98 156 255 218 89 58 102 183 64 118 197 62 107 191 83 123 191 82 137 205 64 123 210 58 119 216 55 120 222 97 160 234 95 159 239 149 151 153 58 58 58 179 195 214 210 218 226 14 57 138 24 178 255 46 89 152 117 120 123 95 132 173 52 100 190 67 118 197 81 118 187 82 118 188 61 119 208 57 116 213 52 113 217 84 148 234 111 155 206 97 162 243 114 178 250 186 198 209 207 215 226 41 142 195 227 230 232 41 84 150 68 109 161 132 133 133 70 117 189 74 119 191 79 120 191 86 125 192 63 118 208 59 114 206 52 111 210 92 154 232 85 150 238 101 165 242 55 55 55 176 193 214 204 211 218 8 52 137 27 70 143 37 80 149 63 105 160 89 125 167 77 129 193 68 109 186 53 106 201 79 120 194 65 117 205 62 112 200 107 149 198 45 106 211 71 137 232 111 155 207 164 180 197 171 189 212 194 206 221 11 55 137 224 227 229 60 124 168 33 110 194 0 0 0 72 123 192 65 117 197 71 113 191 84 121 190 68 116 201 88 147 220 81 143 227 110 154 204 90 154 237 84 150 238 165 181 198 167 186 210 201 209 217 8 51 136 22 66 143 32 75 147 36 80 161 71 121 190 45 101 200 77 132 203 76 120 196 71 116 198 104 144 191 68 131 221 70 135 228 63 129 229 48 112 220 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2975
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2976
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2977
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2978
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2979
                                        fromPackedString:'@@C??????????????????????????????????0@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2980
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2981
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  2982
        ]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2983
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  2984
5018
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  2985
desktopOSX16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2986
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2987
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2988
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2989
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2990
     the ImageEditor may not be able to read the specification."
5018
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  2991
    "
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  2992
     self desktopOSX16x16Icon inspect
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  2993
     ImageEditor openOnClass:self andSelector:#desktopOSX16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2994
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2995
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2996
    ^ Icon constantNamed:'GenericToolbarIconLibrary desktopOSX16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2997
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2998
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  2999
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3000
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3001
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3002
                            fromPackedString:'
5018
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  3003
@@@@@@@@@@@@@@@@@@@@@A)4\ =G60\QZ@@@R!!+G \4Z8:KP4MB(*JP>N#*"(&4=YK<RL0:^ EQEPLV^$D8#HM]]- &<$''3A06JF!!L;O%<V \8>B^-=S$6H7
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  3004
Q%]LV-R36@H\&MM=0JW -YD-E8T^Z-T5,TRT!!>\''X2HE2AU)9*D)P#DJ4X/DTM&,]\H,"Q!!K&]:>7#0T''149N@4^+%&*9KI0*5Y\M"#^6#/KK2EI:NSJBH2;
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3005
3G$+[&=,VEV&+YU^J''\3/P02*V,%XX98AEEB,K#"_;($IB9HR@NH"MYR1>D4Y;PK Z_\1!!BVP[%CW444@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3006
                colorMapFromArray:#[ 95 79 95 239 239 255 79 64 128 207 207 223 208 192 240 223 143 208 223 208 224 111 80 111 160 112 176 79 47 96 112 95 144 64 48 80 176 192 224 192 127 176 96 48 96 112 95 127 79 79 80 111 79 111 95 64 111 240 224 255 128 95 160 192 112 207 176 191 191 191 96 191 95 63 128 175 175 175 95 79 96 175 175 176 79 63 127 208 160 224 176 111 176 207 207 208 96 64 96 112 80 143 224 176 224 112 64 111 223 223 255 95 111 144 224 223 240 224 175 224 112 80 160 63 48 96 63 32 64 95 96 160 176 111 191 239 143 224 208 208 240 144 96 144 223 224 224 111 80 144 111 128 175 80 48 96 16 15 31 96 95 144 127 111 175 224 191 223 175 112 176 223 175 240 192 160 191 143 96 160 128 96 175 80 64 95 207 175 207 176 176 176 96 63 95 64 64 80 95 79 128 47 47 48 95 79 143 95 47 80 239 160 224 111 95 111 224 224 255 79 63 128 96 80 96 48 31 80 208 112 208 31 16 31 96 47 96 224 239 240 224 176 240 48 32 80 192 192 208 176 95 160 111 48 96 224 207 224 127 95 144 223 143 223 255 240 255 96 64 143 176 95 175 191 191 191 128 112 175 48 32 95 31 15 63 48 48 63 223 223 224 191 192 224 239 191 223 240 192 240 48 47 80 239 224 240 224 208 224 32 16 48 95 64 95 176 112 207 63 16 63 127 128 176 112 112 160 175 144 175 176 176 255 159 159 223 160 127 191 240 239 255 128 111 128 63 48 111 127 96 128 224 143 208 223 208 223 112 79 128 159 144 160 191 207 255 143 79 143 160 160 176 175 96 160 159 80 144 224 224 224 208 191 223 111 47 96 64 63 80 95 63 127 208 207 208 208 144 208 192 111 207 208 159 207 144 80 160 224 223 224 112 64 144 223 224 240 143 96 175 143 95 143 239 223 240 191 191 207 79 63 111 111 48 111 224 144 223 144 80 143 223 144 207 128 80 160 111 95 144 63 63 64 159 95 143 95 64 128 64 48 96 223 224 223 176 176 191 192 207 208 239 224 255 111 63 96 176 128 207 16 16 63 48 16 64 207 175 208 175 160 175 208 175 207 224 159 208 95 79 127 80 79 95 208 160 208 192 208 255 96 79 143 144 96 160 208 159 208 79 48 127 143 95 175 208 207 223 31 0 48 64 63 127 96 64 127 95 47 95 63 48 80 223 175 223 64 47 96 239 239 240 31 15 47 48 47 48 239 223 255 111 80 128 112 63 127 208 191 224 128 96 160 80 64 111 192 111 176 192 128 176 191 96 176 223 160 207 175 127 191 96 48 95 64 64 64 79 64 95 192 111 191 240 224 240 64 32 80 128 80 128 192 207 255 47 32 48 223 144 223 192 112 191 207 160 207 127 80 144 239 224 224 128 64 143 191 112 176 32 31 80 224 224 240 16 15 48 31 31 64 224 191 240 111 79 143 111 95 127 64 63 64 191 176 191 143 111 175 175 95 160 255 207 240 0 0 16 96 80 127 160 128 175 32 16 64 223 223 223 112 64 143 191 128 207 96 79 144 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3007
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3008
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3009
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3010
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3011
                                        fromPackedString:'@@C?????????????????????????????????????@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3012
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3013
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3014
        ]
5018
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  3015
!
7cd1d3611787 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5016
diff changeset
  3016
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3017
diff16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3018
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3019
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3020
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3021
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3022
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3023
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3024
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3025
     self diff16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3026
     ImageEditor openOnClass:self andSelector:#diff16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3027
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3028
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3029
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3030
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3031
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3032
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3033
        constantNamed:'GenericToolbarIconLibrary diff16x16Icon'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3034
        ifAbsentPut:[(Depth4Image width:16 height:15) bits:(ByteArray fromPackedString:'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3035
@@@@@@@@@@@BH"H"H @@@@HQDQDR@@@@@!!DQ@@@@@@@BDQ@QD @@@@HQ@QDR@@@@@!!DADQH@@@@BDPDQD @@@@HQ@QDR@@@@@!!DPDQH@@@@BDQD@@@@@@@HQ
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3036
DQDR@@@@@!!DQDQH@@@@BH"H"H @@@@@@@@@@@@@@')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3037
            colorMapFromArray:#[0 0 0 255 255 255 132 132 132]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3038
            mask:((ImageMask width:16 height:15) bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@'); yourself); yourself]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3039
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3040
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3041
diff16x16Icon2
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3042
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3043
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3044
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3045
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3046
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3047
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3048
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3049
     self diff16x16Icon2 inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3050
     ImageEditor openOnClass:self andSelector:#diff16x16Icon2
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3051
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3052
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3053
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3054
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3055
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3056
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3057
        constantNamed:'GenericToolbarIconLibrary diff16x16Icon2'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3058
        ifAbsentPut:[(Depth4Image width:16 height:15) bits:(ByteArray fromPackedString:'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3059
@@@@@@@@@@@DQDQDQ@@@@@P"IBH$@@@@ABL$@@@@@@@DH"@"I@@@@@P!!ABD$@@@@ABHDH"P@@@@DHPP!!I@@@@@P"ABH$@@@@ABL HRP@@@@DH"P@@@@@@@P!!
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3060
IBD$@@@@ABH$H"P@@@@DQDQDQ@@@@@@@@@@@@@@@')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3061
            colorMapFromArray:#[0 0 0 0 252 0 255 255 255 248 0 0 132 132 132]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3062
            mask:((ImageMask width:16 height:15) bits:(ByteArray fromPackedString:'@@A?0G?@_<A?8G?P_=A?4G?P_?A?>G?\_<9?1 @@'); yourself); yourself]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3063
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  3064
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3065
doIt16x16Icon
6005
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3066
    "This resource specification was automatically generated
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3067
     by the ImageEditor of ST/X."
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3068
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3069
    "Do not manually edit this!! If it is corrupted,
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3070
     the ImageEditor may not be able to read the specification."
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3071
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3072
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3073
     self doIt16x16Icon inspect
6005
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3074
     ImageEditor openOnClass:self andSelector:#doIt16x16Icon
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3075
     Icon flushCachedIcons
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3076
    "
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3077
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3078
    <resource: #image>
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3079
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3080
    ^Icon
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3081
        constantNamed:'GenericToolbarIconLibrary class doIt16x16Icon'
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3082
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3083
@@@@@@@@@@@@@@@@A@@@@@@@@@A@@@@@@@@@ADD@@@@@@@A@E@@@@@@@A@DP@@@@@@A@DS@@@@@@A@DSLQDD@@A@DSLQDD@@@@@@@QDD@@@@@@@ADD@@@@@@
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3084
@DDD@@@@@@@@ED@@@@@@@@@D@@@@@@@@@D@@@@@@@@@@@@@@@@@b')
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3085
            colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255 63 63 64]
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  3086
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@@X@C @^@C0@_@C?0_?C?8O?@C8@O@A8@G@@X@@@@b'); yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3087
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3088
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3089
down16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3090
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3091
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3092
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3093
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3094
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3095
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3096
     self down16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3097
     ImageEditor openOnClass:self andSelector:#down16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3098
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3099
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3100
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class down16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3101
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3102
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3103
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3104
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3105
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3106
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3107
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3108
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3109
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3110
@@@@@@@@@@@@@EUUUU@@@@@@U&@CT@@@@@AVL3QP@@@@@EX3ME@@@@@@TCL4T@@@UUURL3QUUUAPH3L3L3MAT@TBL3L3MAT@@E@#L3MAT@@@APH3MAT@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3111
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3112
                colorMapFromArray:#[ 192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3113
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3114
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3115
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3116
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3117
                                        fromPackedString:'@@@O8@? C>@O8@? ??;??''?<O? _<@? A<@C @D@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3118
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3119
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3120
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3121
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3122
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3123
edit16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3124
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3125
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3126
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3127
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3128
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3129
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3130
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3131
     self edit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3132
     ImageEditor openOnClass:self andSelector:#edit16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3133
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3134
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3135
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3136
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3137
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3138
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3139
        constantNamed:'GenericToolbarIconLibrary edit16x16Icon'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3140
        ifAbsentPut:[(Depth4Image width:16 height:17) bits:(ByteArray fromPackedString:'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3141
************L3L3L3L:.:(1DQ QDQ.5*#DQFADQ.5V*NH"H"H.5UZ(1DQ Q.5UW*#DQFA.5UWR*NH"H,%UWZ*(1DQ("UWZ**#DQF2H"PJ**NH""H''^ **(1
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3142
DYI7 1B**#DYYHLQDJ**N*B**** **(1DQ(QDQB*) @@@@@@@J*********** @a')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3143
            colorMapFromArray:#[0 0 0 255 255 255 255 220 168 220 220 220 64 0 0 255 128 0 48 48 48 192 88 0 195 195 195 88 88 88 160 160 160 255 168 88]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3144
            mask:((ImageMask width:16 height:17) bits:(ByteArray fromPackedString:'@@@?>3??O?<??3??O?<??#?<O?0??C?<O?0??C?<_?0@@@@a'); yourself); yourself]
3059
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
editcopy16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3148
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3149
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3150
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3151
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3152
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3153
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3154
     self editcopy16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3155
     ImageEditor openOnClass:self andSelector:#editcopy16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3156
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3157
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3158
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class editcopy16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3159
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3160
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3161
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3162
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3163
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3164
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3165
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3166
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3167
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3168
UUUU@@@@@@ATQDUP@@@@@EQDQRT@@@@@U@AEP%@@@@ATQDUUUUT@@EP@QCL5QU@@UDQDIBUEEPAT@@P@ITUATEQDIBH%QUUUU@A@@BUDL3UTIBH"ITQDEUUU
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3169
UUUPA@AE@@@@UDQDQDT@@@AT@D@@QP@@@EQDQDQE@@@@UUUUUUTb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3170
                colorMapFromArray:#[ 48 48 48 220 220 220 255 255 192 160 160 160 255 255 255 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3171
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3172
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3173
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3174
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3175
                                        fromPackedString:'?@C>@O<@?8C?<O?8??3??/??????????@?<C?0O?@?<b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3176
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3177
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3178
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3179
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3180
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3181
editcut16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3182
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3183
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3184
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3185
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3186
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3187
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3188
     self editcut16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3189
     ImageEditor openOnClass:self andSelector:#editcut16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3190
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3191
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3192
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class editcut16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3193
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3194
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3195
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3196
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3197
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3198
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3199
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3200
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3201
                            fromPackedString:'@@@@@@@@@@@@@@@4@@@@4@@@@4@@@@4@@@@4@@@@4@@@@4@@@@@$@@@@CP@@@@M@@@@@4@@@@CP@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3202
                colorMapFromArray:#[ 0 0 0 220 220 220 128 128 128 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3203
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3204
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3205
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3206
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3207
                                        fromPackedString:'@@A8A,0O1!!9"OC=8C?@C8@O C?@?^FH<1!!;LC7 F@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3208
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3209
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3210
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3211
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3212
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3213
editpaste16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3214
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3215
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3216
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3217
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3218
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3219
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3220
     self editpaste16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3221
     ImageEditor openOnClass:self andSelector:#editpaste16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3222
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3223
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3224
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3225
        constantNamed:#'GenericToolbarIconLibrary class editpaste16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3226
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3227
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3228
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3229
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3230
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3231
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3232
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3233
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3234
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3235
@@@@@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&
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3236
Y!!H3L#MQEFY&D"IRUUDVY&XRL2L3TPDQDQIRUUUQ@@@@DQDQDQDb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3237
                colorMapFromArray:#[ 192 192 0 0 0 0 255 255 255 48 48 48 220 220 220 255 255 192 160 160 160 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3238
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3239
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3240
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3241
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3242
                                        fromPackedString:'@XA??O?>??;??/?>??;??????????????????7??@?<b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3243
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3244
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3245
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3246
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3247
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3248
edittrash16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3249
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3250
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3251
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3252
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3253
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3254
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3255
     self edittrash16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3256
     ImageEditor openOnClass:self andSelector:#edittrash16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3257
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3258
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3259
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3260
        constantNamed:#'GenericToolbarIconLibrary class edittrash16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3261
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3262
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3263
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3264
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3265
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3266
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3267
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3268
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3269
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3270
@@@@@0@@@@@@@@N@H@@@@@@QE&Y@Y(@@@C!!!!DVX"H@@@ACNH"DP@@@@H"DP"Q0@@@@ XNDP''@@@@BA 8QB\@@@@HFC!!DI0@@@@ XNDP''@@@@BA 8QB\@@@@H
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3271
FC!!DI0@@@@ XNDP''@@@@@1 8QB\@@@@@@3"D@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3272
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3273
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3274
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3275
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3276
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3277
                                        fromPackedString:'A8@?>G?<_?0?>C?8O? ?>C?8O? ?>C?8O? ?>A?0A<@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3278
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3279
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3280
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3281
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3282
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3283
erase16x16Icon
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  3284
    <resource: #programImage>
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  3285
4040
01e4930b262f changed: #erase16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4012
diff changeset
  3286
    ^ self erase16x16Icon2
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  3287
!
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  3288
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  3289
erase16x16Icon1
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3290
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3291
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3292
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3293
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3294
     the ImageEditor may not be able to read the specification."
3977
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  3295
    "
fd0a3c053c34 added: #erase16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 3962
diff changeset
  3296
     self erase16x16Icon1 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3297
     ImageEditor openOnClass:self andSelector:#erase16x16Icon1"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3298
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3299
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon1'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3300
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3301
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3302
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3303
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3304
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3305
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3306
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3307
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3308
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3309
                colorMapFromArray:#[ 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3310
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3311
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3312
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3313
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3314
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3315
@@@8@#0LG!! GL@O @\@C8@\0C!! \BC0DN@@P@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3316
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3317
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3318
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3319
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3320
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3321
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3322
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3323
erase16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3324
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3325
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3326
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3327
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3328
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3329
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3330
     self erase16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3331
     ImageEditor openOnClass:self andSelector:#erase16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3332
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3333
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3334
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class erase16x16Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3335
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3336
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3337
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3338
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3339
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3340
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3341
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3342
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3343
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3344
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@3@@@C@@@@@0@3@C@A@@@@@ @0@A@@@@@@H@@A@@@@@@@C@C@@@@@@@C@@L@@@@@@C@PHC@@@@@@LP@B@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3345
L@@@@ @@@@@1@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3346
                colorMapFromArray:#[ 192 0 0 64 0 0 128 0 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3347
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3348
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3349
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3350
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3351
                                        fromPackedString:'@@@@@@@HCA0_O@_8@?@A8@O A7@FL@0XC@ H@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3352
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3353
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3354
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3355
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3356
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3357
exec16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3358
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3359
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3360
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3361
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3362
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3363
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3364
     self exec16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3365
     ImageEditor openOnClass:self andSelector:#exec16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3366
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3367
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3368
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class exec16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3369
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3370
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3371
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3372
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3373
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3374
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3375
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3376
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3377
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3378
@@@@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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3379
E7@G\P%0@G]0^U\G]0@@@@A1I0@@@@@@@@]0@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3380
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3381
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3382
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3383
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3384
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3385
                                        fromPackedString:'@X@[6C?<O?0_>G?>?''???7?>O?1??''?>N=0C0@F@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3386
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3387
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3388
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3389
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3390
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3391
exit16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3392
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3393
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3394
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3395
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3396
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3397
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3398
     self exit16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3399
     ImageEditor openOnClass:self andSelector:#exit16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3400
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3401
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3402
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class exit16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3403
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3404
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3405
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3406
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3407
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3408
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3409
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3410
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3411
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3412
@@@@@@@@@@@@@@@@@@@@@@@@@QDQ@@@@@@DRH"H"@@@@@RH H"H@@@@RH"@"H%@@@AH"HBH"T@@@D"H H"IP@@@RH"@"H%@@@AH"HBH"T@@@@"H H"TC@@@B
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3413
H"H"UP@@@@@EUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3414
                colorMapFromArray:#[ 0 0 0 255 255 255 220 220 220 128 128 128 93 93 93 160 160 160 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3415
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3416
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3417
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3418
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3419
                                        fromPackedString:'@@@G0A?0O? ?>G?<_?1??G?<_?0??C?8G?@G0@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3420
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3421
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3422
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3423
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3424
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3425
fileNew16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3426
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3427
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3428
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3429
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3430
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3431
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3432
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3433
     self fileNew16x16Icon inspect
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3434
     ImageEditor openOnClass:self andSelector:#fileNew16x16Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3435
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3436
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3437
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3438
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3439
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3440
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3441
        constantNamed:'GenericToolbarIconLibrary fileNew16x16Icon'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3442
        ifAbsentPut:[(Depth1Image width:16 height:16) bits:(ByteArray fromPackedString:' @F@@X@A#<FO4X?A#?&O>X?9#?&O>X?9#?&O>X@A0@Db')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3443
            colorMapFromArray:#[0 0 0 255 255 255]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3444
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3445
@@@@@A? G?@_>A?<G?0_?A?<G?0_?A?<G?0_?A?<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3446
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3447
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]
3059
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
fileOpen16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3451
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3452
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3453
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3454
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3455
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3456
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3457
     self fileOpen16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3458
     ImageEditor openOnClass:self andSelector:#fileOpen16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3459
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3460
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class fileOpen16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3461
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3462
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3463
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3464
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3465
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3466
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3467
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3468
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3469
                            fromPackedString:'0@@@@0@@@@@@@@@@@@@@@@@@@@@]@@@@M7]0@A7]4@@7P@@@GR**(CR**(@R**(@B**(@@@@@@@@@@@@<@@@@0@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3470
                colorMapFromArray:#[ 0 0 0 255 255 0 128 128 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3471
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3472
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3473
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3474
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3475
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3476
@@@@\@BJ@@Y0C/? ?>C?8O????;??O?8??C?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3477
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3478
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3479
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3480
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3481
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3482
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3483
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3484
fileSave16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3485
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3486
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3487
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3488
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3489
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3490
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3491
     self fileSave16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3492
     ImageEditor openOnClass:self andSelector:#fileSave16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3493
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3494
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class fileSave16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3495
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3496
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3497
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3498
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3499
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3500
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3501
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3502
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3503
                            fromPackedString:'0@@@@0@@@@@D**( AJ**@@R**!!@D**(PAJ**D@R**!!@E@@APAUUUT@T@@A@E@@(PAP@JD@T@B!!@@@@@@@@@@@0@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3504
                colorMapFromArray:#[ 0 0 0 128 128 0 212 208 200 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3505
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3506
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3507
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3508
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3509
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3510
@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??#?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3511
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3512
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3513
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3514
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3515
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3516
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3517
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3518
fileclose16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3519
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3520
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3521
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3522
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3523
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3524
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3525
     self fileclose16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3526
     ImageEditor openOnClass:self andSelector:#fileclose16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3527
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3528
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3529
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3530
        constantNamed:#'GenericToolbarIconLibrary class fileclose16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3531
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3532
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3533
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3534
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3535
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3536
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3537
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3538
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3539
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3540
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@H @@@@@BH H"@@@@@@@"H"@@@@@@@@H"@@@@@@@@H"H @@@@@@H"@"H@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3541
@"@@H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3542
                colorMapFromArray:#[ 0 0 0 93 93 93 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3543
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3544
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3545
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3546
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3547
                                        fromPackedString:'@@@@@@O C? _?A?<O?8??#?>O?8??!!?<G?0O>@O @@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3548
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3549
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3550
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3551
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3552
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3553
filter16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3554
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3555
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3556
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3557
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3558
     the ImageEditor may not be able to read the specification."
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3559
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3560
     self filter16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3561
     ImageEditor openOnClass:self andSelector:#filter16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3562
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3563
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3564
    ^ Icon constantNamed:'GenericToolbarIconLibrary filter16x16Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3565
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3566
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3567
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3568
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3569
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3570
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3571
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3572
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3573
                            fromPackedString:'
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3574
H1$YFQ$YFR$YFQ$DLA$DD"D:C 8NC 8NK@8NC 8NKA,@MP$^J2XH@R<CEQXVIPH@@@@5GA8"@A@LER4VKS\@@@@@@CTZG!!  CCHWIP,@@@@@@@@@F10*D0XV
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3575
KS\@@@@@@@@@@@@_BR<LC0,@@@@@@@@@@@@@@CXAHB$@@@@@@@@@@@@@@@@6@R@6@@@@@@@@@@@@@@@@M#P DP@@@@@@@@@@@@@@@CXAD2$@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3576
@@@.M@L8@@@@@@@@@@@@@@@@MR\ JP@@@@@@@@@@@@@@@@@5JC @@@@@@@@@@@@@@@@@@@H1@@@@@@@@@@@@@@@@@@@@B @@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3577
                colorMapFromArray:#[ 255 240 0 240 224 20 112 80 20 255 192 0 144 96 20 240 240 220 255 176 30 255 240 255 255 240 20 240 240 50 112 80 30 112 64 20 255 192 20 240 224 220 255 255 255 255 176 60 255 224 0 160 112 0 128 96 30 255 208 20 240 240 210 255 176 20 255 160 30 255 176 50 255 255 30 144 96 0 240 240 60 96 80 50 240 240 80 240 224 210 255 240 100 80 80 30 255 208 0 80 80 60 255 240 50 128 112 60 240 255 240 240 176 50 255 255 20 240 224 30 224 192 20 160 96 0 255 240 60 255 240 80 255 255 240 255 160 50 144 128 20 240 208 20 144 80 0 128 80 20 240 176 30 240 255 255 240 224 0 96 80 20 144 112 20 128 64 0 160 112 20 224 224 220 240 240 240 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3578
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3579
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3580
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3581
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3582
                                        fromPackedString:'?????7?>O?0_>@?0A>@C0@O@@<@C0@O@@<@A0@C@@D@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3583
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3584
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3585
        ]
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3586
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3587
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3588
filterBlue16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3589
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3590
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3591
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3592
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3593
     the ImageEditor may not be able to read the specification."
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3594
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3595
     self filterBlue16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3596
     ImageEditor openOnClass:self andSelector:#filterBlue16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3597
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3598
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3599
    ^ Icon constantNamed:'GenericToolbarIconLibrary filterBlue16x16Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3600
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3601
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3602
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3603
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3604
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3605
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3606
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3607
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3608
                            fromPackedString:'
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3609
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GDQDQDQD@@@B:Y&Y&X@@@@@P)&Y$@@@@@@LL"H@@@@@@@CFL@@@@@@@@AQ @@@@@@@@]]@@@@@@@@A;P@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3610
@H/@@@@@@@@@ U@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3611
                colorMapFromArray:#[ 0 0 0 52 70 80 100 136 150 96 130 150 80 110 130 64 98 120 92 124 140 40 52 60 32 42 50 112 148 170 88 118 130 64 88 100 76 102 120 80 116 130 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3612
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3613
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3614
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3615
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3616
                                        fromPackedString:'@@@@@@@@O? _<@? A<@C @N@@8@C @N@@8@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3617
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3618
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3619
        ]
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3620
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  3621
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3622
finish16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3623
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3624
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3625
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3626
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3627
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3628
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3629
     self finish16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3630
     ImageEditor openOnClass:self andSelector:#finish16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3631
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3632
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3633
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class finish16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3634
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3635
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3636
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3637
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3638
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3639
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3640
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3641
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3642
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3643
@@@@@@@@@@@@@@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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3644
QDH!!A@AD@@@@P!!A@@DP@@@AAA@@@Q@@@@DA@@@AD@@@@Q@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3645
                colorMapFromArray:#[ 0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3646
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3647
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3648
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3649
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3650
                                        fromPackedString:'@@@C@@NC@<LC87?3_?-??7??_?=?>7?3@>LC00NC@0@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3651
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3652
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3653
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3654
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3655
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3656
flagRed16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3657
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3658
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3659
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3660
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3661
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3662
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3663
     self flagRed16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3664
     ImageEditor openOnClass:self andSelector:#flagRed16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3665
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3666
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3667
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class flagRed16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3668
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3669
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3670
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3671
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3672
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3673
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3674
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3675
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3676
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3677
@@@@@@@@@@@@@@@F@@@@@@@@@FY @@@@@@@FA&@@@@@@Y&APY @@@FXEUPI&@@@@YUUSIBY @@A%T3IBI&@@@@X4QBI&Y @@A$QBI A&@@@@YBY @@Y @@@F
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3678
X@@@A&@@@@@@@@@@Y @@@@@@@@A&@@@@@@@@@@Y @@@@@@@@A&@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3679
                colorMapFromArray:#[ 195 195 195 93 93 93 192 0 0 255 192 192 255 0 0 255 255 255 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3680
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3681
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3682
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3683
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3684
                                        fromPackedString:'@@@A@@N@A8@?0O?@?>C?8G?0_3@>FA X@@0@C@@F@@Xb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3685
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3686
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3687
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3688
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3689
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3690
formatCode16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3691
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3692
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3693
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3694
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3695
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3696
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
     self formatCode16x16Icon inspect
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3699
     ImageEditor openOnClass:self andSelector:#formatCode16x16Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3700
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3701
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3702
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3703
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3704
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3705
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3706
        constantNamed:'GenericToolbarIconLibrary formatCode16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3707
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@AUUUUPP@@UTEUUUUAP@AUPUUUUTE@@AUAUUUUPUU@ATEUUUUAUT@EPUUUUTE@@@UAUUUUPUUUUT@@@@@@@a') colorMapFromArray:#[0 0 0 255 255 255]; yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3708
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3709
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3710
formatCodeAndAccept16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3711
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3712
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3713
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3714
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3715
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3716
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3717
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3718
     self formatCodeAndAccept16x16Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3719
     ImageEditor openOnClass:self andSelector:#formatCodeAndAccept16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3720
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3721
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3722
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3723
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3724
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3725
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3726
        constantNamed:'GenericToolbarIconLibrary formatCodeAndAccept16x16Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3727
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@AUUUUP)@@ATJUUUUB%@@EP)UUUTJT@@EB%UUUP)UT@DJUUUUB%UP@P)UUUTJT@@AB%UUUPUUUUT@@@@@@@a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3728
            colorMapFromArray:#[0 0 0 255 255 255 0 255 0]; yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3729
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  3730
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3731
forward16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3732
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3733
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3734
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3735
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3736
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3737
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3738
     self forward16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3739
     ImageEditor openOnClass:self andSelector:#forward16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3740
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3741
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3742
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class forward16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3743
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3744
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3745
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3746
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3747
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3748
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3749
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3750
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3751
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3752
@@@@@@@@@@@@@@@BH@@@@@@@@@IB@@@@@@@@@!!P @@@@@@@B@TH@@@@"H"H@EB@@@BL3PP@AP @@H0@@@@@TH@@$@@@@@@YR@BP@@@@@YR@@HFY&@@YR@@@"
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3753
H"H@YR@@@@@@@ YR@@@@@@@BYR@@@@@@@@IR@@@@@@@@@"@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3754
                colorMapFromArray:#[ 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255 0 64 64 0 128 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3755
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3756
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3757
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3758
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3759
                                        fromPackedString:'@@@A @G@@^@A<C?8O?0??#??O?8??C?8@_@A8@G@@X@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3760
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3761
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3762
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3763
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3764
4326
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3765
functionsOnly16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3766
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3767
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3768
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3769
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3770
     the ImageEditor may not be able to read the specification."
4326
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3771
    "
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3772
     self functionsOnly16x16Icon inspect
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3773
     ImageEditor openOnClass:self andSelector:#functionsOnly16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3774
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3775
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3776
    ^ Icon 
4326
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3777
        constantNamed:'GenericToolbarIconLibrary class functionsOnly16x16Icon'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3778
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3779
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3780
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3781
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3782
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3783
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3784
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3785
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3786
                            fromPackedString:'
4326
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3787
QDQDQDQDQDQDQDQDQDQDQDQEITQDQDQDQEA@UDQDQDQDMDQEETEQUDPTQEADQDDEQAQDEDEDEAEADQPTQAEDDTPTQAQDDTPQQAQDEDEDEAEDEDQPQDQAATPT
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3788
QDTUPUETQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDPb');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3789
                colorMapFromArray:#[ 63 63 95 0 0 0 3 0 2 0 1 0 159 191 191 191 191 191 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3790
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3791
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3792
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3793
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3794
                                        fromPackedString:'@@@@@A0@M @!!3"LCH$%:LRH1H$$#@2GN@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3795
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3796
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3797
        ]
4326
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3798
!
76da51d051a1 added: #functionsOnly16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4309
diff changeset
  3799
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3800
goto16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3801
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3802
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3803
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3804
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3805
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3806
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3807
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3808
     self goto16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3809
     ImageEditor openOnClass:self andSelector:#goto16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3810
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3811
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3812
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3813
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3814
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3815
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3816
        constantNamed:'GenericToolbarIconLibrary goto16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3817
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') colorMapFromArray:#[0 0 0] mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@C@@>@G0@?@C8@G@C@@^B@0<@G0@>@C8@O@BX@\@A0@b'); yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3818
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3819
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3820
grid16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3821
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3822
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3823
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3824
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3825
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3826
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3827
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3828
     self grid16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3829
     ImageEditor openOnClass:self andSelector:#grid16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3830
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3831
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3832
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3833
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3834
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3835
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3836
        constantNamed:'GenericToolbarIconLibrary grid16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3837
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'UUUUUTDDDDEAAAAAUUUUUTDDDDEAAAAAUUUUUTDDDDEAAAAAUUUUUTDDDDEAAAAAUUUUUTDDDDEAAAAAUUUUUP@a') colorMapFromArray:#[248 248 248 248 184 112 0 0 0]; yourself]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3838
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3839
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3840
gridAlign16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3841
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3842
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3843
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3844
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3845
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3846
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3847
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3848
     self gridAlign16x16Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3849
     ImageEditor openOnClass:self andSelector:#gridAlign16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3850
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3851
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3852
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3853
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3854
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3855
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3856
        constantNamed:'GenericToolbarIconLibrary gridAlign16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3857
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3858
H"H"H"H"H"H)$)$)$)$)$"&R&R&R&R&RH"H"H"H"H"H)$)$)$)$)\"&R&R&R&RFBH"H"H"H"\KH)$)$)$)]J$"&WFR&R^K&RH"]GH"]+H"H)$*!!9\C$)$"&R
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  3859
&$]E&R&RH"H"U@H"H"H)$)$#$)$)$"&R&R&R&R&RH"H"H"H"H"Hb') colorMapFromArray:#[32 12 48 32 56 216 248 184 112 40 36 32 32 48 92 40 12 8 8 0 144 24 60 216 88 36 120 248 248 248 32 40 32 32 16 0]; yourself]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3860
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  3861
6225
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3862
hideFilter16x16Icon
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3863
    "This resource specification was automatically generated
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3864
     by the ImageEditor of ST/X."
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3865
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3866
    "Do not manually edit this!! If it is corrupted,
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3867
     the ImageEditor may not be able to read the specification."
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3868
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3869
    "
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3870
     self hideFilter16x16Icon inspect
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3871
     ImageEditor openOnClass:self andSelector:#hideFilter16x16Icon
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3872
     Icon flushCachedIcons
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3873
    "
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3874
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3875
    <resource: #image>
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3876
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3877
    ^Icon
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3878
        constantNamed:'GenericToolbarIconLibrary class hideFilter16x16Icon'
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3879
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3880
H1$YFQ$YFR$YFQ$DLA$DD"D:C 8NC 8NK@8NC 8NKA,@MP$^J2XH@R<CEQXVIPH@@@@5GA8"@A@LER4VKS\@@@@@@C,;G!!  CCHWN3,@@@@@@@@;N3,*D0XV
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3881
N3,;@@@@@@@@@C,;N2<LN3,;@@@@@@@@@@@@N3,;N3,;@@@@@@@@@@@@@@@;N3,;@@@@@@@@@@@@@@@;N3,;N0@@@@@@@@@@@@@;N3,AN3,;@@@@@@@@@@@;
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3882
N3,.M@L;N3,@@@@@@@@;N3,@MR\ JS,;N0@@@@@@N3,@@@@5JC @N3,@@@@@@@@@@@@@@@H1@@@@@@@@@@@@@@@@@@@@B @@@@@@@@@a')
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3883
            colorMapFromArray:#[255 240 0 240 224 20 112 80 20 255 192 0 144 96 20 240 240 220 255 176 30 255 240 255 255 240 20 240 240 50 112 80 30 112 64 20 255 192 20 240 224 220 255 255 255 255 176 60 255 224 0 160 112 0 128 96 30 255 208 20 240 240 210 255 176 20 255 160 30 255 176 50 255 255 30 144 96 0 240 240 60 96 80 50 240 240 80 240 224 210 255 240 100 80 80 30 255 208 0 80 80 60 255 240 50 128 112 60 240 255 240 240 176 50 255 255 20 240 224 30 224 192 20 160 96 0 255 240 60 255 240 80 255 255 240 255 160 50 144 128 20 240 208 20 144 80 0 128 80 20 240 176 30 240 255 255 240 224 0 96 80 20 144 112 20 128 64 0 160 112 20 224 224 220 240 240 240 255 0 0]
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3884
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'?????7?>O?0_>A?8C?@G8@O@A<@O8A?0N? 16@C@@D@b'); yourself); yourself]
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3885
!
0122e4e6c587 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 6176
diff changeset
  3886
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3887
history16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3888
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3889
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3890
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3891
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3892
     the ImageEditor may not be able to read the specification."
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3893
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3894
     self history16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3895
     ImageEditor openOnClass:self andSelector:#history16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3896
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3897
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3898
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class history16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3899
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3900
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3901
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3902
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3903
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3904
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3905
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3906
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3907
                            fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3908
@@@@@@@@@@@ADQDQD@@@@@DQDQDP@@@@@QDQDQ@@@@@ADQDQDA@@@@DQDQDPD@@@@@@@@@@P@@@@@QDQDQ@P@@@ADQDQDA@@@@@@@@@@D@@@@@DQDQDPD@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3909
@QDQDQ@P@@@@@@@@@A@@@@@ADQDQD@@@@@DQDQDP@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3910
                colorMapFromArray:#[ 1 104 205 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3911
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3912
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3913
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3914
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3915
                                        fromPackedString:'?<C?0O?@??C?<O?0??0??C?<O?<O?0??C?<C?0O?@?<b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3916
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3917
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3918
        ]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3919
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  3920
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3921
idea16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3922
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3923
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3924
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3925
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3926
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3927
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3928
     self idea16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3929
     ImageEditor openOnClass:self andSelector:#idea16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3930
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3931
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3932
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class idea16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3933
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3934
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3935
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3936
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3937
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3938
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3939
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3940
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3941
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3942
@@@BH"H@@@@@@BAUTB@@@@@BA*V @ @@@BAZU%)PH@@@HJUVV*@ @@@ )VQ%(B@@@BA&I T@H@@@@ T H@H@@@@@H@H@H@@@@@@*@ ( @@@@@@HB@ @@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3943
@"L"@@@@@@@BNXH@@@@@@@JI\ @@@@@@@!! R@@@@@@@@H"@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3944
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3945
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3946
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3947
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3948
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3949
                                        fromPackedString:'A<@O8A?0O? ?>C?8O? _<@? C>@G0@_@A<@G0@_@@8@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3950
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3951
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  3952
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3953
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  3954
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3955
indent16x16Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  3956
    <resource:#programImage>
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3957
    ^ self indent16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3958
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3959
    "Modified: / 06-04-2011 / 18:37:52 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3960
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3961
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3962
indent16x16Icon1
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3963
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3964
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3965
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3966
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3967
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3968
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  3969
    "
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3970
     self indent16x16Icon1 inspect
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3971
     ImageEditor openOnClass:self andSelector:#indent16x16Icon1
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3972
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3973
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3974
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3975
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3976
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3977
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3978
        constantNamed:'GenericToolbarIconLibrary indent16x16Icon1'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3979
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@AP@@@EU@@@@E@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3980
            colorMapFromArray:#[0 0 0 0 0 128]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  3981
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@?8@@@O>@@@BG?L_?8@CG?H_<@@C?@@@@?0@@@@@@b'); yourself); yourself]
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3982
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3983
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3984
indent16x16Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3985
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3986
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3987
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3988
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3989
     the ImageEditor may not be able to read the specification."
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3990
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3991
     self indent16x16Icon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  3992
     ImageEditor openOnClass:self andSelector:#indent16x16Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3993
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3994
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3995
    ^ Icon constantNamed:'GenericToolbarIconLibrary indent16x16Icon2'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3996
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3997
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3998
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  3999
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4000
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4001
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4002
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4003
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4004
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  4005
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H@@"H"H@@@@@@BHRH"H"H"@@H!!D"@@@@@@DQDQH"H"H @BHQH @@@@@@H!!H"H"H"H@@"
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4006
H"H@@@@@@BH"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4007
                colorMapFromArray:#[ 0 0 0 34 110 181 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4008
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4009
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4010
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4011
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4012
                                        fromPackedString:'@@@@@@@@O?8??#?>O?8??''?>O?8??#?>O?8?? @@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4013
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4014
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4015
        ]
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  4016
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  4017
5209
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4018
javaPackage16x16Icon
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4019
    "This resource specification was automatically generated
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4020
     by the ImageEditor of ST/X."
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4021
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4022
    "Do not manually edit this!! If it is corrupted,
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4023
     the ImageEditor may not be able to read the specification."
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4024
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4025
    "
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4026
     self javaPackage16x16Icon inspect
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4027
     ImageEditor openOnClass:self andSelector:#javaPackage16x16Icon
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4028
     Icon flushCachedIcons
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4029
    "
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4030
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4031
    <resource: #image>
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4032
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4033
    ^Icon
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4034
        constantNamed:'GenericToolbarIconLibrary javaPackage16x16Icon'
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4035
        ifAbsentPut:[(Depth4Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4036
;.;.;.;.;.;.;.;.;.;.;.;.;.8N;.;.;.***"***.;.:\3KSL29;.;(3-1L;\#.;.#M7D3]2N;.9;3KF<27;.8BQDDQQDHN;.[L213L-.;.9\;\SN7E;.;#
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4037
3]1L7\O.;.N<24/L,>;.:#L3H3L:;.;.;.8N;.;.;.;.;.;.;.8b') ; colorMapFromArray:#[112 56 16 127 80 56 144 80 24 160 88 24 160 112 88 175 96 40 176 96 40 191 104 40 191 112 40 192 120 40 192 128 48 208 168 136 224 200 160 239 208 168 255 240 184]; mask:((Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@B@G?0_?A?<G?0_?C?>G?0_?A?<G?0_?@B@@@@b') ; yourself); yourself]
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4038
!
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
  4039
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4040
leftAdjust16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4041
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4042
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4043
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4044
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4045
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4046
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4047
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4048
     self leftAdjust16x16Icon inspect
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4049
     ImageEditor openOnClass:self andSelector:#leftAdjust16x16Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4050
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4051
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4052
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4053
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4054
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4055
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4056
        constantNamed:'GenericToolbarIconLibrary leftAdjust16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4057
        ifAbsentPut:[(Depth1Image width:16 height:16) bits:(ByteArray fromPackedString:'@@A??$@B_?9@O''?>P@I??$@>_?9@@''?>PC9??''?>@@@b') colorMapFromArray:#[0 0 0 255 255 255]; yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4058
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4059
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4060
leftDown16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4061
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4062
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4063
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4064
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4065
     the ImageEditor may not be able to read the specification."
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4066
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4067
     self leftDown16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4068
     ImageEditor openOnClass:self andSelector:#leftDown16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4069
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4070
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4071
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class leftDown16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4072
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4073
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4074
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4075
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4076
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4077
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4078
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4079
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4080
                            fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4081
@@@@@@@@@@@@@EUUUUUUT@@@T@@@@@AP@@APL3L3L5@@@E@3MDQDT@@@TCL4UUUP@@ARL3QP@@@@@EL3ME@@@@UUT3L3UUT@@E@#L3MAT@@@APH3MAT@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4082
TBMAT@@@@@@EAAT@@@@@@@AQT@@@@@@@@@T@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4083
                colorMapFromArray:#[ 192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4084
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4085
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4086
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4087
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4088
                                        fromPackedString:'@@@O? ?>C?8O? ?>C>@O8G?<O? _<@? A<@C @D@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4089
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4090
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4091
        ]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4092
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  4093
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4094
lock16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4095
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4096
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4097
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4098
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4099
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4100
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4101
     self lock16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4102
     ImageEditor openOnClass:self andSelector:#lock16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4103
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4104
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4105
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class lock16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4106
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4107
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4108
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4109
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4110
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4111
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4112
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4113
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4114
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4115
@@@@]7\@@@@@@@\Z*(@@@@@@]''"G)0@@@@A: @_H@@@@@G2@A< @@@@@]5@G1P@@@@^H!!RJH @@@\3)&E$M5@@A3@DP4L7T@@HN0QDL3]P@@!!+DVZ*)5@@BF
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4116
,QY&*''T@@E*1E&**]P@@U+DVZ*M5@@AS@DP4L7T@@@VBJH"XT@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4117
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4118
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4119
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4120
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4121
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4122
                                        fromPackedString:'@<@G8@?0C''@N\@90G? ??C?<O?0??C?<O?0??C?<G? b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4123
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4124
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4125
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4126
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4127
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4128
palette16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4129
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4130
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4131
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4132
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4133
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4134
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4135
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4136
     self palette16x16Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4137
     ImageEditor openOnClass:self andSelector:#palette16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4138
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4139
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4140
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4141
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4142
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4143
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4144
        constantNamed:'GenericToolbarIconLibrary palette16x16Icon'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4145
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4146
;.;.L3L>;.;-;#&***''.;.89**GL*#;.;#**(\2*''.;#(K.****^;#*+U:**(8;.N**-***^;.8:JH****L>;#*H"*****$8N*****'']&*L:*$QJ+X#Z(3**
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4147
QD*-;-*#8:)$Z*'']N*''.N*******(>;)******L=;.:SL3L3'']8b')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4148
            colorMapFromArray:#[16 48 240 240 8 0 32 104 0 143 96 56 240 200 56 48 48 168 239 232 128 79 48 120 0 152 0 160 112 0 172 140 108 15 48 248 255 8 0 170 140 140 255 248 248]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4149
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@>@O<C?8O?!!?>O?0?>C?>O?>????3??O_?<??1?>C? b'); yourself); yourself]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4150
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  4151
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4152
paste16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4153
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4154
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4155
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4156
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4157
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4158
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4159
     self paste16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4160
     ImageEditor openOnClass:self andSelector:#paste16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4161
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4162
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class paste16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4163
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4164
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4165
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4166
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4167
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4168
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4169
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4170
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4171
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4172
@@@@@@@@@@@@@@@@@@@@@@@@@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
  4173
]ZDQDQDZA5]W(P@@@A(@@@B!!DQDQF @@@J******@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4174
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4175
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4176
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4177
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4178
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4179
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4180
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4181
@@@G G?8??3??O?<??3??O?<??;???????=??0O?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4182
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4183
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4184
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4185
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4186
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4187
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4188
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4189
pipette16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4190
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4191
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4192
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4193
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4194
     the ImageEditor may not be able to read the specification."
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4195
    "
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4196
     self pipette16x16Icon inspect
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4197
     ImageEditor openOnClass:self andSelector:#pipette16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4198
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4199
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4200
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class pipette16x16Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4201
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4202
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4203
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4204
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4205
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4206
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4207
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4208
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4209
                            fromPackedString:'
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4210
FQ$[F18^G!!8^G!!8^J"(^G!!\YF1,[G!!8^G!!8^IR (C!!$WFQ([F18^G!!8^IR$*J"TYE1\YF!!,[G!!8YIR *J"$SFQ\WFQ([F1,[IR *J"$TFQ$WE1\YF!!,YFR $
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4211
J" JFQ$YE1\WFQ$YFQ@]JAHCFQ$YFQXWE1\WE1T#I \LFQ$YFQ$UE!!\WE1X&I $YFQ$YFQ$YEQXVFQD&H  YFQ$YFQ$YFQTUEQD&HPPYFQ$YFQ$YFQ,UEQ@''
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4212
H@HYFQ$YFQ$YFQ([FP<&G0DYFQ$YFQ$YFQ$YFP4!!G@@YFQ$YFQ$YE1$WFQ$XBPTYFQ$YFQ$YE1$YE1\WB0XYFQ$YFQ$YFQ$YE1\WE0@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4213
                colorMapFromArray:#[ 48 48 50 48 48 60 64 72 80 80 8 20 80 88 100 88 72 60 96 72 60 96 104 120 96 104 130 112 120 140 120 24 20 120 88 70 128 24 20 128 96 70 136 40 40 136 96 70 136 96 80 136 104 80 144 24 20 144 32 40 144 40 40 144 104 80 144 104 90 144 112 90 144 120 110 152 112 90 152 112 100 152 120 100 152 160 190 160 160 180 168 136 110 168 184 220 176 192 220 184 200 230 192 216 240 200 216 230 208 48 50 208 56 60 216 240 240 224 240 240 240 64 70 240 88 100 240 136 140 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4214
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4215
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4216
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4217
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4218
                                        fromPackedString:'@@0@G @>@G8@?@C8@_@C8@^@C0@^@C0@^@C0@N@@0@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4219
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4220
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4221
        ]
3545
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4222
!
85e0888d4b7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3544
diff changeset
  4223
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4224
printIt16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4225
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4226
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4227
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4228
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4229
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4230
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4231
    "
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4232
     self printIt16x16Icon inspect
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4233
     ImageEditor openOnClass:self andSelector:#printIt16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4234
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4235
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4236
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4237
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4238
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4239
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4240
        constantNamed:'GenericToolbarIconLibrary printIt16x16Icon'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4241
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4242
@@@@@@@@@@@@Y&Y&Y @@@@A$QDQ@@@@@@FQDQ@L@@@@BYDQ@L@@BH@I$Q@L0Q@H @&Q@L1@@@B@BY@L1D3LBH@I L1D3L@H @ @@@3LE@"@BYDPCLETBH@I$
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4243
P@LEUPH @&QPLEUU@"@@YU@EUUT@@@A&XFY&X@@@@@@@@@@@@@@b')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4244
            colorMapFromArray:#[0 0 0 255 255 255 0 255 0 248 252 128 248 252 248 168 228 240 64 64 64]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4245
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@?8C? O?@?>C?8O?0?>C?8O? ?>C?8O? ?>C?8@@@b'); yourself); yourself]
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4246
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
  4247
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4248
redo16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4249
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4250
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4251
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4252
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4253
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4254
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4255
     self redo16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4256
     ImageEditor openOnClass:self andSelector:#redo16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4257
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4258
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4259
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4260
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4261
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4262
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4263
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4264
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4265
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4266
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4267
                            fromPackedString:'@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4268
                colorMapFromArray:#[ 0 0 0 0 0 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4269
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4270
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4271
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4272
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4273
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4274
@@@@@@@@@@@O@ACDHB0 GB@<DG0P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4275
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4276
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4277
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4278
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4279
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4280
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4281
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4282
redo16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4283
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4284
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4285
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4286
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4287
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4288
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4289
     self redo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4290
     ImageEditor openOnClass:self andSelector:#redo16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4291
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4292
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4293
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class redo16x16Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4294
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4295
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4296
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4297
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4298
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4299
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4300
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4301
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4302
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4303
@@@@@@@@@@@@@@L3L@@@@@@CL@@CL@@@@C@@@@@C@@LC@!!L2@@@0H0LSL@L2@@L#LC@@@@L @BL3L@@@@C@@H3L0@@@@L@@#L3@@@@H"H"LCL@@@L3L3L0L3
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4304
@@@@@@@@@CL0@@@@@@@@@3L0@@@@@@@@@3L@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4305
                colorMapFromArray:#[ 0 192 0 0 64 0 0 128 0 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4306
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4307
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4308
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4309
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4310
                                        fromPackedString:'@@@G A? O?E?>7''?8G? O>@?8G= ?7@@N@@^@@\@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4311
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4312
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4313
        ]
3059
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
reload16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4317
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4318
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4319
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4320
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4321
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4322
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4323
     self reload16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4324
     ImageEditor openOnClass:self andSelector:#reload16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4325
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4326
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4327
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class reload16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4328
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4329
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4330
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4331
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4332
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4333
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4334
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4335
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4336
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4337
@@@@@@@@@@@@@@ARH@L@@@@@T"P@@@@@@@@"P@@@@@@@ARP@@@@@@@@BI@@@@@@@AUH"I@@@@@@@T"I@@@@@@@@EI@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4338
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4339
                colorMapFromArray:#[ 0 0 0 255 255 255 0 192 0 0 64 0 0 128 0 0 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4340
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4341
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4342
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4343
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4344
                                        fromPackedString:'@>@O>A>\G0P>@#8@?9!!?OC9>GO<HOD@<HG 9>A?0A<@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4345
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4346
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4347
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4348
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4349
6071
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4350
removeTab16x16Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4351
    <resource: #image>
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4352
    "This resource specification was automatically generated
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4353
     by the ImageEditor of ST/X."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4354
    "Do not manually edit this!! If it is corrupted,
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4355
     the ImageEditor may not be able to read the specification."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4356
    "
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4357
     self removeTab16x16Icon inspect
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4358
     ImageEditor openOnClass:self andSelector:#removeTab16x16Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4359
     Icon flushCachedIcons"
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4360
    
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4361
    ^ Icon constantNamed:'XPToolbarIconLibrary class removeTab16x16Icon'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4362
        ifAbsentPut:[
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4363
            (Depth8Image new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4364
                width:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4365
                height:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4366
                photometric:(#palette);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4367
                bitsPerSample:(#[ 8 ]);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4368
                samplesPerPixel:(1);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4369
                bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4370
                            fromPackedString:'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4371
@@@@@@@@@@@@@@@@@@@@@@@RA HA@PDA@PDA@PHFD @@A#=2\WA-[F-*ZV!!"M@X@@@M5YEUQSTU@OS$6Q&LN@@@A]%=W^U%AN$I8MSA''CP@@@WQX^''9=S$]=
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4372
_''\*Y 0@@@E3T%)=_''5=_''4;J&TL@@@A[#01O''1>_''0-HRA^B0@@@V@2JC]<_''9<I1(VS@(@@@E]K#M<_''1<_'',$ED$I@@@AWB1/_''0)I7->XQMHB@@@@U,&
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4373
H6<''G14$XQ$WQ@\@@@QVNBH^GQ(XEQL[J4LO@@@PK5QSTD=KR$%HQDL%D@@@GADE@PDA@PDA@PDEDQ0@@@@@@@@@@@@@@@@@@@@@@@@a');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4374
                colorMapFromArray:#[ 0 0 0 167 25 15 173 52 41 174 53 42 178 59 50 178 60 51 181 74 64 184 45 32 184 46 32 184 47 34 185 53 39 186 57 42 186 59 43 186 60 45 187 74 60 188 71 59 188 89 81 188 91 82 195 132 118 207 64 48 208 65 49 209 65 49 209 66 49 209 69 52 210 66 49 210 78 64 211 67 51 211 71 54 211 157 147 212 69 51 213 69 52 213 70 52 213 79 57 215 80 59 218 79 62 218 84 67 219 107 95 221 84 63 221 84 67 221 109 96 222 76 56 222 110 96 222 113 79 223 87 67 223 87 70 223 115 99 225 89 72 225 105 91 225 117 84 227 89 64 227 91 73 227 112 98 227 115 95 227 122 92 228 113 83 228 113 99 229 102 87 230 115 84 230 117 81 230 142 117 231 102 80 231 116 86 231 120 103 231 131 119 232 118 88 232 119 82 233 143 117 234 99 76 234 102 79 234 119 89 234 127 100 234 145 119 235 104 82 235 106 86 236 108 89 236 110 92 236 113 92 236 121 91 236 146 119 237 113 95 237 115 98 237 122 92 237 132 100 238 117 101 238 119 104 238 123 93 238 123 109 238 131 98 238 133 102 238 146 120 238 148 121 239 125 112 239 127 115 239 129 118 239 131 105 239 134 102 240 135 122 240 200 196 242 135 113 242 141 116 242 141 119 242 145 116 242 147 118 242 148 120 243 137 115 243 138 118 243 141 121 243 142 123 243 144 126 243 145 129 243 151 134 243 202 197 244 147 132 244 149 135 244 152 137 244 163 142 244 164 145 245 160 143 245 164 146 245 213 204 246 213 203 248 215 205 249 215 206 252 244 243 253 244 243 253 247 245 255 255 255 ];
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4375
                mask:((ImageMask new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4376
                            width:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4377
                            height:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4378
                            bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4379
                                        fromPackedString:'@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??''?>@@@b');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4380
                            yourself);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4381
                yourself
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4382
        ]
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4383
!
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4384
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4385
removeTabEntered16x16Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4386
    <resource: #image>
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4387
    "This resource specification was automatically generated
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4388
     by the ImageEditor of ST/X."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4389
    "Do not manually edit this!! If it is corrupted,
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4390
     the ImageEditor may not be able to read the specification."
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4391
    "
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4392
     self removeTabEntered16x16Icon inspect
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4393
     ImageEditor openOnClass:self andSelector:#removeTabEntered16x16Icon
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4394
     Icon flushCachedIcons"
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4395
    
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4396
    ^ Icon 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4397
        constantNamed:'XPToolbarIconLibrary class removeTabEntered16x16Icon'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4398
        ifAbsentPut:[
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4399
            (Depth8Image new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4400
                width:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4401
                height:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4402
                photometric:(#palette);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4403
                bitsPerSample:(#[ 8 ]);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4404
                samplesPerPixel:(1);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4405
                bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4406
                            fromPackedString:'
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4407
@@@@@@@@@@@@@@@@@@@@@@@M@0D@@@@@@@@@@@DCCP@@@1)HRD]EQDMBPD@>FPL@@@EHPC\7M3P4MCL1NS8J@@@@RC(4P3\1K#UAK"8<BP@@@D\7P4%IMSUI
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4408
RTD,N0 @@@AGM3UIRT%IRT$4KC,G@@@@QCD*K4!!IRTX+IRP8A0@@@DH,I25HRT%FJRD_L \@@@A@KB5HRTYFRTX''G"<F@@@@PB(?RTX)JTYIOA4-AP@@@C8(
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4409
I#4)H2H''OBD^J0P@@@H;LBX#H"D G14_I",L@@@KFC 8M#T2LB<-J2,WB0@@C ,B@@@@@@@@@@@BB08@@@@@@@@@@@@@@@@@@@@@@@@a');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4410
                colorMapFromArray:#[ 160 24 8 175 48 40 176 56 48 176 72 64 191 56 40 191 56 48 191 64 48 191 72 56 191 72 64 191 80 64 191 88 72 191 88 80 192 80 64 192 128 112 208 152 144 208 208 192 223 208 192 223 216 200 224 216 208 224 224 208 239 224 216 239 232 216 239 232 224 240 120 112 240 168 152 240 176 160 240 208 200 240 232 224 240 240 224 255 88 72 255 96 72 255 96 80 255 104 80 255 104 88 255 112 88 255 112 96 255 120 96 255 120 104 255 128 112 255 136 120 255 144 120 255 144 128 255 152 128 255 152 136 255 160 136 255 160 144 255 168 144 255 168 152 255 168 160 255 176 152 255 176 160 255 184 152 255 184 160 255 184 168 255 184 176 255 192 168 255 192 176 255 192 184 255 200 176 255 208 192 255 208 200 255 208 208 255 216 200 255 216 208 255 224 208 255 224 216 255 232 216 255 232 224 255 240 224 255 240 232 255 240 240 255 248 232 255 248 240 255 248 248 ];
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4411
                mask:((ImageMask new)
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4412
                            width:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4413
                            height:16;
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4414
                            bits:(ByteArray 
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4415
                                        fromPackedString:'@@A??''?>_?9??''?>_?9??''?>_?9??''?>_?9??''?>@@@b');
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4416
                            yourself);
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4417
                yourself
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4418
        ]
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4419
!
8e9dcb2a6533 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6047
diff changeset
  4420
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4421
repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4422
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4423
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4424
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4425
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4426
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4427
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4428
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4429
     self repositoryCVSIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4430
     ImageEditor openOnClass:self andSelector:#repositoryCVSIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4431
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4432
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4433
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4434
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4435
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4436
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  4437
        constantNamed:'GenericToolbarIconLibrary class repositoryCVSIcon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  4438
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4439
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4440
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-APTEAPTEAPTEAPTEAPT9KPTA@PDA@PDA@PDA@PDENR<E@PDDA@DDB@PHA PAAS$0AP A@0$H@0$CBPLI@PT9L@TI
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4441
@PLIBPXIA $AA DENRHEB DD@ (J@ (J@ PAAS$9AP(JB (JB (JB (JB T9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4442
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4443
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4444
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4445
repositoryCheckIn
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4446
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4447
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4448
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4449
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4450
     the ImageEditor may not be able to read the specification."
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4451
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4452
     self repositoryCheckIn inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4453
     ImageEditor openOnClass:self andSelector:#repositoryCheckIn
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4454
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4455
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4456
    ^ Icon constantNamed:'GenericToolbarIconLibrary class repositoryCheckIn'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4457
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4458
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4459
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4460
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4461
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4462
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4463
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4464
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4465
                            fromPackedString:'
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4466
@@@@@@@@@@@TCP<MB  T@@@@@@@@@@@RG2H)JBP^FQH@@@@@@@@@DB@!!JR $G!!$F@@@@@@@@@@$VGR\#FA\UB0@@@@@@@@@GF2X)JBP^FP,@@@@@@@@@BQ,&
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4467
JR $G!!$K@@@@K"8.K"8.K"8(IA8YB0@@@@@@J2</J2,.JBP^FP,@@@@@K"<,K2<+K" $G!!$L@@@@K"0,K2</J28(IA8YC@@@K"4-K28.K",.JBT^FP0@K",-
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4468
KB8@BQ,.K"LXE1TE@B8/KR8@@AL[I"8#FA\UA@@.K28@@@@@D1LSD1@NDP@@K",.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4469
                colorMapFromArray:#[ 0 128 0 48 152 0 63 184 0 111 248 40 175 152 48 176 96 40 176 104 40 176 128 56 191 128 40 191 128 56 191 136 48 192 120 48 192 128 48 192 144 48 192 144 56 192 152 48 192 152 56 192 160 56 192 168 56 207 160 56 207 176 80 224 120 8 224 152 16 224 160 16 239 192 40 240 176 24 240 192 64 240 200 56 240 200 64 240 208 48 240 208 56 255 200 40 255 200 48 255 208 64 255 216 80 255 224 80 255 224 88 255 224 96 255 232 104 255 240 96 255 240 136 255 248 160 241 241 241 50 155 0 109 255 36 133 255 72 40 124 0 60 186 0 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4470
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4471
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4472
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4473
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4474
                                        fromPackedString:'@O8A?0G?@_<A?0G?G?<G?0??G?<??77?^_=0?''@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4475
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4476
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4477
        ]
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4478
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4479
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4480
repositoryCheckOut
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4481
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4482
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4483
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4484
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4485
     the ImageEditor may not be able to read the specification."
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4486
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4487
     self repositoryCheckOut inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4488
     ImageEditor openOnClass:self andSelector:#repositoryCheckOut
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4489
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4490
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4491
    ^ Icon constantNamed:'GenericToolbarIconLibrary class repositoryCheckOut'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4492
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4493
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4494
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4495
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4496
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4497
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4498
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4499
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4500
                            fromPackedString:'
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4501
@@@@@@@@@@@TCP<MB  T@@@@@@@@@@@RG2H)JBP^FQH@@@@@@@@@DB@!!JR $G!!$F@@@@@@@@@@$VGR\#FA\UB0@@@@@@@@@GF2X)JBP^FP,@@@@@@@@@BQ,&
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4502
JR $G!!$K@@@@@@@@@@@@@@@(IA8YB0@@@@@@@@DB@ DB@BP^FP,@@@@@@@LC@0@@JR $G!!$L@@@@@@LC@0@\I"$(IA8YC@@@@PHC@ @IF"X)JBT^FP0@@@HC
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4503
@ @@BQX]I2LXE1TE@@@B@ H@@APVGR\#FA\UA@@@@PHB@@@@EALSD1@NDP@@@@DA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4504
                colorMapFromArray:#[ 0 128 0 48 152 0 63 184 0 111 248 40 175 152 48 176 96 40 176 104 40 176 128 56 191 128 40 191 128 56 191 136 48 192 120 48 192 128 48 192 144 48 192 144 56 192 152 48 192 152 56 192 160 56 192 168 56 207 160 56 207 176 80 224 120 8 224 152 16 224 160 16 239 192 40 240 176 24 240 192 64 240 200 56 240 200 64 240 208 48 240 208 56 255 200 40 255 200 48 255 208 64 255 216 80 255 224 80 255 224 88 255 224 96 255 232 104 255 240 96 255 240 136 255 248 160 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4505
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4506
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4507
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4508
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4509
                                        fromPackedString:'@O8A?0G?@_<A?0G?@?<G?4??W?=??77?__=<?''8@_0@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4510
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4511
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4512
        ]
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4513
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4514
4389
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4515
repositoryGitIcon
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4516
    "This resource specification was automatically generated
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4517
     by the ImageEditor of ST/X."
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4518
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4519
    "Do not manually edit this!! If it is corrupted,
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4520
     the ImageEditor may not be able to read the specification."
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4521
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4522
    "
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4523
     self repositoryGitIcon inspect
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4524
     ImageEditor openOnClass:self andSelector:#repositoryGitIcon
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4525
     Icon flushCachedIcons
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4526
    "
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4527
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4528
    <resource: #image>
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4529
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4530
    ^Icon
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4531
        constantNamed:'GenericToolbarIconLibrary class repositoryGitIcon'
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4532
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4533
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4534
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDDA@DAA@DDA@PAFS$0FP$CBPDA@PPABPPA@Q$9L@@I
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4535
A $F@0DF@P$F@PD@NRH8@P(D@ (AA (A@ (ANC$9A0(AB (JB (JB (AB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4536
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4537
!
16a4667c9535 added: #repositoryGitIcon
Claus Gittinger <cg@exept.de>
parents: 4379
diff changeset
  4538
4349
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4539
repositoryHGIcon
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4540
    "This resource specification was automatically generated
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4541
     by the ImageEditor of ST/X."
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4542
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4543
    "Do not manually edit this!! If it is corrupted,
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4544
     the ImageEditor may not be able to read the specification."
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4545
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4546
    "
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4547
     self repositoryHGIcon inspect
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4548
     ImageEditor openOnClass:self andSelector:#repositoryHGIcon
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4549
     Icon flushCachedIcons
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4550
    "
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4551
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4552
    <resource: #image>
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4553
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4554
    ^Icon
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4555
        constantNamed:'GenericToolbarIconLibrary class repositoryHGIcon'
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4556
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4557
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4558
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDD@PDD@PDDA@DAFS$0FP AA@(JA@$CBPDA@Q$9L@@I
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4559
@PXDA@XIA $F@0D@NRH8B DBB (F@P(D@ (ANC$9A0(AB (JB (JB (AB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4560
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4561
!
b4adc539b7ec added: #repositoryHGIcon
Claus Gittinger <cg@exept.de>
parents: 4348
diff changeset
  4562
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4563
repositoryIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4564
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4565
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4566
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4567
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4568
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4569
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4570
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4571
     self repositoryIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4572
     ImageEditor openOnClass:self andSelector:#repositoryIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4573
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4574
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4575
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4576
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4577
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4578
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4579
        constantNamed:'GenericToolbarIconLibrary class repositoryIcon'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4580
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4581
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4582
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-APTEAPTEAPTEAPTEAPT9KPTA@PDA@PDA@PDA@PDENR<E@PDA@PDA@PDA@PDAAS$0AP A@PDA@PDA@PDA@PT9L@TI
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4583
@PHB@PHB@PHB@PDENRHEB DD@ (B@ (B@ DAAS$9AP(JB (JB (JB (JB T9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4584
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4585
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4586
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4587
repositoryLog
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4588
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4589
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4590
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4591
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4592
     the ImageEditor may not be able to read the specification."
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4593
    "
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4594
     self repositoryLog inspect
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4595
     ImageEditor openOnClass:self andSelector:#repositoryLog
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4596
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4597
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4598
    ^ Icon constantNamed:'GenericToolbarIconLibrary class repositoryLog'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4599
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4600
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4601
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4602
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4603
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4604
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4605
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4606
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4607
                            fromPackedString:'
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4608
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@4E@@@@@@@@@@@@@@@@@@DLF @@@@@@@@@@@@@@@A0A@P0E@@@@@@@@@@@@@@@WAP4AB0@C
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4609
@0LC@0\@@@@@E@@ECP@@@1PTFA I@@@@@@@RGA\@@@LXFA XBP@@@@@DC!!TXAA,CEAPTE@$@@@@YA XDA@P[@1 XFA I@@@@B@PDB (JD@LTEAPTBP@@@@ J
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4610
B@ [E!!LCFA XF@$@@@@WC0<OD1LQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4611
                colorMapFromArray:#[ 146 146 146 255 218 144 241 241 241 255 255 255 126 186 0 255 157 108 133 255 72 192 192 192 84 124 0 160 160 164 105 155 0 186 126 0 255 255 180 255 206 108 109 255 36 20 62 0 42 62 0 6 6 6 133 133 133 18 18 18 95 95 95 248 248 248 62 62 0 108 108 108 222 222 222 69 69 69 255 255 144 63 93 0 128 128 128 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4612
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4613
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4614
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4615
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4616
                                        fromPackedString:'@@@@@@8@G @_@A=>G''8N_#?>O?8??#?>O8@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4617
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4618
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4619
        ]
3961
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4620
!
7c6b9a5771eb added: #repositoryLog
Claus Gittinger <cg@exept.de>
parents: 3957
diff changeset
  4621
4340
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4622
repositoryMCIcon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4623
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4624
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4625
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4626
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4627
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4628
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4629
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4630
     self repositoryMCIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4631
     ImageEditor openOnClass:self andSelector:#repositoryMCIcon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4632
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4633
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4634
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4635
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4636
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4637
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4638
        constantNamed:'GenericToolbarIconLibrary class repositoryMCIcon'
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4639
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4640
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4641
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDD@PDDB@DDA@ AFS$0FP HA@LDA@ D@P$H@Q$9L@@I
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4642
BPPA@PPHA DAB@D@NRH8B (D@P(DB DDA@ ANC$9A0(JB (JB (JB (JB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4643
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4644
!
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4645
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4646
repositoryP4Icon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4647
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4648
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4649
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4650
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4651
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4652
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4653
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4654
     self repositoryP4Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4655
     ImageEditor openOnClass:self andSelector:#repositoryP4Icon
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4656
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4657
    "
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4658
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4659
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4660
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4661
    ^Icon
4425
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  4662
        constantNamed:'GenericToolbarIconLibrary repositoryP4Icon'
4340
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4663
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4664
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
4425
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  4665
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PDAA@PAB@PAB@ AFS$0FP HB@LIA@ DA@$H@Q$9L@@I
4340
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4666
BP$DA@$HA XFB@D@NRH8B (J@ (JB (FB  ANC$9A0(JB (JB (JB (JB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4667
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4668
!
Claus Gittinger <cg@exept.de>
parents: 4337
diff changeset
  4669
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4670
repositoryPerforceIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4671
    "This resource specification was automatically generated
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4672
     by the ImageEditor of ST/X."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4673
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4674
    "Do not manually edit this!! If it is corrupted,
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4675
     the ImageEditor may not be able to read the specification."
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4676
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4677
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4678
     self repositoryPerforceIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4679
     ImageEditor openOnClass:self andSelector:#repositoryPerforceIcon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4680
     Icon flushCachedIcons
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4681
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4682
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4683
    <resource: #image>
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4684
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4685
    ^Icon
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4686
        constantNamed:'GenericToolbarIconLibrary class repositoryPerforceIcon'
4425
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  4687
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  4688
@@@@@@@@@@@@@@@@@@@@@@@@@PHCA@T@@@@@A \H@@@@BP(KC@4NC0@@DADRD0@@@APUE!!\XFQ([GA4^G2@@@@@!!H"L$@BT&I2 )J",,@@@@KR8/LCD2L3P5
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  4689
M#\8NP@@@C(;OC4>O4AAP$MDQP@@@@AFQ4!!IR$-LST8@S5@@@@@@TRIRT5QUU%\@VE%Z@@@@@E-\WU9_XFE"@FM$YP@@@@@@@FY''J&!!)Z&-,[V9/@@@@@@@@
ed9ff53a16e1 changed:
Claus Gittinger <cg@exept.de>
parents: 4418
diff changeset
  4690
\GE2\7Q5]'']8^P@@@@@@@@@@@@@@@G);@@@@@@@@@@@@@@@@@@A<_P@@@@@@@@@@@@@@@@@@_''<@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 166 144 53 162 134 43 161 134 43 163 134 42 149 116 32 144 140 67 165 134 41 84 61 13 155 131 46 247 203 70 238 189 60 232 178 48 227 174 50 235 185 58 187 145 44 147 149 89 241 206 86 235 183 54 107 78 15 148 120 36 239 191 62 209 157 41 75 52 8 56 39 5 188 142 37 232 182 57 113 86 23 87 91 60 236 207 95 226 178 57 222 171 50 69 50 8 148 117 34 239 192 62 195 146 38 11 6 0 176 156 56 237 186 59 152 122 44 166 147 71 211 158 37 212 165 50 211 161 45 37 26 3 148 120 38 239 192 63 214 167 51 169 132 38 179 159 56 232 201 82 227 176 50 146 118 41 163 121 29 94 67 11 206 174 54 192 144 39 13 9 0 148 121 41 239 191 65 229 181 58 226 176 54 221 171 51 213 164 48 179 141 44 120 91 25 94 68 13 14 14 3 236 199 63 162 122 34 149 118 29 238 191 62 209 158 41 70 52 14 45 35 9 116 105 55 128 100 29 101 74 14 2 1 0 245 202 63 129 99 31 150 117 28 200 150 39 16 9 0 120 120 76 208 170 64 154 111 22 12 7 0 127 112 33 238 192 58 98 76 22 124 95 24 207 164 53 194 147 38 78 74 37 211 184 80 211 158 42 93 68 14 72 57 12 181 171 75 228 179 55 100 78 21 31 23 6 141 121 44 230 181 57 242 192 57 244 192 56 241 192 57 234 191 67 227 179 59 241 189 56 215 166 47 89 65 13 104 76 15 106 78 17 103 79 23 104 80 24 106 79 20 221 176 55 211 163 48 110 85 22 105 78 19 239 199 62 163 122 32 235 188 57 138 100 22 85 64 18 50 38 9]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@>GG<<_?1;?G?<_?!!?6G>8_; _?@?<@C@@L@@0@@@b') ; yourself); yourself]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4691
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  4692
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4693
repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4694
    "This resource specification was automatically generated
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4695
     by the ImageEditor of ST/X."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4696
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4697
    "Do not manually edit this!! If it is corrupted,
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4698
     the ImageEditor may not be able to read the specification."
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4699
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4700
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4701
     self repositorySVNIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4702
     ImageEditor openOnClass:self andSelector:#repositorySVNIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4703
     Icon flushCachedIcons
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4704
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4705
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4706
    <resource: #image>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4707
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4708
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  4709
        constantNamed:'GenericToolbarIconLibrary class repositorySVNIcon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  4710
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4711
NS$\I2X%J20\NS$9NS$9NS$WHA8LDAX[JA\9NS$9NS$9H2D]CA@VF2 7NS$9NS$9NSL*F@,SF"P6MS$9NS$9NS$2G1HLDAX[JCT9NS$9NS$9LQ<RC@<UF2 4
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4712
NS$9NS$9NR8_DP4NEA,(MC$9NS$9NS$-JR$)JR$)JR$)JR$)JR$9KR$A@PDA@PDA@PDA@PD)NR<Y@PPD@PPHA@ D@PPAFS$0FP CBP CBPLI@0LD@Q$9L@@I
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4713
BPXIA $FBPXCA D@NRH8B HBB (BB (BB PANC$9A0(JB (JB (JB (JB \9NPTEAPTEAPTEAPTEAPTENS$9NS$9NS$9NS$9NS$9NP@@@@@@@@@@@@@@@@@@
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4714
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[104 97 99 245 246 251 25 50 99 40 69 126 47 75 130 69 80 102 34 56 94 78 91 112 242 245 249 237 248 254 227 246 255 249 240 101 252 248 161 252 248 162 251 240 138 251 239 139 251 239 140 249 232 112 249 233 112 246 223 77 246 224 88 246 224 89 246 224 90 185 160 32 243 213 53 117 110 75 237 197 37 240 207 60 194 167 52 249 213 68 249 216 77 240 200 59 251 201 44 251 203 45 199 167 58 191 147 29 226 166 20 186 138 21 188 142 23 188 137 19 242 177 31 141 118 66 226 156 19 183 129 16 178 115 11 178 119 30 177 118 30 180 121 31 180 121 32 175 117 31 175 116 32 175 118 32 185 110 19 184 110 20 229 121 6 170 93 6 90 90 90 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'O8A?0G?@_<A?0G?@_<A??7??_?=??7??_?<??3??@@@b') ; yourself); yourself]
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4715
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
  4716
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4717
repositoryTag
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4718
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4719
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4720
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4721
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4722
     the ImageEditor may not be able to read the specification."
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4723
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4724
     self repositoryTag inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4725
     ImageEditor openOnClass:self andSelector:#repositoryTag
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4726
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4727
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4728
    ^ Icon constantNamed:'GenericToolbarIconLibrary class repositoryTag'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4729
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4730
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4731
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4732
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4733
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4734
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4735
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4736
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4737
                            fromPackedString:'
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4738
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH"H"H"@@@JL3L3L3N@@BL3L3L3L8@KJVL3L3L3 K/NT3L3L3N@@BL3L0LC@8@@43L3L3L3 @@ML3L3L3N@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4739
@DQDQDQA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4740
                colorMapFromArray:#[ 35 35 35 98 98 98 128 128 66 252 252 128 68 68 68 129 65 65 128 64 2 241 241 241 67 67 67 128 64 64 190 190 66 2 2 2 66 66 66 65 65 3 97 65 3 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4741
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4742
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4743
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4744
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4745
                                        fromPackedString:'@@@@@@@@A?8O?1??O?=??1??G?<O?0_?@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4746
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4747
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4748
        ]
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4749
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4750
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4751
repositoryVersions
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4752
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4753
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4754
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4755
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4756
     the ImageEditor may not be able to read the specification."
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4757
    "
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4758
     self repositoryVersions inspect
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4759
     ImageEditor openOnClass:self andSelector:#repositoryVersions
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4760
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4761
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4762
    ^ Icon constantNamed:'GenericToolbarIconLibrary class repositoryVersions'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4763
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4764
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4765
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4766
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4767
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4768
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4769
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4770
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4771
                            fromPackedString:'
3962
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  4772
@@@@@@@@@@@@@@@@@@@@@@@@@@@#FA(XH0@@@@@@@@@@@@@JABDNA@PJ@@@@@@@@@@@#ABD[HPPDG"L@@@@@@@@@FBDQC1XOB!!8X@@@@@@@@@A(\B08NABD^
31eb8f1c3f9f added: #repositoryVersions2
Claus Gittinger <cg@exept.de>
parents: 3961
diff changeset
  4773
F @@@@@@@@@ZD T$E \[G!! @@@@@@@@ICQLSD2D[A@XV@@@@@@@I@0HJD1LAG X]ER@@@@@@@0$@@1XXF!! VE@0"EP@@@@@@@@LC@@@@@A<U@BHU@@@@@@@C
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4774
@0@@@@@@CQT@E1T@@@@@@0L@@@@@@@@MEP@WH@@@@@LC@@@@@@@@@@4UDB@@@@@C@0@@@@@@@@@@@AT_@@@@@0L@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4775
                colorMapFromArray:#[ 186 126 0 74 140 199 95 159 191 63 95 159 180 230 255 79 124 169 146 146 146 160 160 164 241 241 241 63 127 191 120 120 120 89 144 198 217 147 0 82 82 82 235 235 235 192 192 192 155 105 0 222 222 222 74 134 193 79 141 199 62 42 0 124 84 0 95 95 95 255 206 108 57 57 57 159 191 191 0 0 0 255 255 255 90 145 199 31 31 31 144 218 255 69 69 69 93 63 0 248 248 248 255 218 144 108 108 108 162 186 210 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4776
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4777
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4778
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4779
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4780
                                        fromPackedString:'@@@O A?@O>@?8C? O>A?8O?07? X_A >FA<XC1 CF@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4781
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4782
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  4783
        ]
3956
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4784
!
Claus Gittinger <cg@exept.de>
parents: 3953
diff changeset
  4785
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4786
rightAdjust16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4787
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4788
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4789
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4790
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4791
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4792
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4793
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4794
     self rightAdjust16x16Icon inspect
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4795
     ImageEditor openOnClass:self andSelector:#rightAdjust16x16Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4796
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4797
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4798
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4799
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4800
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4801
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4802
        constantNamed:'GenericToolbarIconLibrary rightAdjust16x16Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  4803
        ifAbsentPut:[(Depth1Image width:16 height:16) bits:(ByteArray fromPackedString:'@@A??$@B_?9<@''?>P@I??''0B_?9@@''?>_@I??''?>@@@b') colorMapFromArray:#[0 0 0 255 255 255]; yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4804
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4805
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4806
run16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4807
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4808
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4809
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4810
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4811
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4812
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4813
     self run16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4814
     ImageEditor openOnClass:self andSelector:#run16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4815
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4816
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4817
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class run16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4818
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4819
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4820
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4821
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4822
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4823
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4824
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4825
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4826
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4827
@@@@@@@@@@@@@@@AT@@@@@@!!@@EP@AT@@CPRMDT!!P0@@ATQDQDP0@@@CQEMTQD@@@@IEL@EDH@@AEDL@@AQAD@L4QP@@EDL0@@MDD@EDT@@@ADQAEDQ@@@@A
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4828
QDQDQC@@@AP4IDMAP0@@T0@AL@@#@@@@@@D0@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4829
                colorMapFromArray:#[ 0 0 0 255 255 255 220 220 220 128 128 128 195 195 195 160 160 160 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4830
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4831
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4832
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4833
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4834
                                        fromPackedString:'@@@A CFLO?0_>A?8G''!!<O''0>G'' _>A?8O?01#@F@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4835
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4836
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4837
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4838
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4839
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4840
scrollDownOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4841
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4842
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4843
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4844
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4845
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4846
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4847
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4848
     self scrollDownOff16x16Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4849
     ImageEditor openOnClass:self andSelector:#scrollDownOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4850
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4851
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4852
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4853
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4854
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4855
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4856
        constantNamed:'GenericToolbarIconLibrary scrollDownOff16x16Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4857
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4858
@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHCAP HB@ H
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4859
B@ GA@TF@@DB@0 RD1PUE!!\XB@PEA @A@ LEB@4NC1@QB@\DAPX@@PHC@0THB ,LB@\CA@TF@@DB@0LCAP IB@\C@0PEA @A@ LC@0LGB@\C@0LDAPX@@PHC
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4860
@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4861
            colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]; yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4862
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4863
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4864
scrollLeftOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4865
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4866
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4867
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4868
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4869
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4870
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4871
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4872
     self scrollLeftOff16x16Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4873
     ImageEditor openOnClass:self andSelector:#scrollLeftOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4874
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4875
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4876
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4877
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4878
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4879
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4880
        constantNamed:'GenericToolbarIconLibrary scrollLeftOff16x16Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4881
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4882
@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDB@ HB@ HB@ HB@ HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LCAP E@0LC@0LC@0LC@0LEBAHH
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4883
B@LC@0LC@0LC@0LEB@4SB@ C@0LC@0LC@0LCB@(NE@ H@0LC@0LC@0LC@0$KC1THB@LC@0LC@0LC@0LHCA@VB@ C@0LC@0LC@0LCA0 QE0 H@0LC@0LC@0LC
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4884
@0LGBA HB@LC@0LC@0LC@0LC@0LGB@\C@0LC@0PDA@PDA@PDA@PDA@PDA@PEAPTEAPTEAPTEAPTEAPTEA XFA XFA XFA XFA XFA @a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4885
            colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4886
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b'); yourself); yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4887
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4888
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4889
scrollRightOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4890
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4891
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4892
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4893
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4894
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4895
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4896
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4897
     self scrollRightOff16x16Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4898
     ImageEditor openOnClass:self andSelector:#scrollRightOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4899
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4900
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4901
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4902
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4903
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4904
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4905
        constantNamed:'GenericToolbarIconLibrary scrollRightOff16x16Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4906
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4907
@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDB@ HB@ HB@ HB@ HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0LCAP E@0LC@0LC@0LC@0LC@0 RB@TC
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4908
@0LC@0LC@0LC@0LHD04HAPLC@0LC@0LC@0LCBAPNB  G@0LC@0LC@0LC@0 UC0,IB@LC@0LC@0LC@0LHE!!@LB@\C@0LC@0LC@0LCBA\QB@\C@0LC@0LC@0LC
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4909
@0 XB@\C@0LC@0LC@0LC@0LGB@\C@0LC@0LC@0PDA@PDA@PDA@PDA@PDA@PEAPTEAPTEAPTEAPTEAPTEA XFA XFA XFA XFA XFA @a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4910
            colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4911
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'??????????????????????????????????????????<b'); yourself); yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4912
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4913
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4914
scrollUpOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4915
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4916
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4917
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4918
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4919
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4920
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4921
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4922
     self scrollUpOff16x16Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4923
     ImageEditor openOnClass:self andSelector:#scrollUpOff16x16Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4924
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4925
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4926
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4927
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4928
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4929
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4930
        constantNamed:'GenericToolbarIconLibrary scrollUpOff16x16Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4931
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4932
@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LCA0 G
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4933
@0LCA@TF@@DB@0LCAP IB@\C@0PEA @A@ LCAP JB00HA0LDAPX@@PHCAP MC <PDP GA@TF@@DB@0 RD1PUE!!\XB@PEA @A@ LEB@ HB@ HB@\DAPX@@PHC
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4934
@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @A@ LC@0LC@0LC@0LDAPX@@PHC@0LC@0LC@0LCA@TF@@DB@0LC@0LC@0LC@0PEA @a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4935
            colorMapFromArray:#[228 228 230 232 232 230 236 238 240 240 240 240 240 242 240 244 242 240 236 234 230 244 244 240 244 246 250 44 46 50 32 30 30 52 54 50 92 92 90 32 34 30 72 74 70 120 122 120 140 140 140 136 134 130 84 86 90 120 120 120 156 158 160 176 174 170 184 184 180 192 192 190 184 182 180]; yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4936
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  4937
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4938
search16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4939
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4940
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4941
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4942
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4943
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4944
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4945
     self search16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4946
     ImageEditor openOnClass:self andSelector:#search16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4947
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4948
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class search16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4949
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4950
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4951
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4952
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4953
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4954
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4955
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4956
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4957
                            fromPackedString:'@@@@@@@@@@@@ @ @@@@@@@@@@@@B@B@@@@@@@@PDD@@DBA@@B@@ @@@@@@@P@@D@H@@B@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4958
                colorMapFromArray:#[ 0 0 0 212 208 200 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4959
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4960
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4961
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4962
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4963
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4964
@@@\\A10GG@>>C;8_?3??/?>??;>?/ >>C;8O @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4965
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4966
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4967
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4968
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4969
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4970
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4971
4652
9dd4d902de51 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4604
diff changeset
  4972
search16x16Icon2
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4973
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4974
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4975
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4976
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4977
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4978
4652
9dd4d902de51 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4604
diff changeset
  4979
    "
9dd4d902de51 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4604
diff changeset
  4980
     self search16x16Icon2 inspect
9dd4d902de51 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4604
diff changeset
  4981
     ImageEditor openOnClass:self andSelector:#search16x16Icon2
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4982
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4983
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4984
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4985
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4986
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4987
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4988
        constantNamed:'GenericToolbarIconLibrary search16x16Icon2'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4989
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4990
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HB@@@@@@@@@@@@@@@@@0PEAPXC@@@@@@@@@@@@A0 IB (IB00@@@@@@@@@@ 4NC1@QC1HS@ @@@@@@@APUE!!\X
4652
9dd4d902de51 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4604
diff changeset
  4991
FPDZF10@@@@@@@@]G!!< @PD!!H"L$@@@@@@@@IRXEI0DAJB$*I@@@@@@@@@X+K@H-K"<0LSH@@@@@@@D3MCT6M3\8NS(2@@@@@@D;OC4>O4A@PTHB@@@@@@EC
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4992
QDUFQ4!!IN0DW@@@@@@EJR41MS @@@@@@@@@@@@@AS5AQT @@@@@@@@@@@@@@@EMTUP@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@a')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4993
            colorMapFromArray:#[0 0 0 223 224 248 208 208 248 240 232 248 191 200 240 143 160 208 192 200 240 207 216 248 127 144 200 63 88 168 47 88 184 127 152 200 208 224 248 79 104 200 48 80 160 79 112 176 144 184 240 144 176 240 48 88 168 80 120 208 175 184 216 47 72 168 95 96 176 239 224 248 255 240 224 240 232 240 79 96 168 47 80 160 208 216 240 159 168 200 31 64 160 159 168 224 255 232 248 223 208 248 128 152 216 32 64 160 191 184 208 144 160 184 31 64 168 255 248 248 239 232 248 112 128 200 31 48 160 15 48 160 64 88 168 255 240 240 240 240 248 207 208 248 48 64 144 47 64 160 224 216 240 191 192 240 31 56 168 16 32 144 32 48 160 95 104 200 32 56 144 32 56 136 128 160 216 176 184 224 64 80 144 15 32 136 64 88 176 31 48 136 16 40 144 32 64 136 128 152 200 191 184 224 63 72 136 16 48 128 96 104 168 208 216 248 224 232 248 191 192 224 191 184 216 64 72 120 15 32 104 63 96 184 240 248 248 128 128 184 31 40 80 111 112 144 239 216 248 208 208 224 176 184 200 223 216 224]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  4994
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@@X@G8@?0G? _>A?8G? _>C?8_?C?8_ A<@C @D@@b'); yourself); yourself]
4652
9dd4d902de51 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4604
diff changeset
  4995
!
9dd4d902de51 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4604
diff changeset
  4996
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  4997
searchNext16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4998
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  4999
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5000
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5001
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5002
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5003
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5004
     self searchNext16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5005
     ImageEditor openOnClass:self andSelector:#searchNext16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5006
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5007
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5008
        constantNamed:#'GenericToolbarIconLibrary class searchNext16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5009
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5010
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5011
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5012
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5013
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5014
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5015
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5016
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5017
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5018
@@@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
  5019
@@@@@@@@@C@@@@L@@@@@D@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5020
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5021
                colorMapFromArray:#[ 0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5022
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5023
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5024
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5025
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5026
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5027
A<@LY@ \BA0LO@X@FL@X0C7 _?A?<G?0^OA8<G#0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5028
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5029
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5030
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5031
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5032
        ]
3059
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
searchPrev16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5036
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5037
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5038
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5039
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5040
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5041
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5042
     self searchPrev16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5043
     ImageEditor openOnClass:self andSelector:#searchPrev16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5044
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5045
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5046
        constantNamed:#'GenericToolbarIconLibrary class searchPrev16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5047
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5048
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5049
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5050
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5051
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5052
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5053
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5054
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5055
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5056
@@@@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
  5057
@@@@@@@@@@@@L@@@@0@@@@@P@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5058
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5059
                colorMapFromArray:#[ 0 0 0 255 255 255 0 0 0 212 208 200 128 128 128 0 0 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5060
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5061
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5062
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5063
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5064
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5065
@>@&LC PNA@<L@A @1 CF@^<C?8O? ?>C18OG <^@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5066
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5067
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5068
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5069
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5070
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5071
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5072
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5073
settings16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5074
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5075
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5076
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5077
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5078
     the ImageEditor may not be able to read the specification."
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5079
    "
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5080
     self settings16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5081
     ImageEditor openOnClass:self andSelector:#settings16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5082
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5083
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5084
    ^ Icon constantNamed:'GenericToolbarIconLibrary class settings16x16Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5085
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5086
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5087
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5088
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5089
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5090
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5091
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5092
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5093
                            fromPackedString:'
4390
19ea4b2feb20 changed: #settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  5094
@@@@@@@@@@@@@@@@@@@@@@@@@@@LC@0@@@@@@@@XC"@@@@@@H00^B0@@@@@XC"PN@@@@@@@#E1<G@@@@C"PNF@@RG @@@@ [A0@@H@8OF@@@AQD @A<UH!!T@
19ea4b2feb20 changed: #settings16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  5095
H@8[@@@@@@\YFA WHR@GH@8[@@@@@@@@A14YHR@ H@8[@@@@@@@@@@@GEQTRH@8 A @@@@@@@@@@@@@A@P8 G1 L@@@@@@@@@AXAE $AD1 \D1P@@@@@@AXA
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5096
E $B@P@QD10PA@@@@AXAE (B@QX@@A$SF!!LC@@@AE 4B@QX@@@@@D1PCDP@@@P4B@QX@@@@@@@@CDP@@@@4A@QX@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5097
                colorMapFromArray:#[ 0 0 0 47 80 128 95 136 184 111 104 96 111 104 104 112 112 104 112 112 120 127 120 120 127 128 120 127 160 200 127 168 208 128 128 120 128 128 128 128 168 208 143 136 128 143 136 136 159 144 144 159 152 144 159 152 160 160 160 160 160 160 168 175 168 168 175 200 240 176 168 168 176 176 176 191 184 184 192 184 184 192 192 184 192 192 200 207 200 200 208 200 208 208 208 208 223 216 216 224 224 216 224 224 224 239 232 224 240 240 240 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5098
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5099
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5100
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5101
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5102
                                        fromPackedString:'@@@NA0<OA8=#''''^8_?@?8A? A?@_>C=<_39>G''0L^@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5103
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5104
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5105
        ]
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5106
!
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5107
5422
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5108
settings16x16icon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5109
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5110
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5111
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5112
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5113
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5114
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5115
    "
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5116
     self settings16x16icon inspect
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5117
     ImageEditor openOnClass:self andSelector:#settings16x16icon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5118
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5119
    "
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5120
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5121
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5122
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5123
    ^Icon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5124
        constantNamed:'GenericToolbarIconLibrary settings16x16icon'
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5125
        ifAbsentPut:[(Depth8Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5126
@@@@@@@@@@@@@@@3HCL@@A,GF0@@@@@@@@@5G1<"J0@TI@LL@@@@@@@@H H @@@@@AX@J@0@@@@@B LBC0@MM @@C# (L0@@@AD#H3P#ER,@@@@ID" 3@@,$
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5127
I2D$EQH@@@@@@@$RG1,WHS\EL!!$@@@@@@@@@@CT4M2D%@@@@@@@@@@@@@CXWI0L*JP@@@@@@@@@@@AP#@PT-G XD@@@@@@@@@APUK"\]JQ0^G"0@@@@@@@4!!
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5128
K @]@@@&GA8XK@@@@@4WK D2@@@@@B$HA!! /@@@5GPTQ@@@@@@@@F  FFAL@E2@Q@@@@@@@@@@@0G@ P@A4R@@@@@@@@@@@@@AXVLP@a') ; colorMapFromArray:#[94 94 94 68 72 75 235 237 237 201 201 201 242 218 221 119 119 119 236 182 45 239 239 239 217 164 40 252 252 252 197 198 199 242 247 250 237 242 246 212 206 212 250 250 250 200 201 201 226 217 187 150 151 153 129 129 129 216 171 95 223 225 218 150 150 151 212 216 210 172 173 173 237 203 50 176 176 177 170 172 173 213 212 210 197 149 41 162 162 163 249 222 55 214 216 216 195 192 192 139 139 139 182 183 186 161 161 160 191 192 193 191 190 190 227 228 227 106 106 105 220 222 223 212 167 152 206 175 122 239 240 239 195 140 101 171 136 90 59 60 60 193 113 46 221 177 180 255 255 255 143 143 144 234 238 240 207 207 209 169 168 169 235 235 236 128 128 128 126 122 111]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@A3 O/@8^G,<_1;>C?0C8@_ C?@_>C9<_C98G7@OX@\b') ; yourself); yourself]
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5129
!
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
  5130
4461
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5131
showCodeCoverage16x16Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5132
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5133
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5134
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5135
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5136
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5137
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5138
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5139
     self showCodeCoverage16x16Icon inspect
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5140
     ImageEditor openOnClass:self andSelector:#showCodeCoverage16x16Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5141
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5142
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5143
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5144
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5145
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5146
    ^Icon
4461
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5147
        constantNamed:'GenericToolbarIconLibrary showCodeCoverage16x16Icon'
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  5148
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@AUUUUPZ**UTEUUUUAZ*)UPUUUUTE**)UAUUUUPUU?=TEUUUUAUW?5PUUUUTE***UAUUUUPUUUUT@@@@@@@a') colorMapFromArray:#[0 0 0 255 255 255 140 247 115 255 0 0]; yourself]
4461
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5149
!
Claus Gittinger <cg@exept.de>
parents: 4447
diff changeset
  5150
5743
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5151
smalllintError16x16
5745
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5152
    "I want all icons to be named *icon* - ever tried to search an icon,
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5153
     if there is no consistent naming?"
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5154
    ^ self smalllintErrorIcon16x16
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5155
!
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5156
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5157
smalllintErrorIcon16x16
5743
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5158
    "This resource specification was automatically generated
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5159
     by the ImageEditor of ST/X."
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5160
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5161
    "Do not manually edit this!! If it is corrupted,
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5162
     the ImageEditor may not be able to read the specification."
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5163
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5164
    "
5758
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5165
     self smalllintErrorIcon16x16 inspect
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5166
     ImageEditor openOnClass:self andSelector:#smalllintErrorIcon16x16
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5167
     Icon flushCachedIcons
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5168
    "
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5169
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5170
    <resource: #image>
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5171
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5172
    ^Icon
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5173
        constantNamed:'GenericToolbarIconLibrary class smalllintErrorIcon16x16'
5743
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5174
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
5758
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5175
@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@@@@@@@@@@@@@@DB@0PC@ D@@@@@@@@@@@DBAPXFA TE@P@@@@@@@@@AA0XHA  FA0D@@@@@@@@@@P$JB0,KA 0A
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5176
@PD@@@@@@@DIB 4NCP(IC1@Q@P@@@@@@D!!LT@QPSD!!@UD@D@@@@@@@DVE0DXE <YF!!$O@P@@@@@@@Q,\GPDPFQ(YD@D@@@@@@@D^@Q< HQ$"FRD @P@@@@@A
5743
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5177
H2P%DA$&F"XYD@D@@@@@@R\(JR(+KB4,J2(A@@@@@@@A@PD.J"(*J"(.@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@a')
5758
e400a8f03e01 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5745
diff changeset
  5178
            colorMapFromArray:#[0 0 0 255 248 252 240 98 96 239 58 56 239 64 64 240 106 96 255 184 176 239 66 56 255 179 168 240 74 56 255 192 176 255 207 200 239 74 56 255 240 240 255 229 224 239 136 141 224 88 98 239 160 167 255 144 136 240 94 64 255 197 184 255 219 208 255 147 128 255 112 96 255 99 88 255 139 128 80 0 8 191 125 120 207 227 240 176 134 120 128 208 200 80 136 134 224 120 126 239 106 96 208 61 56 128 184 174 176 181 184 95 136 135 239 120 120 176 200 194 79 120 119 202 200 208 207 48 63 255 157 144 240 154 136 176 86 80 224 162 160]
5743
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5179
            mask:((Depth1Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@_@C>@_<A?0G?0_? ?>C?<G?0_?!!?>G?8O?@G<@@@b'); yourself); yourself]
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5180
!
0042c7d43700 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  5181
5745
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5182
smalllintInformationIcon16x16
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5183
    "This resource specification was automatically generated
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5184
     by the ImageEditor of ST/X."
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5185
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5186
    "Do not manually edit this!! If it is corrupted,
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5187
     the ImageEditor may not be able to read the specification."
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5188
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5189
    "
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5190
     self smalllintInformationIcon16x16 inspect
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5191
     ImageEditor openOnClass:self andSelector:#smalllintInformationIcon16x16
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5192
     Icon flushCachedIcons
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5193
    "
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5194
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5195
    <resource: #image>
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5196
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5197
    ^Icon
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5198
        constantNamed:'GenericToolbarIconLibrary smalllintInformationIcon16x16'
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5199
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5200
@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@@@@@@@@@@@@@@DB@0PC@ D@@@@@@@@@@@DBAPXFA TE@P@@@@@@@@@AA0XHA  FA0D@@@@@@@@@@P$JB0,KA 0A
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5201
@PD@@@@@@@DIB 4NCP(IC1@Q@P@@@@@@D!!LT@QPSD!!@UD@D@@@@@@@DVE0DXE <YF!!$O@P@@@@@@@Q,\GPDPFQ(YD@D@@@@@@@D^@Q< HQ$"FRD @P@@@@@A
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5202
H2P%DA$&F"XYD@D@@@@@@R\(JR(+KB4,J2(A@@@@@@@A@PD.J"(*J"(.@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@a')
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5203
            colorMapFromArray:#[0 0 0 248 255 254 96 166 240 56 145 239 64 152 239 96 158 240 176 207 255 56 137 239 168 200 255 56 130 240 176 199 255 200 220 255 56 129 239 240 248 255 224 234 255 136 193 239 88 166 224 160 207 239 136 187 255 64 122 240 184 206 255 208 220 255 128 172 255 96 159 255 88 160 255 128 180 255 0 48 80 120 150 191 240 236 207 120 134 176 208 160 128 136 106 80 120 178 224 96 157 239 56 127 208 184 146 128 184 183 176 136 115 95 120 179 239 200 182 176 120 99 79 202 208 200 48 143 207 144 186 255 136 170 240 80 122 176 160 190 224]
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5204
            mask:((Depth1Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@_@C>@_<A?0G?0_? ?>C?<G?0_?!!?>G?8O?@G<@@@b'); yourself); yourself]
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5205
!
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5206
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5207
smalllintWarningIcon16x16
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5208
    "This resource specification was automatically generated
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5209
     by the ImageEditor of ST/X."
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5210
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5211
    "Do not manually edit this!! If it is corrupted,
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5212
     the ImageEditor may not be able to read the specification."
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5213
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5214
    "
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5215
     self smalllintWarning16x16 inspect
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5216
     ImageEditor openOnClass:self andSelector:#smalllintWarning16x16
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5217
     Icon flushCachedIcons
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5218
    "
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5219
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5220
    <resource: #image>
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5221
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5222
    ^Icon
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5223
        constantNamed:'GenericToolbarIconLibrary smalllintWarning16x16'
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5224
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[8]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5225
@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@@@@@@@@@@@@@@DB@0PC@ D@@@@@@@@@@@DBAPXFA TE@P@@@@@@@@@AA0XHA  FA0D@@@@@@@@@@P$JB0,KA 0A
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5226
@PD@@@@@@@DIB 4NCP(IC1@Q@P@@@@@@D!!LT@QPSD!!@UD@D@@@@@@@DVE0DXE <YF!!$O@P@@@@@@@Q,\GPDPFQ(YD@D@@@@@@@D^@Q< HQ$"FRD @P@@@@@A
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5227
H2P%DA$&F"XYD@D@@@@@@R\(JR(+KB4,J2(A@@@@@@@A@PD.J"(*J"(.@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 248 248 240 184 96 239 168 56 239 168 64 240 192 96 255 232 176 239 176 56 255 232 168 240 184 56 255 240 176 255 240 200 239 184 56 255 248 240 255 248 224 239 192 136 224 160 88 239 200 160 255 216 136 240 200 64 255 240 184 255 248 208 255 224 128 255 208 96 255 200 88 255 216 128 80 40 0 191 168 120 207 208 240 176 168 120 128 168 208 80 104 136 224 176 120 239 192 96 208 152 56 128 160 184 176 176 184 95 112 136 239 192 120 176 192 200 79 96 120 207 200 208 207 128 48 255 224 144 240 216 136 176 144 80 224 200 160]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@_@C>@_<A?0G?0_? ?>C?<G?0_?!!?>G?8O?@G<@@@b') ; yourself); yourself]
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5228
!
4639e6ccb58e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5743
diff changeset
  5229
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5230
snapshot16x16Icon
5279
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5231
    "This resource specification was automatically generated
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5232
     by the ImageEditor of ST/X."
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5233
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5234
    "Do not manually edit this!! If it is corrupted,
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5235
     the ImageEditor may not be able to read the specification."
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5236
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5237
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5238
     self snapshot16x16Icon inspect
5279
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5239
     ImageEditor openOnClass:self andSelector:#snapshot16x16Icon
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5240
     Icon flushCachedIcons
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5241
    "
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5242
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5243
    <resource: #image>
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5244
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5245
    ^Icon
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5246
        constantNamed:'GenericToolbarIconLibrary snapshot16x16Icon'
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5247
        ifAbsentPut:[(Depth4Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5248
@@@@@@@@@@@@@@@@@@@@@@@@@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
  5249
@I&P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5279
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5250
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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 138 138 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5251
@@@C G?<??;??/?>??;??/?>??;??/?>??9??@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5252
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5279
3af2da2c44e6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5278
diff changeset
  5253
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5254
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5255
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5256
sortByLineNumber16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5257
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5258
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5259
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5260
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5261
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5262
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5263
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5264
     self sortByLineNumber16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5265
     ImageEditor openOnClass:self andSelector:#sortByLineNumber16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5266
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5267
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5268
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5269
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5270
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5271
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  5272
        constantNamed:'GenericToolbarIconLibrary sortByLineNumber16x16Icon'
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5273
        ifAbsentPut:[(Depth4Image width:16 height:16) bits:(ByteArray fromPackedString:'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5274
L3L3L3L3L3L3L3L3L3L3L3QTL3L3L3L3MFP3L3MAMAL4]CL3L4D4D3PTL3L4EDECMAP4DQDQDQD4ECMDPSPTQCPTL3MAMAL3MAP4DQDQDQD4ECMDEDEDQCPT
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5275
L4D4D3L3DA@SPSPSL3L!!DRL3L3L3L3HRL3L3L3L3L3L3L3L3L3Lb')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5276
            colorMapFromArray:#[63 63 95 0 0 0 159 159 159 159 191 191 191 191 191 1 1 3 3 0 2 0 1 0]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5277
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@G@@\CY0M''A>]?=377CX]?=3?7M >6C8@G@@@@@b'); yourself); yourself]
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5278
!
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5279
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5280
sortByName16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5281
    "This resource specification was automatically generated
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5282
     by the ImageEditor of ST/X."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5283
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5284
    "Do not manually edit this!! If it is corrupted,
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5285
     the ImageEditor may not be able to read the specification."
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5286
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5287
    "
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5288
     self sortByName16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5289
     ImageEditor openOnClass:self andSelector:#sortByName16x16Icon
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5290
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5291
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5292
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5293
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5294
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5295
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5296
        constantNamed:'GenericToolbarIconLibrary sortByName16x16Icon'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5297
        ifAbsentPut:[(Depth8Image width:16 height:16) bits:(ByteArray fromPackedString:'
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5298
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8MCP8@@@@@@@@@@0<C@@@MC @MC @@@@@@@@LP@0@@@@@@CP(@@@@@@@@CA@L@@AHMB 4J@@@@@@@@@0TC@@8MC @M
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5299
B @@@@@@@@LE@0@NCP@@CP(@@@@@@@@CAPL@@@(MCP8BB @@@@@@@0TC@@@@@@@@@@@@@@@@@@LE@0@@@@@@@@\GA0\GA0@CAPL@@@@@@@@IA @KA00@@0TC
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5300
@@@@@@@@A @KA00@APDE@PT@@@@@@@@KA00@@ADEAPTQ@@@@@@@KA00@@@X@DPTQ@@@@@@@@C@\@@@XI@@@Q@@@@@@@@@@\GA0\GA0@a')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5301
            colorMapFromArray:#[159 191 191 63 63 95 63 63 159 191 191 191 0 1 0 0 0 0 191 159 159 127 63 127 255 255 255 159 63 127 63 127 191 223 191 191 159 95 127 63 95 191 127 159 159 1 1 3 3 0 2 159 159 159 63 159 191]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5302
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@C8GM \FA78G] ].A7<G@@\C=0M7@.>A38NW@3HC<b'); yourself); yourself]
4297
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5303
!
Claus Gittinger <cg@exept.de>
parents: 4292
diff changeset
  5304
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5305
start16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5306
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5307
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5308
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5309
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5310
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5311
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5312
     self start16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5313
     ImageEditor openOnClass:self andSelector:#start16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5314
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5315
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5316
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class start16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5317
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5318
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5319
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5320
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5321
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5322
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5323
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5324
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5325
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5326
@@@@@@@@@@@@@@@@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@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5327
PAH$QDQ@Q@@D@RP@@@AD@@A@E@@@@DP@@@PD@@@@@@@@@DP@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5328
                colorMapFromArray:#[ 0 64 64 0 128 128 0 192 192 0 255 255 0 0 0 255 255 255 192 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5329
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5330
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5331
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5332
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5333
                                        fromPackedString:'@@@@0LG@0<CG0L?>7?;??/?>??;_?,?>1<CC0LG@@L@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5334
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5335
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5336
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5337
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5338
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5339
stop16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5340
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5341
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5342
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5343
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5344
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5345
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5346
     self stop16x16Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5347
     ImageEditor openOnClass:self andSelector:#stop16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5348
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5349
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5350
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class stop16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5351
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5352
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5353
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5354
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5355
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5356
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5357
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5358
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5359
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5360
@@@"H"H"@@@@@$QDQDP @@@$P3L3L1H@@$P3L3L3LR@$P0@3L0@3D"P3@@L0@CLRICL0@@@CL1H$L3L@@CL3D"P3L0@@L3LRICL0@@@CL1H$L0@CL@@3D"P3
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5361
@CL3@CLR@!!L3L3L3LR@@HSL3L3LR@@@BDQDQDR@@@@@"H"H"@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5362
                colorMapFromArray:#[ 255 255 255 128 0 0 0 0 0 192 0 0 255 192 192 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5363
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5364
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5365
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5366
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5367
                                        fromPackedString:'C?@_>C?<_?;?????????????????????_?8??A?8C?@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5368
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5369
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5370
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5371
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5372
4538
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5373
stopPoint16x16
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5374
    "This resource specification was automatically generated
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5375
     by the ImageEditor of ST/X."
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5376
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5377
    "Do not manually edit this!! If it is corrupted,
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5378
     the ImageEditor may not be able to read the specification."
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5379
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5380
    "
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5381
     self stopPoint16x16 inspect
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5382
     ImageEditor openOnClass:self andSelector:#stopPoint16x16
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5383
     Icon flushCachedIcons
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5384
    "
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5385
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5386
    <resource: #image>
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5387
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5388
    ^Icon
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5389
        constantNamed:'GenericToolbarIconLibrary stopPoint16x16'
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5390
        ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#[4]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4708
9754e4d95207 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  5391
L3L3L3L3L3L3L3L3L3L3L3L3L3L0@3L3L3L3@3L@L3L3LCA''U6@3L3L0C+ X/ L3L3@7$QFWL3L3L3WP@MT3L3L3M<DQ13L3L3@N.$J>@3L3L3A''U6@CL3L3
9754e4d95207 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4681
diff changeset
  5392
L@L3@3L3L3L3L3L3L3L3L3L3L3L3L3L3L3L3L3L3L3L3L3L3@@@b') ; colorMapFromArray:#[255 255 255 196 96 86 164 75 67 176 176 176 182 74 66 79 34 26 193 90 78 96 47 37 171 87 78 158 77 70 165 75 67 88 43 32 148 68 60 159 65 56 184 74 65]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@\@C8@_0C? O>@?8A?@C8@G@@@@@@@@@@@@b') ; yourself); yourself]
4538
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5393
!
135e0d08918c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4533
diff changeset
  5394
5071
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5395
structsOnly16x16Icon
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5396
    "This resource specification was automatically generated
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5397
     by the ImageEditor of ST/X."
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5398
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5399
    "Do not manually edit this!! If it is corrupted,
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5400
     the ImageEditor may not be able to read the specification."
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5401
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5402
    "
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5403
     self structsOnly16x16Icon inspect
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5404
     ImageEditor openOnClass:self andSelector:#structsOnly16x16Icon
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5405
     Icon flushCachedIcons
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5406
    "
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5407
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5408
    <resource: #image>
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5409
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5410
    ^Icon
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5411
        constantNamed:'GenericToolbarIconLibrary structsOnly16x16Icon'
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5412
        ifAbsentPut:[(Depth4Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5413
QDQDQDQDQDQDQDQDQDQDQ@A@QR@BT@@@@DQPP@@E@@@@QCQD@@L@@@ADEDP@@P@@@DTDQ@@@T@@@P@@D@@@@@@A@ADP@@@@@@DTDQ@@@T@@@QAQD@@D@@@AD
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5414
EDP@@P@@@DQPP@@E@@ADQDTTPUQDQDQDQDQDQDQDQDQDQDQDQDPb') ; colorMapFromArray:#[63 63 95 0 0 0 3 0 2 0 1 0 159 191 191 191 191 191]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@Y CC@HD@ PFA XFA XFA HD@ PCC@FX@@@@@@b') ; yourself); yourself]
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5415
!
ff384cee0e7a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5416
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5417
terminal16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5418
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5419
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5420
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5421
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5422
     the ImageEditor may not be able to read the specification."
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5423
    "
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5424
     self terminal16x16Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5425
     ImageEditor openOnClass:self andSelector:#terminal16x16Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5426
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5427
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  5428
    ^ Icon constantNamed:'GenericToolbarIconLibrary terminal16x16Icon'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5429
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5430
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5431
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5432
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5433
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5434
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5435
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5436
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5437
                            fromPackedString:'
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5438
A@PDA@PDA@PDA@PDA@PDA@PJB (JB (JB (JB (JB PJGQ4\F1,[F!!$YFA WE!!XJB!!4B@ HB@ HB@ HB@ HVB ([@  HB@ HB@ HB@ BE@(JF0HGA0\GA0\G
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5439
A0\G@!!PJB!!(AA!!4FA XFA XFA DQB (Y@PXFGPXFA XFA XADP(JF@@EAQ4EAPTEAPTE@A@JB!! @AA4DAA4]GPPDA@@OB (V@@LC@0LC@0LC@0L@CP(JE @@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5440
@@@@@@@@@@@@@@0JB!!TTEALQDQDPC0<MCP0KB (TEAHQDQ@PC08MB $KB0(DB (JB (JB (JB (JB (DA@PDA@PDA@PDA@PDA@PDA@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5441
                colorMapFromArray:#[ 95 96 104 95 96 120 95 104 120 95 120 168 95 128 168 95 128 176 96 136 184 96 144 200 111 144 200 127 120 120 143 136 136 176 176 176 191 184 176 191 184 184 192 184 184 192 192 184 192 192 200 207 200 200 207 200 208 208 200 208 208 208 208 223 208 208 223 216 216 224 224 216 224 224 224 239 232 224 239 232 240 240 240 240 255 240 248 255 248 248 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5442
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5443
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5444
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5445
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5446
                                        fromPackedString:'@@A??/???????????????????????????????7?>@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5447
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5448
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5449
        ]
4379
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5450
!
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
  5451
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5452
top16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5453
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5454
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5455
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5456
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5457
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5458
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5459
     self top16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5460
     ImageEditor openOnClass:self andSelector:#top16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5461
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5462
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5463
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class top16x16Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5464
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5465
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5466
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5467
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5468
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5469
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5470
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5471
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5472
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5473
AUUUUUUUUP@EUUUUUUUU@@@@@EAP@@@@@@@EYCT@@@@@@EYBD5@@@@@EYBH!!MP@@@EYBH"HST@@EYBH"H"D5@EABH"H"H!!MPUUUTH"EUUU@@@E@"HU@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5474
TBH!!T@@@@@APH"EP@@@@@EPQDU@@@@@@UUUUT@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5475
                colorMapFromArray:#[ 192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5476
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5477
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5478
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5479
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5480
                                        fromPackedString:'_?1??@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5481
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5482
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5483
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5484
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5485
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5486
undent16x16Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  5487
    <resource:#programImage>
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5488
    ^ self undent16x16Icon1
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5489
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5490
    "Modified: / 06-04-2011 / 18:38:05 / cg"
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5491
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5492
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5493
undent16x16Icon1
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5494
    "This resource specification was automatically generated
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5495
     by the ImageEditor of ST/X."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5496
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5497
    "Do not manually edit this!! If it is corrupted,
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5498
     the ImageEditor may not be able to read the specification."
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5499
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5500
    "
5732
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5501
     self undent16x16Icon1 inspect
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5502
     ImageEditor openOnClass:self andSelector:#undent16x16Icon1
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5503
     Icon flushCachedIcons
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5504
    "
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5505
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5506
    <resource: #image>
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5507
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5508
    ^Icon
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5509
        constantNamed:'GenericToolbarIconLibrary undent16x16Icon1'
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5510
        ifAbsentPut:[(Depth2Image width:16 height:16) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@E@@@@EU@@@@T@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5511
            colorMapFromArray:#[0 0 0 0 0 128]
cdb320f834f2 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5704
diff changeset
  5512
            mask:((ImageMask width:16 height:16) bits:(ByteArray fromPackedString:'@@@?8@@@O>@@@BG?X_?8@FG?H_<@@C?@@@@?0@@@@@@b'); yourself); yourself]
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5513
!
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5514
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5515
undent16x16Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5516
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5517
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5518
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5519
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5520
     the ImageEditor may not be able to read the specification."
4235
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5521
    "
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5522
     self undent16x16Icon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4230
diff changeset
  5523
     ImageEditor openOnClass:self andSelector:#undent16x16Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5524
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5525
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5526
    ^ Icon constantNamed:'GenericToolbarIconLibrary undent16x16Icon2'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5527
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5528
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5529
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5530
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5531
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5532
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5533
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5534
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5535
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  5536
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H@@"H"H@@@@@@BD"H"H"H"@@DRH"@@@@@@DQDQH"H"H @AD"H @@@@@@HRH"H"H"H@@"
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5537
H"H@@@@@@BH"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5538
                colorMapFromArray:#[ 0 0 0 34 110 181 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5539
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5540
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5541
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5542
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5543
                                        fromPackedString:'@@@@@@@@O?8??#?>O?8??''?>O?8??#?>O?8?? @@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5544
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5545
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5546
        ]
3806
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5547
!
ffa777fba293 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3796
diff changeset
  5548
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5549
undo16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5550
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5551
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5552
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5553
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5554
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5555
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5556
     self undo16x16Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5557
     ImageEditor openOnClass:self andSelector:#undo16x16Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5558
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5559
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5560
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5561
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5562
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5563
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5564
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5565
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5566
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5567
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5568
                            fromPackedString:'@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5569
                colorMapFromArray:#[ 0 0 0 0 0 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5570
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5571
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5572
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5573
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5574
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5575
@@@@@@@@@@@@<BLHM@P8AC0DO  @B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5576
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5577
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5578
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5579
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5580
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5581
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5582
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5583
undo16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5584
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5585
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5586
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5587
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5588
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5589
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5590
     self undo16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5591
     ImageEditor openOnClass:self andSelector:#undo16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5592
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5593
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5594
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class undo16x16Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5595
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5596
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5597
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5598
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5599
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5600
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5601
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5602
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5603
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5604
@@@@@@@@@@@@@@@CL3@@@@@@@3@@@3@@L@@0@@H"H0@2@0@BH3D"LC@0@BL0@3D0L@@BL@@@@1L0@@L@@@@CL3@@@0@@@@L3L"H"H@@@@3L3L3L3@@@CL@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5605
@@@@@CL0@@@@@@@CL0@@@@@@@3L0@@@@@@@3L@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5606
                colorMapFromArray:#[ 0 192 0 0 64 0 0 128 0 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5607
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5608
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5609
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5610
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5611
                                        fromPackedString:'@@@A8@_8#?3_?/>^? _<A?0G? _?A @N@A0@^@C @@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5612
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5613
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5614
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5615
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5616
3506
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  5617
up16x16Icon
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  5618
    <resource: #programImage>
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  5619
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  5620
    ^ self up16x16Icon2
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  5621
!
1eec20658352 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3497
diff changeset
  5622
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5623
up16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5624
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5625
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5626
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5627
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5628
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5629
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5630
     self up16x16Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5631
     ImageEditor openOnClass:self andSelector:#up16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5632
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5633
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5634
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class up16x16Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5635
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5636
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5637
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5638
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5639
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5640
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5641
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5642
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5643
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5644
@@@@@@@@@@@@@@@F@@@@@@@@@FE @@@@@@@FATX@@@@@@FASIF@@@@@FASL2Q @@@FASL3L$X@@FASL3L3IF@FESL3L3L2Q Y&Y%L3I&Y&@@@FD3L&@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5645
XSL2X@@@@@A!!L3I @@@@@FT"H&@@@@@@Y&Y&X@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5646
                colorMapFromArray:#[ 255 255 255 192 255 255 0 128 128 0 192 192 0 64 64 0 255 255 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5647
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5648
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5649
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5650
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5651
                                        fromPackedString:'@@@A@@N@A<@O8A?0O?!!??O?>??8O8@? C>@O8@? @@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5652
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5653
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5654
        ]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5655
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5656
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5657
upRight16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5658
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5659
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5660
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5661
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5662
     the ImageEditor may not be able to read the specification."
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5663
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5664
     self upRight16x16Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5665
     ImageEditor openOnClass:self andSelector:#upRight16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5666
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5667
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5668
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class upRight16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5669
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5670
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5671
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5672
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5673
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5674
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5675
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5676
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5677
                            fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5678
@@@@@@@@@@@@@@@@T@@@@@@@@@AU@@@@@@@@@EAP@@@EUUUUT T@@@T@@BL3HE@@APL3L3L2AP@E@3L3L3MAT@TCL3L3MAT@APMDQCMAT@@E@4UUUAT@@@TC
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5679
QPAQT@@@APME@ET@@@@E@4T@T@@@@@UUUP@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5680
                colorMapFromArray:#[ 192 255 255 0 64 64 0 255 255 0 192 192 0 128 128 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5681
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5682
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5683
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5684
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5685
                                        fromPackedString:'@@@@ @C@@NA?<G?8_?1??''?<_?!!?<G3 _LA< G0@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5686
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5687
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5688
        ]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5689
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  5690
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5691
viewDetails16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5692
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5693
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5694
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5695
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5696
     the ImageEditor may not be able to read the specification."
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5697
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5698
     self viewDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5699
     ImageEditor openOnClass:self andSelector:#viewDetails16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5700
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5701
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5702
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5703
        constantNamed:#'GenericToolbarIconLibrary class viewDetails16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5704
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5705
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5706
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5707
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5708
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5709
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5710
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5711
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5712
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5713
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5714
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5715
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5716
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5717
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5718
                                        fromPackedString:'@@@@@@@@]+X@@@@@]+X@@@@@]+X@@@@@]+X@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5719
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5720
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5721
        ]
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5722
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5723
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5724
viewNoDetails16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5725
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5726
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5727
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5728
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5729
     the ImageEditor may not be able to read the specification."
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5730
    "
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5731
     self viewNoDetails16x16Icon inspect
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
  5732
     ImageEditor openOnClass:self andSelector:#viewNoDetails16x16Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5733
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5734
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5735
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5736
        constantNamed:#'GenericToolbarIconLibrary class viewNoDetails16x16Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5737
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5738
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5739
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5740
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5741
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5742
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5743
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5744
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5745
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5746
                colorMapFromArray:#[ 0 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5747
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5748
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5749
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5750
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5751
                                        fromPackedString:'@@@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@A<@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5752
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5753
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5754
        ]
4200
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  5755
!
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  5756
e43b78348570 added: #viewTimeDetails16x16Icon
Claus Gittinger <cg@exept.de>
parents: 4180
diff changeset
  5757
viewTimeDetails16x16Icon
5327
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  5758
    <resource: #programImage>
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  5759
75a25d71411d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5313
diff changeset
  5760
    ^ self clock16x16Icon
4780
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5761
!
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5762
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5763
zoomIn16x16Icon
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5764
    "This resource specification was automatically generated
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5765
     by the ImageEditor of ST/X."
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5766
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5767
    "Do not manually edit this!! If it is corrupted,
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5768
     the ImageEditor may not be able to read the specification."
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5769
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5770
    "
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5771
     self zoomIn16x16Icon inspect
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5772
     ImageEditor openOnClass:self andSelector:#zoomIn16x16Icon
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5773
     Icon flushCachedIcons
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5774
    "
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5775
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5776
    <resource: #image>
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5777
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5778
    ^Icon
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5779
        constantNamed:'GenericToolbarIconLibrary zoomIn16x16Icon'
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5780
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5781
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+:)79KI@@@@@@@@@@@@,JO@+.J:->@@@@@@@@@@@L!!Z Z3T"INP*0@@@@@@@L^-+8" ''9SF.Y,@@@@@@@B="Y;R
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5782
8>RW"=W^@@@@@@@@/LVG.K.%3L.L!! @@@@@@@NV*(^FU/;N&"-@@@@@@@@C&''MZ"5;F2 - @@@@@@@CQ&,:]1IGS2+8@@@@@@@C]6=*$@I"M M$@@@@@@@CO
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5783
&]25@@@@@@@@ 0@@@@CC-HRN@@@@@@@@@HL@@@BE)8R6@@@@@@@@ 8NC 8L@0,F(@@@@@@@@@@@@3P@@@@BO@@@@@@@@@@@@@HL@@@@@@@@@@@@@@@@@@@@@
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5784
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 1 2 3 7 11 14 18 22 24 15 23 28 15 24 29 16 25 31 37 37 37 30 41 48 29 45 55 31 47 57 37 57 69 41 58 70 45 58 66 57 63 65 45 69 85 48 73 89 67 74 79 55 79 93 72 79 83 55 83 101 55 85 103 75 81 86 61 85 101 57 86 105 58 87 106 61 91 110 86 86 86 60 92 112 85 90 93 69 99 117 70 103 123 92 104 110 78 110 127 79 113 131 110 110 110 97 113 120 86 116 131 109 113 115 113 114 115 85 121 140 95 123 138 100 123 134 110 122 130 96 129 145 120 124 127 93 132 151 126 126 126 103 132 146 101 138 156 132 132 132 105 139 156 102 140 159 113 138 149 134 134 134 135 135 135 127 137 143 130 138 140 111 142 157 129 139 143 108 148 167 108 149 168 108 149 169 108 150 170 141 156 162 150 156 158 155 155 155 163 163 163 164 168 170 164 170 173 172 172 172 174 174 174 188 188 188 195 195 195 202 202 202 203 203 203 204 204 204 210 210 210 211 211 211 215 215 215 225 225 225 227 227 227 229 229 229 232 232 232 235 235 235 236 236 236 243 243 243 247 247 247 250 250 250 254 254 254 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 203 209 224 216 238 252 241 244 246 2 2 2 199 118 74 242 203 145 162 178 206 170 223 253 174 221 252 185 233 251 208 237 242 217 252 252 220 254 254 199 204 222 152 118 144 178 175 180 158 196 228 184 221 233 170 188 219 196 246 255 202 251 253 214 253 252 191 193 219 220 253 253 193 199 219 252 169 69 211 196 161 145 159 196 141 158 204 162 181 214 165 219 254 195 244 253 192 240 253 189 241 255 203 255 255 203 210 227 194 190 196 231 251 253 254 255 255 255 170 66 157 121 143 157 186 217 167 205 233 171 173 202 173 220 251 196 233 245 206 249 255 203 240 253 199 201 222 230 255 255 240 255 255 248 251 251 252 170 69 154 123 141 153 119 144 154 199 233 187 240 252 198 248 253 193 241 254 207 253 253 184 189 220 190 194 223 181 190 214 231 251 252 242 250 254 168 104 70 185 176 155 253 205 132 160 192 219 182 230 246 198 247 252 181 192 218 185 200 226 184 187 218 188 216 229 230 251 252 239 253 253 18 18 18 144 157 174 252 205 132 159 167 195 251 211 149 181 235 252 192 229 237 168 215 252 208 253 254 182 221 242 213 255 255 186 195 216 205 208 225 184 113 69 253 169 62 200 117 75 253 205 131 167 193 213 161 193 223 160 173 211 194 243 251 186 236 255 205 253 253 215 254 253 191 192 218 214 217 225]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@?@G>@_<C?0O?@?<C?0O>A?0O^A8DO@Q8G7@DH@Pb') ; yourself); yourself]
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5785
!
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5786
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5787
zoomOut16x16Icon
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5788
    "This resource specification was automatically generated
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5789
     by the ImageEditor of ST/X."
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5790
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5791
    "Do not manually edit this!! If it is corrupted,
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5792
     the ImageEditor may not be able to read the specification."
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5793
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5794
    "
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5795
     self zoomOut16x16Icon inspect
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5796
     ImageEditor openOnClass:self andSelector:#zoomOut16x16Icon
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5797
     Icon flushCachedIcons
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5798
    "
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5799
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5800
    <resource: #image>
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5801
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5802
    ^Icon
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5803
        constantNamed:'GenericToolbarIconLibrary zoomOut16x16Icon'
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5804
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5805
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%+:)7)KI@@@@@@@@@@@@,JO@+.F:-=<@@@@@@@@@@L!!Q Z3S"INP*0@@@@@@@L^-+8" ''9SF.Y,@@@@@@@B="Y;Q
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5806
8.NW"=S]@@@@@@@@/LVG.K.%3L.L!! @@@@@@@NR*(^BU/;N&",<@@@@@@@C%''MV"5+F2 -\@@@@@@@CP&,6]1IGR2+8@@@@@@@C\6-&$@I"M M @@@@@@@CN
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5807
&].5@@@@@@@@@@@@@@CC-HRN@@@@@@@@@@@@@@BE)8R6@@@@@@@@ 8NC 8L@0,F(@@@@@@@@@@@@@@@@@@BO@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
c09fd48adc85 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4774
diff changeset
  5808
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 1 2 2 8 12 14 19 21 24 15 23 28 15 24 29 16 25 30 37 37 37 31 41 49 30 45 55 31 47 57 37 57 69 41 58 70 45 59 68 57 63 65 46 70 85 48 74 90 68 75 80 55 79 94 73 79 84 55 83 101 55 85 103 76 82 86 61 85 101 57 86 105 58 87 106 61 91 110 86 86 86 60 92 112 85 90 93 69 99 117 70 104 123 92 103 110 78 110 127 79 113 131 97 112 120 86 116 130 109 113 115 113 115 116 85 121 140 94 123 137 100 123 134 111 123 130 120 124 128 97 130 146 93 132 151 104 131 146 101 138 156 132 132 132 105 139 156 102 140 159 113 138 149 134 134 134 127 137 143 130 137 140 111 142 157 130 139 143 108 148 167 108 149 168 108 149 169 108 150 170 141 156 162 150 155 158 155 155 155 163 168 169 164 170 173 172 172 172 188 188 188 195 195 195 202 202 202 204 204 204 210 210 210 211 211 211 225 225 225 227 227 227 232 232 232 235 235 235 247 247 247 248 248 248 250 250 250 254 254 254 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 203 209 224 216 238 252 241 244 246 2 2 2 199 118 74 242 203 145 162 178 206 170 223 253 174 221 252 185 233 251 208 237 242 217 252 252 220 254 254 199 204 222 152 118 144 178 175 180 158 196 228 184 221 233 170 188 219 196 246 255 202 251 253 214 253 252 191 193 219 220 253 253 193 199 219 252 169 69 211 196 161 145 159 196 141 158 204 162 181 214 165 219 254 195 244 253 192 240 253 189 241 255 203 255 255 203 210 227 194 190 196 231 251 253 254 255 255 255 170 66 157 121 143 157 186 217 167 205 233 171 173 202 173 220 251 196 233 245 206 249 255 203 240 253 199 201 222 230 255 255 240 255 255 248 251 251 252 170 69 154 123 141 153 119 144 154 199 233 187 240 252 198 248 253 193 241 254 207 253 253 184 189 220 190 194 223 181 190 214 231 251 252 242 250 254 168 104 70 185 176 155 253 205 132 160 192 219 182 230 246 198 247 252 181 192 218 185 200 226 184 187 218 188 216 229 230 251 252 239 253 253 144 157 174 252 205 132 159 167 195 251 211 149 181 235 252 192 229 237 168 215 252 208 253 254 182 221 242 213 255 255 186 195 216 205 208 225 184 113 69 253 169 62 200 117 75 253 205 131 167 193 213 161 193 223 160 173 211 194 243 251 186 236 255 205 253 253 215 254 253 191 192 218 214 217 225]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@?@G>@_<C?0O?@?<C?0O>A?0O^A8@O@A8G7@@H@@b') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5809
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5810
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5811
!GenericToolbarIconLibrary class methodsFor:'image specs-17x17'!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5812
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5813
radioOff17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5814
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5815
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5816
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5817
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5818
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5819
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5820
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5821
     self radioOff17x17Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5822
     ImageEditor openOnClass:self andSelector:#radioOff17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5823
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5824
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5825
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5826
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5827
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5828
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5829
        constantNamed:'GenericToolbarIconLibrary radioOff17x17Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5830
        ifAbsentPut:[(Depth8Image width:17 height:17) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5831
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C!!IOC@.MS @@@@@@@@@@EPVM0-RFBT9BRXR@@@@@@AFPD, HB@ HB@ R20M@@@@@CP*@ HB@ HB@ HBG3P@@@@''P!!8^
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5832
G!!8^G!!8^G!!8^C"H@@C0PL3L3L3L3L3L3L3L$JP@@H0<A@PDA@PDA@PDA@T(J@@@TN#8>O#8>O#8>O#8>DR @@A]VO3<?O3<?O3<?O3<=E@@@@D0QR$)JR$)J
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5833
R$)JDPTU@@AER@0>TEAPTEAPTEHLQDT@@@AAK2DDS%@OTD8DT$MU@@@@@D4YV@YRG  ^T YYQ1,@@@@@@@\]L"<6M#,/KSD\@@@@@@@@@@@ZJ5]ZTQLZ@@@@
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5834
@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5835
            colorMapFromArray:#[164 165 162 243 243 241 248 248 248 235 235 235 245 245 244 215 217 213 225 227 222 219 219 218 247 247 247 186 187 184 154 156 152 221 222 220 239 240 238 226 226 226 176 178 175 235 235 233 213 213 211 242 242 240 227 227 227 146 147 144 145 147 143 162 164 161 180 181 178 148 149 145 246 246 246 134 135 132 192 192 191 220 220 220 218 218 218 138 140 136 246 246 245 214 215 213 250 250 250 240 241 238 206 207 205 155 157 153 214 215 212 240 240 240 179 181 178 206 207 206 146 148 143 173 175 172 210 211 209 147 148 145 167 168 165 168 170 164 175 177 173 206 209 203 171 173 169 137 139 136 167 169 165 245 245 243 171 172 169 189 190 187 212 216 208 185 187 184 212 212 211 221 222 221 240 240 238 212 216 209 175 177 174 234 235 233 241 241 239 239 239 237 168 170 166 146 148 144 174 176 173 206 208 202 172 175 170 198 199 197 226 227 226 134 136 132 172 173 169 189 191 188 237 237 235 215 216 214 214 216 213 221 221 220 239 239 238 236 236 236 236 236 234 122 123 120 240 240 239 237 237 237 227 227 226 145 147 144 234 234 233 122 124 120 204 207 201 204 208 200 116 118 114]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5836
            mask:((ImageMask width:17 height:17) bits:(ByteArray fromPackedString:'@@A?A?A?G?1?O?9?O?9?_?=?_?=?_?=?_?=?_?=?_?=?_?=?O?9?O?9?G?1?A?A?@@A?'); yourself); yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5837
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5838
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5839
radioOffDisabled17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5840
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5841
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5842
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5843
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5844
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5845
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5846
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5847
     self radioOffDisabled17x17Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5848
     ImageEditor openOnClass:self andSelector:#radioOffDisabled17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5849
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5850
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5851
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5852
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5853
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5854
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5855
        constantNamed:'GenericToolbarIconLibrary radioOffDisabled17x17Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5856
        ifAbsentPut:[(Depth8Image width:17 height:17) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5857
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C!!IOC@.MS @@@@@@@@@@EPVM0-RFBT9BRXR@@@@@@AFPD, HB@ HB@ R20M@@@@@CP*@ HB@ HB@ HBG3P@@@@''P!!8^
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5858
G!!8^G!!8^G!!8^C"H@@C0PL3L3L3L3L3L3L3L$JP@@H0<A@PDA@PDA@PDA@T(J@@@TN#8>O#8>O#8>O#8>DR @@A]VO3<?O3<?O3<?O3<=E@@@@D0QR$)JR$)J
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5859
R$)JDPTU@@AER@0>TEAPTEAPTEHLQDT@@@AAK2DDS%@OTD8DT$MU@@@@@D4YV@YRG  ^T YYQ1,@@@@@@@\]L"<6M#,/KSD\@@@@@@@@@@@ZJ5]ZTQLZ@@@@
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5860
@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5861
            colorMapFromArray:#[164 165 162 243 243 241 248 248 248 235 235 235 245 245 244 215 217 213 225 227 222 219 219 218 247 247 247 186 187 184 154 156 152 221 222 220 239 240 238 226 226 226 176 178 175 235 235 233 213 213 211 242 242 240 227 227 227 146 147 144 145 147 143 162 164 161 180 181 178 148 149 145 246 246 246 134 135 132 192 192 191 220 220 220 218 218 218 138 140 136 246 246 245 214 215 213 250 250 250 240 241 238 206 207 205 155 157 153 214 215 212 240 240 240 179 181 178 206 207 206 146 148 143 173 175 172 210 211 209 147 148 145 167 168 165 168 170 164 175 177 173 206 209 203 171 173 169 137 139 136 167 169 165 245 245 243 171 172 169 189 190 187 212 216 208 185 187 184 212 212 211 221 222 221 240 240 238 212 216 209 175 177 174 234 235 233 241 241 239 239 239 237 168 170 166 146 148 144 174 176 173 206 208 202 172 175 170 198 199 197 226 227 226 134 136 132 172 173 169 189 191 188 237 237 235 215 216 214 214 216 213 221 221 220 239 239 238 236 236 236 236 236 234 122 123 120 240 240 239 237 237 237 227 227 226 145 147 144 234 234 233 122 124 120 204 207 201 204 208 200 116 118 114]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5862
            mask:((ImageMask width:17 height:17) bits:(ByteArray fromPackedString:'@@A?A?A?G?1?O?9?O?9?_?=?_?=?_?=?_?=?_?=?_?=?_?=?O?9?O?9?G?1?A?A?@@A?'); yourself); yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5863
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5864
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5865
radioOn17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5866
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5867
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5868
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5869
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5870
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5871
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5872
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5873
     self radioOn17x17Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5874
     ImageEditor openOnClass:self andSelector:#radioOn17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5875
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5876
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5877
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5878
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5879
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5880
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5881
        constantNamed:'GenericToolbarIconLibrary radioOn17x17Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5882
        ifAbsentPut:[(Depth8Image width:17 height:17) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5883
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J<5K#@<MS @@@@@@@@@@LTNBS$%FH=4 U0R@@@@@@@MKH8 HB@ HB@ 0I=T@@@@@F2C@ HB@ HB@ HB\7(@@@BV118^
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5884
G)]8&W]%G!!8^^Z\@@H&:!!XU.&IFS0<*J!!XV(C @@_74A@\FZ3Y.?2:,A@["M@@@TN#9J\H/D^9JK.\0>''AP@@JT=O6>F_FOHYF6P\S>-XP@@!!8R1C562%F*L
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5885
Y6Z=DV 2@@A^(@1R]YWB\(Z&]#;LL+X@@@@(W94D(;B^ZZPD''JE"@@@@@G;NX@Z)G  ^T+V"G\X@@@@@@K.@,:3IM,%X*+2H@@@@@@@@@@B./&.B-H67@@@@
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5886
@@@@@@@@@@@@@@@@@@@@@@@@@@@a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5887
            colorMapFromArray:#[164 165 162 243 243 241 248 248 248 235 235 235 245 245 244 215 217 213 225 227 222 219 219 218 247 247 247 186 187 184 154 156 152 221 222 220 239 240 238 226 226 226 176 178 175 235 235 233 213 213 211 242 242 240 227 227 227 146 147 144 145 147 143 162 164 161 180 181 178 148 149 145 246 246 246 134 135 132 192 192 191 220 220 220 218 218 218 138 140 136 246 246 245 214 215 213 250 250 250 240 241 238 206 207 205 155 157 153 214 215 212 240 240 240 179 181 178 206 207 206 146 148 143 173 175 172 210 211 209 147 148 145 167 168 165 168 170 164 175 177 173 206 209 203 171 173 169 137 139 136 167 169 165 245 245 243 171 172 169 189 190 187 212 216 208 185 187 184 212 212 211 221 222 221 240 240 238 212 216 209 175 177 174 234 235 233 241 241 239 239 239 237 168 170 166 146 148 144 174 176 173 206 208 202 172 175 170 198 199 197 226 227 226 134 136 132 172 173 169 189 191 188 237 237 235 215 216 214 214 216 213 221 221 220 239 239 238 236 236 236 236 236 234 122 123 120 240 240 239 237 237 237 227 227 226 145 147 144 234 234 233 122 124 120 204 207 201 204 208 200 116 118 114 0 0 0 178 179 176 156 175 194 199 199 197 203 207 201 203 205 199 149 151 148 149 150 147 136 174 215 137 175 215 191 205 222 161 179 195 69 114 171 212 214 210 215 218 211 153 186 221 130 132 128 171 173 170 125 163 206 181 197 215 233 234 231 56 104 165 234 235 231 55 103 165 211 211 210 223 224 222 225 226 222 225 227 223 89 129 179 87 127 179 174 175 171 174 176 172 128 169 211 127 165 208 235 236 233 222 222 221 153 155 152 142 143 140 184 186 183 123 125 121 213 213 212 215 217 214 244 244 243 76 119 173 164 166 163 224 225 224 174 175 173 186 201 218 129 169 212 131 168 209 155 157 154 215 216 215 245 245 245 80 122 174 118 157 202 115 159 207 163 191 222 134 170 210 155 175 194 207 207 205 187 202 220 64 111 170 64 110 169 104 148 198 180 204 229 238 239 237 239 240 237 212 215 208 168 170 167 171 174 168 202 205 199 202 204 198 230 231 228 231 232 228 148 149 146 158 177 195 209 210 208 210 211 208 240 241 239 160 162 158 85 125 176 205 208 201 232 233 230 199 200 199 210 211 210 215 218 212 241 241 240 70 116 173 163 165 160 130 132 129 224 226 222 201 202 201 201 201 200 232 232 231 58 106 166 213 214 212 222 222 222 143 145 142 236 237 234 154 156 153 145 180 217 214 214 213 79 121 173 76 119 174 115 154 201 114 159 207 225 226 225 224 224 224 177 179 175 131 171 213 211 215 208 63 110 169 102 147 198 238 239 236 148 182 218 137 139 135]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5888
            mask:((ImageMask width:17 height:17) bits:(ByteArray fromPackedString:'@@A?A?A?G?1?O?9?O?9?_?=?_?=?_?=?_?=?_?=?_?=?_?=?O?9?O?9?G?1?A?A?@@A?'); yourself); yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5889
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5890
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5891
radioOnDisabled17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5892
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5893
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5894
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5895
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5896
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5897
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5898
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5899
     self radioOnDisabled17x17Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5900
     ImageEditor openOnClass:self andSelector:#radioOnDisabled17x17Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5901
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5902
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5903
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5904
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5905
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5906
    ^Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5907
        constantNamed:'GenericToolbarIconLibrary radioOnDisabled17x17Icon'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5908
        ifAbsentPut:[(Depth8Image width:17 height:17) bits:(ByteArray fromPackedString:'
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5909
M3\7M3\7M3\7M3\7M3\7M3\7M3\7M51MP#1CSU<7M3\7M3\7M7IDR&*J%II-RTY7M3\7M3]5NVZW%9^W%9^WYS-6M3\7M35#%)ZV%)ZV%)ZVWTD7M3]YQYNS
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5910
%KR ''<B0%INSO5(7M4A$$IB,+96[&)>''$IA[QC\7KHBO#;F<''+R".I&O#7(/M3\%"H2B.Z.]*;6+.8NL!!BT7M2!!>!!W2(/**X+)2-_XU;J3\7NF^M_:&3&KZ+
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5911
)Y:A#&@:M3]OO(^I-:&:(Z""]X2CN%H7M3\''U(ZQ^F%!!ZG&Q!!EP*M3\7M6, UWNK$9VS"WASH&87M3\7M60#MU!!^X%9WL2Q/M3\7M3\7M3]PK!!(UF2=QM3\7
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5912
M3\7M3\7M3\7M3\7M3\7M3\7M0@a')
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5913
            colorMapFromArray:#[55 103 165 56 104 165 58 106 166 63 110 169 64 110 169 64 111 170 69 114 171 70 116 173 76 119 173 76 119 174 79 121 173 80 122 174 85 125 176 87 127 179 89 129 179 102 147 198 104 148 198 114 159 207 115 154 201 115 159 207 118 157 202 123 125 121 125 163 206 127 165 208 128 169 211 129 169 212 130 132 128 130 132 129 131 168 209 131 171 213 134 170 210 136 174 215 137 139 135 137 175 215 138 140 136 142 143 140 143 145 142 145 147 143 145 180 217 146 148 143 148 149 146 148 182 218 149 150 147 149 151 148 153 155 152 153 186 221 154 156 153 155 157 154 155 175 194 156 175 194 158 177 195 160 162 158 161 179 195 163 165 160 163 191 222 164 165 162 164 166 163 167 168 165 167 169 165 168 170 167 171 173 169 171 173 170 171 174 168 174 175 171 174 175 173 174 176 172 175 177 173 175 177 174 176 178 175 177 179 175 178 179 176 180 204 229 181 197 215 184 186 183 186 187 184 186 201 218 187 202 220 189 190 187 191 205 222 199 199 197 199 200 199 201 201 200 201 202 201 202 204 198 202 205 199 203 205 199 203 207 201 204 207 201 205 208 201 207 207 205 209 210 208 210 211 208 210 211 210 211 211 210 211 215 208 212 212 211 212 214 210 212 215 208 212 216 208 213 213 212 213 214 212 214 214 213 215 216 215 215 217 214 215 218 211 215 218 212 221 222 221 222 222 221 222 222 222 223 224 222 224 224 224 224 225 224 224 226 222 225 226 222 225 226 225 225 227 222 225 227 223 226 226 226 227 227 226 227 227 227 230 231 228 231 232 228 232 232 231 232 233 230 233 234 231 234 235 231 234 235 233 235 235 233 235 236 233 236 237 234 237 237 235 238 239 236 238 239 237 239 239 237 239 240 237 239 240 238 240 240 238 240 240 239 240 240 240 240 241 239 241 241 239 241 241 240 242 242 240 243 243 241 244 244 243 245 245 244 245 245 245 246 246 245 246 246 246 247 247 247 248 248 248 250 250 250 163 163 163 118 118 118 147 147 147 186 186 186 156 156 156 150 150 150 175 175 175 102 102 102 120 120 120 95 95 95 173 173 173 175 175 175 246 246 246 106 106 106 150 150 150 198 198 198 111 111 111 171 171 171 167 167 167 161 161 161 194 194 194 115 115 115 168 168 168 103 103 103 202 202 202 114 114 114 161 161 161 108 108 108 199 199 199 102 102 102 180 180 180 225 225 225 139 139 139 96 96 96 112 112 112 98 98 98 140 140 140 151 151 151 158 158 158 171 171 171 122 122 122]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5914
            mask:((ImageMask width:17 height:17) bits:(ByteArray fromPackedString:'@@A?A?A?G?1?O?9?O?9?_?=?_?=?_?=?_?=?_?=?_?=?_?=?O?9?O?9?G?1?A?A?@@A?'); yourself); yourself]
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5915
! !
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  5916
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5917
!GenericToolbarIconLibrary class methodsFor:'image specs-20x20'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5918
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5919
bookmarks20x20
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5920
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5921
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5922
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5923
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5924
     the ImageEditor may not be able to read the specification."
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5925
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5926
     self bookmarks20x20 inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5927
     ImageEditor openOnClass:self andSelector:#bookmarks20x20
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5928
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5929
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5930
    ^ Icon constantNamed:'GenericToolbarIconLibrary class bookmarks20x20'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5931
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5932
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5933
                width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5934
                height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5935
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5936
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5937
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5938
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5939
                            fromPackedString:'
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5940
??????????????????????????????????????<1S/???????????????????????6BAD/????????????????????<]#I8*?????????????????????3^_
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5941
''U''?????????????????????YI2[_!!C??????????????????16F&)&WLO????????<&Q$YFQ$YETI"V%YI*U$D?OS4=K4YT#9RT$9FP#(6K"(VB_718]U0%
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5942
?4X:^X&H!!8RC G57]GE/ZVU@A_????<*Y''-:]''M2\F5(X%=UK G???????<QSF9,Z6]#WU!!SQBW???????????<VU6E^V%EMRTL"?????????????2%[T$=J
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5943
Q389NB#?????????????M$-HP#,3KB\ZE07??????????145OCP-IA0UC ,JG_??????????GSH+G!!,@?1HOA LSQO???????14!!H1$G?????1@T@ $H????
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5944
????GQ< AO????????<]C@ ]??????<]G_??????????????GQ7??0@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5945
                colorMapFromArray:#[ 143 162 38 146 165 38 153 167 24 155 168 21 149 168 39 149 169 39 156 169 21 151 170 40 151 171 40 156 171 30 159 173 22 160 174 20 156 174 34 154 175 41 162 176 20 159 176 32 156 176 41 156 177 41 157 177 41 159 178 37 159 178 38 163 179 26 158 179 42 163 180 27 159 180 42 162 180 35 166 181 20 160 181 40 161 181 39 160 181 42 165 181 28 162 181 37 161 181 40 162 181 38 161 181 41 168 181 23 162 182 36 161 182 41 161 182 43 168 183 20 163 183 35 162 183 41 162 183 42 170 184 22 169 185 20 169 185 23 164 185 38 164 185 40 164 185 42 164 185 43 171 186 24 171 187 21 172 187 22 170 187 29 168 187 35 165 187 44 171 188 19 173 190 19 168 189 44 174 190 21 174 190 22 170 192 37 176 192 20 170 192 38 171 193 33 171 193 38 177 193 21 176 194 19 174 194 26 172 193 47 172 193 48 178 195 20 179 195 21 179 197 19 180 197 20 180 197 21 176 197 38 181 199 19 177 199 46 183 201 20 179 200 50 184 202 19 185 202 21 184 203 18 180 201 50 183 204 21 181 203 37 184 204 27 185 205 18 181 204 45 187 205 19 187 205 21 183 206 27 187 208 18 189 208 20 189 210 17 186 208 51 191 210 20 190 211 17 190 211 19 187 209 53 191 213 17 190 211 43 193 213 19 193 214 17 194 216 16 192 215 38 195 216 20 196 217 25 196 218 18 196 217 28 196 219 17 198 220 18 199 221 17 200 222 23 201 222 28 201 224 17 200 225 16 203 223 33 203 225 20 202 226 16 202 223 51 204 224 38 204 224 41 203 227 16 204 226 26 203 226 47 204 229 16 206 227 34 203 227 53 206 230 21 207 228 39 208 228 43 207 231 26 207 228 60 209 229 48 209 229 51 210 229 52 209 232 33 210 232 39 209 231 58 211 233 46 212 234 52 213 233 63 213 234 56 214 235 59 214 237 41 215 235 62 215 235 64 215 238 49 217 238 55 217 240 46 218 239 61 219 242 53 220 242 59 222 245 56 223 245 62 224 248 57 224 248 58 224 248 64 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5946
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5947
                            width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5948
                            height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5949
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5950
                                        fromPackedString:'@@@@@F@@@G@@@O@@@O@@@O @@_ @???0???0_?? G??@C?<@A?8@A?8@A?<@C?<@C=>@G0>@G O@F@C@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5951
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5952
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  5953
        ]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5954
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
  5955
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5956
browseIt20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5957
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5958
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5959
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5960
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5961
     the ImageEditor may not be able to read the specification."
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5962
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5963
     self browseIt20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5964
     ImageEditor openOnClass:self andSelector:#browseIt20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5965
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5966
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5967
    ^ Icon constantNamed:'GenericToolbarIconLibrary class browseIt20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5968
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5969
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5970
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5971
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5972
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5973
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5974
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5975
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5976
                            fromPackedString:'
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5977
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@M&Y&Y D@@@@@@CY&Y&@P@@@@@@ATQDPAD@@@@@@@@@@@DS@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5978
@@@@@QL1D @@@@@@@AD3DR@@@@@@@@@@@QH@@@@@@@@@@@D L3L5@@@@@@@BA7]7]@@@@@@@HDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5979
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5980
                colorMapFromArray:#[ 0 0 0 248 252 128 208 220 0 255 255 255 127 127 127 170 170 170 255 0 0 0 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5981
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5982
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5983
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5984
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5985
                                        fromPackedString:'
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5986
@@@@@@@@@@P@_?0@_? @_? @_? @_? @_?<@@?8@A?0@C?? @_? @_? @_? @_? @0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5987
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5988
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5989
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5990
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5991
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5992
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5993
        ]
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5994
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  5995
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  5996
copy20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5997
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5998
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  5999
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6000
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6001
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6002
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6003
     self copy20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6004
     ImageEditor openOnClass:self andSelector:#copy20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6005
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6006
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6007
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class copy20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6008
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6009
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6010
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6011
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6012
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6013
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6014
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6015
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6016
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6017
QDQDQDQDQDQDQDQADQDTQDQDQDQDPTQDDDQDQDQDQDECMAPDQDQDQDQAQDPP@DQDQDQDPTL3P3ADQDQDQDEDQADQDTQDQDQAP3LTQDDDQDQDPTQBECMAPDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6018
QDECL1QDPP@DQDQAP$HTL3P3ADQDPRP"EDQDI@QDQDD@@AP3L3HDQDQDQDPTQBP"ADQDQDQDECL3L QDQDQDQAP$H"HDQDQDQDPRP"H"ADQDQDQD@@@@@@QD
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6019
QDQDQDQDQDQDQDQDQDQDQDQDQDPb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6020
                colorMapFromArray:#[ 0 0 0 64 64 64 168 228 240 208 212 208 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6021
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6022
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6023
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6024
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6025
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6026
@@@@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
  6027
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6028
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6029
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6030
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6031
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6032
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6033
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6034
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6035
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6036
cut20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6037
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6038
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6039
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6040
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6041
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6042
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6043
     self cut20x20Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6044
     ImageEditor openOnClass:self andSelector:#cut20x20Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6045
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6046
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6047
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6048
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6049
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6050
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6051
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6052
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6053
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6054
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6055
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@F@@@@@@@@@@@@@@@@@@@@@G0@@]H@@%H@@%H@@$0@@$@@@X@B@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6056
                colorMapFromArray:#[ 0 0 0 0 0 248 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6057
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6058
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6059
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6060
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6061
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6062
@@@@@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
  6063
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6064
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6065
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6066
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6067
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6068
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6069
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6070
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6071
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6072
cut20x20Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6073
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6074
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6075
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6076
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6077
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6078
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6079
     self cut20x20Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6080
     ImageEditor openOnClass:self andSelector:#cut20x20Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6081
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6082
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6083
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class cut20x20Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6084
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6085
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6086
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6087
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6088
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6089
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6090
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6091
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6092
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6093
@@@@@@@@@@@@@@DQDQ@@@@@@@@@AQDPP@@@@@@@@@TL4E@@@@@@@@@EDQA@@@@@@@@@AP3MCL@@@@@@@@TQDP$@@@@@@@@ECL3L @@@@@@@AQDIBH@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6094
@TL3L2@@@@@@@@EBP"H @@@@@@@AIBH"H@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6095
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6096
                colorMapFromArray:#[ 0 0 0 64 64 64 168 228 240 208 212 208 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6097
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6098
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6099
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6100
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6101
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6102
@@@@_ @@_1A@_9A@_=A@_=A@_<"@_<"@_<6@_<T@_<\@_<H@_<_@@A4 @BT @BT @BS@@BP@@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6103
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6104
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6105
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6106
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6107
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6108
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6109
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6110
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6111
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6112
debugIt20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6113
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6114
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6115
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6116
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6117
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6118
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6119
     self debugIt20x20 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6120
     ImageEditor openOnClass:self andSelector:#debugIt20x20"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6121
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6122
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class debugIt20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6123
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6124
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6125
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6126
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6127
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6128
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6129
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6130
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6131
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6132
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@AP@@@3@@@@@@@E@@@3DS@@@@@@UP@@LSL2@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6133
@@AUD@@@L3L @@@ETQUU@3L2@@@@UQEUTCL3H @@@@@EUP@BH @@@@@@AT@@@@@@@@@@@@P@@@@@@@@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6134
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6135
                colorMapFromArray:#[ 0 0 0 255 255 255 128 0 0 248 0 0 208 220 0 248 252 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6136
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6137
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6138
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6139
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6140
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6141
@@@@@@@@@@@@@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
  6142
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6143
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6144
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6145
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6146
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6147
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6148
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6149
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6150
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6151
doIt20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6152
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6153
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6154
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6155
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6156
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6157
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6158
     self doIt20x20 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6159
     ImageEditor openOnClass:self andSelector:#doIt20x20"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6160
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6161
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class doIt20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6162
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6163
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6164
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6165
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6166
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6167
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6168
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6169
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6170
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@D@@@@@AP@@@@@W@@@@@E=X@@@A_V@@@@@E @@@@@X@@@@@B@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6171
@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6172
                colorMapFromArray:#[ 0 0 0 248 252 128 208 220 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6173
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6174
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6175
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6176
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6177
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6178
@@@@@@@@@@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
  6179
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6180
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6181
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6182
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6183
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6184
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6185
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6186
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6187
6017
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6188
doItMultiple20x20Icon
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6189
    "This resource specification was automatically generated
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6190
     by the ImageEditor of ST/X."
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6191
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6192
    "Do not manually edit this!! If it is corrupted,
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6193
     the ImageEditor may not be able to read the specification."
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6194
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6195
    "
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6196
     self doItMultiple20x20Icon inspect
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6197
     ImageEditor openOnClass:self andSelector:#doItMultiple20x20Icon
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6198
     Icon flushCachedIcons
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6199
    "
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6200
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6201
    <resource: #image>
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6202
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6203
    ^Icon
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6204
        constantNamed:'GenericToolbarIconLibrary class doItMultiple20x20Icon'
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6205
        ifAbsentPut:[(Depth2Image width:20 height:20) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@P@@@A@D@@@@TAP@@@E0@@@@A_VMX@@W5#V@@@AXE @@@F@X@@@@ B@@@@H@ @@@@@@@@@@@@@@@@@@@@@@
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6206
@@@@@@@@@@@@@@@a')
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6207
            colorMapFromArray:#[0 0 0 248 252 128 208 220 0 255 255 255]
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6208
            mask:((ImageMask width:20 height:20) bits:(ByteArray fromPackedString:'
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6209
@@@@@@@@@AB@@CF@@FL@@N\@@\8@@=8@A?? C??@G?>@O?<@@=8@@90@A3 @A#@@CF@@BD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6210
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6211
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6212
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6213
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6214
!
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
  6215
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6216
documents20x20Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6217
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6218
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6219
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6220
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6221
     the ImageEditor may not be able to read the specification."
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6222
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6223
     self documents20x20Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6224
     ImageEditor openOnClass:self andSelector:#documents20x20Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6225
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6226
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6227
    ^ Icon constantNamed:'GenericToolbarIconLibrary class documents20x20Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6228
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6229
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6230
                width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6231
                height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6232
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6233
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6234
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6235
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6236
                            fromPackedString:'
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6237
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E)FG@$J[!!:WWX]PGP@@@@@@@@@@QAA"MR]%PF!!<E39Q@@@@@@@@@@AXJ7.QO8 F
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6238
%IT1 YP0L0@@@@@@@F1''E%IBM8P OC0<OC2S@@@@@@@@ B):@"53$EVB (JBOF,@@@@@@@@H#PH=K@=Y%RL_HY%$F @@@@@@@B<)J@DDM)AUQ7:CFFQV@@@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6239
@@@@F7&LN1U^VYUJCE1-YF(@@@@@@@@[^G\@S''JPUXJB (H<PP@@@@@@@E^K@H)MC%&UW5=_W31=@@@@@@@@_1N]XQFE$EVB (JBO@T@@@@@@@@GIX$8]I!!Y
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6240
%U=_W5<<U@@@@@@@@B95II-KCYAU (JB #2O@@@@@@@@K&AL&"IHL ,RD#$9I!!$@@@@@@@BRQYY0RSQ#S0NNT6$Y[0@@@@@@@I1[P6Y6!!''D:@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6241
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6242
                colorMapFromArray:#[ 121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6243
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6244
                            width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6245
                            height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6246
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6247
                                        fromPackedString:'@@@O@@@OG?8OG?8OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG?>OG>@O@@@O@@@O');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6248
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6249
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6250
        ]
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6251
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  6252
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6253
dos20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6254
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6255
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6256
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6257
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6258
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6259
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6260
     self dos20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6261
     ImageEditor openOnClass:self andSelector:#dos20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6262
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6263
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6264
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class dos20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6265
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6266
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6267
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6268
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6269
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6270
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6271
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6272
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6273
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6274
@@@@@@@@@@@@@@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
  6275
@1H$P"H"P"H#D@LSL3L3L3L3L1@CDQDQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6276
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6277
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6278
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6279
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6280
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6281
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6282
                                        fromPackedString:'@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ @@C&L@D)P@D)H@D)D@C&X@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6283
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6284
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6285
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6286
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6287
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6288
dosWithoutText20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6289
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6290
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6291
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6292
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6293
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6294
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6295
     self dosWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6296
     ImageEditor openOnClass:self andSelector:#dosWithoutText20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6297
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6298
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6299
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6300
        constantNamed:#'GenericToolbarIconLibrary class dosWithoutText20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6301
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6302
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6303
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6304
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6305
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6306
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6307
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6308
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6309
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6310
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6311
@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@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6312
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6313
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6314
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6315
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6316
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6317
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6318
                                        fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6319
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6320
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6321
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6322
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6323
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6324
downArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6325
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6326
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6327
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6328
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6329
     the ImageEditor may not be able to read the specification."
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6330
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6331
     self downArrow20x20Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6332
     ImageEditor openOnClass:self andSelector:#downArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6333
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6334
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6335
    ^ Icon constantNamed:'GenericToolbarIconLibrary class downArrow20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6336
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6337
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6338
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6339
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6340
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6341
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6342
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6343
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6344
                            fromPackedString:'
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6345
H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H@@@@@H"H"H"H"@"H"HBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6346
H@@@@!!DQH@@@@"HBDQDQDQDQHBH"HBDQDQDQD H"H"HBDQDQDR@"H"H"HBDQDQHBH"H"H"HBDQD H"H"H"H"HBDR@"H"H"H"H"HBHBH"H"H"H"H"H@H"H"H"
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6347
H"H"H"H"H"H"H"H"H"H"H"H"H"Hb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6348
                colorMapFromArray:#[ 0 0 0 100 128 255 128 128 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6349
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6350
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6351
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6352
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6353
                                        fromPackedString:'@@@@@@@@@?0E@?0@@?0G@?0@@?0B@?0@@?0@_?? O??MG?>@C?<@A?8C@?0H@_ @@O@@@F@C@@@A@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6354
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6355
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6356
        ]
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6357
!
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6358
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6359
download20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6360
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6361
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6362
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6363
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6364
     the ImageEditor may not be able to read the specification."
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6365
    "
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6366
     self download20x20Icon inspect
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6367
     ImageEditor openOnClass:self andSelector:#download20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6368
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6369
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6370
    ^ Icon constantNamed:'GenericToolbarIconLibrary class download20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6371
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6372
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6373
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6374
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6375
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6376
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6377
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6378
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6379
                            fromPackedString:'
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6380
H"H"H"H"H"H"H"H"H @@@@@"H"H"H"HBH"H H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H @@@BDQD @@@B
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  6381
H@HQDQDQDQD @"H@HQDQDQDR@BH"H@HQDQDQH@H"H"H@HQDQD @"H"H"H@HQDR@BH"H"H"H@HQH@H"H"@"H"H@H @"H"H@H"H"H@@BH"H"@BH"H"H@H"H"H 
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6382
@"H"H"H"H"H"H@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6383
                colorMapFromArray:#[ 0 0 0 100 128 255 128 128 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6384
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6385
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6386
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6387
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6388
                                        fromPackedString:'@@@@@?0@@?0E@?0@@?0G@?0@@?0B@?0@_?? _?? O??MG?>@C?<@A?8C@?0H0_ 00O@00F@3???1???0');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6389
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6390
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6391
        ]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6392
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  6393
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6394
edit20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6395
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6396
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6397
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6398
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6399
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6400
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6401
     self edit20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6402
     ImageEditor openOnClass:self andSelector:#edit20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6403
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6404
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6405
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class edit20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6406
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6407
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6408
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6409
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6410
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6411
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6412
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6413
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6414
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6415
@ 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
  6416
@ 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
  6417
@ 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
  6418
@@@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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6419
@ HB@ HB@ HB@ H@@@@B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6420
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6421
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6422
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6423
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6424
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6425
                                        fromPackedString:'@@@@@@F@@@O@@@O @@_ @@_@@_?@@?>@A?>@C??@G?? O?? _?? _?? O??@A?>@@O<@@C8@@A0@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6426
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6427
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6428
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6429
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6430
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6431
empty1x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6432
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6433
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6434
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6435
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6436
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6437
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6438
     self empty1x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6439
     ImageEditor openOnClass:self andSelector:#empty1x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6440
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6441
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6442
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class empty1x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6443
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6444
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6445
                width:1;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6446
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6447
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6448
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6449
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6450
                bits:(ByteArray fromPackedString:'@@@@@F #L#!!LG 8H@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6451
                colorMapFromArray:#[ 255 255 255 0 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6452
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6453
                            width:1;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6454
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6455
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6456
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6457
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6458
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6459
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6460
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6461
erase20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6462
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6463
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6464
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6465
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6466
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6467
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6468
     self erase20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6469
     ImageEditor openOnClass:self andSelector:#erase20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6470
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6471
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6472
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6473
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6474
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6475
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6476
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6477
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6478
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6479
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6480
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6481
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6482
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EDQAD@@@@@@@@@P3PTD@@@@@@@@@QDDQ@@@@@@@@@@L4L@@@@@@@@A@@Q@@P@@@@@@@T@@@BD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6483
@@@@ED@@H!!@@@@@@@AP@@@HP@@@@@@@P@BH@D@@@@@@@@@H"H@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6484
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6485
                colorMapFromArray:#[ 0 0 0 64 64 64 168 228 240 208 212 208 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6486
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6487
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6488
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6489
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6490
                                        fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6491
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6492
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6493
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6494
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6495
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6496
erase20x20Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6497
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6498
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6499
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6500
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6501
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6502
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6503
     self erase20x20Icon2 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6504
     ImageEditor openOnClass:self andSelector:#erase20x20Icon2"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6505
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6506
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class erase20x20Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6507
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6508
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6509
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6510
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6511
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6512
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6513
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6514
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6515
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6516
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QDQD@@@@@@@@@EUUQD@@@@@@@@@UDTUD@@@@@@@@@UUDQ@@@@@@@@@@QEH@@@@@@@@A@@UP@P@@@@@@@U@@@CD@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6517
@@@@EU@@L1@@@@@@@AT@@@LP@@@@@@@P@CL@D@@@@@@@@@L3L@@@@@@@@@@QDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6518
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6519
                colorMapFromArray:#[ 255 0 0 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6520
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6521
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6522
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6523
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6524
                                        fromPackedString:'@@@@@@@@@?@@@? @C?2@C?<@A?8@@?8@@?8@@?8@@?8@@?8@@?8@A?8@C0D@C @@A@B@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6525
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6526
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6527
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6528
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6529
4308
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6530
eraseOverlay20x20
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6531
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6532
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6533
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6534
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6535
     the ImageEditor may not be able to read the specification."
4308
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6536
    "
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6537
     self eraseOverlay20x20 inspect
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6538
     ImageEditor openOnClass:self andSelector:#eraseOverlay20x20
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6539
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6540
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6541
    ^ Icon constantNamed:'GenericToolbarIconLibrary class eraseOverlay20x20'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6542
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6543
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6544
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6545
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6546
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6547
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6548
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6549
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6550
                            fromPackedString:'
4308
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6551
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6552
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@@@@@@@@@@@@XF@@@@@@@@@@@@Y @@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6553
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6554
                colorMapFromArray:#[ 255 0 0 64 64 64 168 172 168 168 228 240 208 212 208 255 255 255 255 128 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6555
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6556
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6557
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6558
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6559
                                        fromPackedString:'@@@@@@@@@@@@@@@@C B@C0L@A8X@@\0@@O @@G@@@O @@\0@@8X@A0L@C0N@C F@A@B@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6560
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6561
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6562
        ]
4308
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6563
!
Claus Gittinger <cg@exept.de>
parents: 4306
diff changeset
  6564
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6565
executeMethod20x20Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6566
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6567
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6568
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6569
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6570
     the ImageEditor may not be able to read the specification."
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6571
    "
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6572
     self executeMethod20x20Icon inspect
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6573
     ImageEditor openOnClass:self andSelector:#executeMethod20x20Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6574
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6575
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  6576
    ^ Icon constantNamed:'GenericToolbarIconLibrary executeMethod20x20Icon'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6577
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6578
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6579
                width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6580
                height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6581
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6582
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6583
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6584
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6585
                            fromPackedString:'
4531
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6586
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@EUUUU@0UUUR@@ATQDPCLDQDQ@@@UDQ@L5@@@DP@
6560654209a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
  6587
@EQD@3USLPQD@@ATPCMUL1ADQ@@@U@@@@3DDQDP@@EQDQ@LPQDQD@@@&Y&XAA&Y&Y @@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6588
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6589
                colorMapFromArray:#[ 0 0 0 208 220 0 170 170 170 248 252 128 0 255 127 255 255 255 127 127 127 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6590
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6591
                            width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6592
                            height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6593
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6594
                                        fromPackedString:'
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6595
@@@@@@@@@@P@@@0@@A @_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @X@@@0@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6596
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6597
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6598
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6599
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6600
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6601
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  6602
        ]
3815
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6603
!
737c6a4b3ca3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3806
diff changeset
  6604
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6605
fileIn20x20Icon
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6606
    "This resource specification was automatically generated
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6607
     by the ImageEditor of ST/X."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6608
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6609
    "Do not manually edit this!! If it is corrupted,
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6610
     the ImageEditor may not be able to read the specification."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6611
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6612
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6613
     self fileIn20x20Icon inspect
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6614
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6615
     Icon flushCachedIcons
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6616
    "
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6617
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6618
    <resource: #image>
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6619
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6620
    ^Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6621
        constantNamed:'GenericToolbarIconLibrary fileIn20x20Icon'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6622
        ifAbsentPut:[(Depth4Image new) width:20; height:21; bits:(ByteArray fromPackedString:'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6623
@@@@@@@@@@@@@@@@@@@@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&YJ
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6624
@@@@L3L3M&Y&X@@@@CL3L2YDQF@@@@@@@3X"H"I @@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6625
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194]; mask:((ImageMask new) width:20; height:21; 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]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6626
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6627
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6628
fileIn20x20Icon2
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6629
    "This resource specification was automatically generated
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6630
     by the ImageEditor of ST/X."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6631
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6632
    "Do not manually edit this!! If it is corrupted,
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6633
     the ImageEditor may not be able to read the specification."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6634
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6635
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6636
     self fileIn20x20Icon2 inspect
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6637
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon2
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6638
     Icon flushCachedIcons
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6639
    "
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6640
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6641
    <resource: #image>
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6642
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6643
    ^Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6644
        constantNamed:'GenericToolbarIconLibrary fileIn20x20Icon2'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6645
        ifAbsentPut:[(Depth4Image new) width:20; height:21; bits:(ByteArray fromPackedString:'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6646
@@@@@@@@@@@@@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&YJ
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6647
^:"(L3L3M&Y&XG.[&SL3L2YDQFA9.Y&Y@3X"H"I \@@@@@M&Y&Y&X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6648
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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:((ImageMask new) width:20; height:21; 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]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6649
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6650
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6651
fileIn20x20Icon3
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6652
    "This resource specification was automatically generated
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6653
     by the ImageEditor of ST/X."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6654
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6655
    "Do not manually edit this!! If it is corrupted,
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6656
     the ImageEditor may not be able to read the specification."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6657
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6658
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6659
     self fileIn20x20Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6660
     ImageEditor openOnClass:self andSelector:#fileIn20x20Icon3
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6661
     Icon flushCachedIcons
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6662
    "
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6663
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6664
    <resource: #image>
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6665
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6666
    ^Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6667
        constantNamed:'GenericToolbarIconLibrary fileIn20x20Icon3'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6668
        ifAbsentPut:[(Depth4Image new) width:20; height:21; bits:(ByteArray fromPackedString:'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6669
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L0@@A&Y&Y&@8"HL@@@Y7]6Y NFZC @@FH"I&XC"H 0@@A&I&Y&@8Y&!!&@@Y"Y&YJ
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6670
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@@@@@@@@@@@@@@@@@@@@@@@@@@@
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
  6671
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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:((ImageMask new) width:20; height:21; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C?0?C?0?#?0?3?0?;?0?;?0?;?0?;?0???0???0???0?;?0?;?0@C?0@@@@@@@@@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6672
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6673
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6674
fileNew20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6675
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6676
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6677
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6678
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6679
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6680
    "
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  6681
     self fileNew20x20Icon inspect
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  6682
     ImageEditor openOnClass:self andSelector:#fileNew20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6683
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6684
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6685
    ^ Icon constantNamed:'GenericToolbarIconLibrary class fileNew20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6686
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6687
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6688
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6689
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6690
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6691
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6692
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6693
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6694
                            fromPackedString:'
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  6695
Y&Y&Y&Y&Y&Y&Y&Y&Y&Y%Y&U&YVY&Y&Y&Y%Y%Y%Y&Y&Y!!DQDUYVU&Y&Y&XTQDDEUVY&Y&Y&EDQUUUUUU&Y&Y!!QDPTUUY&Y&Y&XTQDEPTEY&Y&Y&EDQEH%A%Y&
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  6696
Y&Y!!QDUDMPY%Y&Y&XTQDP4LFY&Y&Y&EDQCP3A&Y&Y&Y!!QDMCL0Y&Y&Y&XTP4L3LFY&Y&Y&ECP3L3A&Y&Y&Y!!MCL3L0Y&Y&Y&XP@@@@@FY&Y&Y&Y&Y&Y&Y&Y&
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6697
Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Xb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6698
                colorMapFromArray:#[ 0 0 0 64 64 64 168 172 168 168 228 240 248 252 248 255 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6699
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6700
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6701
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6702
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6703
                                        fromPackedString:'
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
  6704
@@@@@DQ@@BR@A?T@A?8@A??@A?8@A?<@A?:@A?9@A?8@A?8@A?8@A?8@A?8@A?8@A?8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6705
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6706
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6707
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6708
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6709
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6710
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6711
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6712
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6713
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6714
fileOpen20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6715
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6716
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6717
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6718
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6719
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6720
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6721
     self fileOpen20x20 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6722
     ImageEditor openOnClass:self andSelector:#fileOpen20x20"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6723
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6724
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class fileOpen20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6725
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6726
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6727
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6728
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6729
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6730
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6731
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6732
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6733
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6734
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL0@@@@@@@@@@L@@0L@@@@@@@@@@@@3@@@BH"@@@@@CL0@@HQDRH"H @@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6735
@BEUTQDQD @@@@@!!UUUUUUH@@@@@HUT"H"H"H"H@@BERQDQDQDP @@@!!IDQDQDQB@@@@H$QDQDQDH@@@@BH"H"H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6736
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6737
                colorMapFromArray:#[ 255 255 255 248 252 248 0 0 0 0 0 128 128 128 0 248 252 184 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6738
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6739
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6740
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6741
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6742
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6743
@@@@@@@@@@@@@@@@@@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
  6744
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6745
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6746
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6747
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6748
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6749
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6750
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6751
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6752
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6753
fileSave20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6754
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6755
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6756
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6757
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6758
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6759
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6760
     self fileSave20x20 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6761
     ImageEditor openOnClass:self andSelector:#fileSave20x20"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6762
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6763
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class fileSave20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6764
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6765
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6766
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6767
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6768
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6769
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6770
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6771
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6772
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6773
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6774
@@M4Y&Y&Y$P @@@C]!!DQDQU$H@@@@7XQDQEQYB@@@@M6DQDUEVP @@@C]!!DQTUU$H@@@@7XQEQUUX"@@@@M6DUEUUVD @@@BH"H"H"H"H@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6775
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6776
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6777
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6778
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6779
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6780
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6781
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6782
@@@@@@@@@@@@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
  6783
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6784
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6785
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6786
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6787
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6788
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6789
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6790
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6791
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6792
fitImageSizeToView20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6793
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6794
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6795
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6796
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6797
     the ImageEditor may not be able to read the specification."
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6798
    "
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6799
     self fitImageSizeToView20x20Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6800
     ImageEditor openOnClass:self andSelector:#fitImageSizeToView20x20Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6801
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6802
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6803
        constantNamed:#'GenericToolbarIconLibrary class fitImageSizeToView20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6804
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6805
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6806
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6807
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6808
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6809
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6810
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6811
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6812
                            fromPackedString:'
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6813
@@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
  6814
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
  6815
@@@QDQDQDQDA@@@ADQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6816
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6817
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6818
                colorMapFromArray:#[ 0 0 0 255 255 255 0 0 0 0 137 0 174 218 230 0 206 0 133 60 36 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6819
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6820
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6821
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6822
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6823
                                        fromPackedString:'
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6824
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
  6825
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6826
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6827
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6828
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6829
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6830
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6831
        ]
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6832
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
  6833
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6834
history20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6835
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6836
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6837
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6838
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6839
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6840
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6841
     self history20x20Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6842
     ImageEditor openOnClass:self andSelector:#history20x20Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6843
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6844
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class history20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6845
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6846
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6847
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6848
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6849
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6850
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6851
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6852
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6853
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6854
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J** @@@@IVU @@@@J**"@@@@IVU"@@@@J**"H@@@IVU"H@@@J**"H @@IVU"H @@J**"H @@@@@BH @@@***H @
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6855
@@@@@H @@@B**( @@@@@@@ @@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6856
                colorMapFromArray:#[ 0 0 0 0 0 129 194 194 194 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6857
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6858
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6859
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6860
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6861
                                        fromPackedString:'@@@@@@@@@@@@G?0@G?0@G?<@G?<@G??@G??@G??0G??0G??0G??0G??0A??0A??0@_?0@_?0@G?0@G?0@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6862
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6863
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6864
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6865
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6866
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6867
inspectIt20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6868
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6869
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6870
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6871
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6872
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6873
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6874
     self inspectIt20x20 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6875
     ImageEditor openOnClass:self andSelector:#inspectIt20x20"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6876
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6877
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6878
        constantNamed:#'GenericToolbarIconLibrary class inspectIt20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6879
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6880
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6881
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6882
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6883
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6884
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6885
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6886
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6887
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6888
"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
  6889
"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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6890
"@"H"H"H"H"H"H"H"H"H"H"H"H b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6891
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6892
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6893
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6894
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6895
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6896
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6897
@@@@@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
  6898
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6899
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6900
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6901
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6902
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6903
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6904
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6905
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6906
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6907
inspectLocals20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6908
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6909
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6910
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6911
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6912
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6913
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6914
     self inspectLocals20x20 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6915
     ImageEditor openOnClass:self andSelector:#inspectLocals20x20"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6916
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6917
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6918
        constantNamed:#'GenericToolbarIconLibrary class inspectLocals20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6919
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6920
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6921
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6922
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6923
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6924
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6925
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6926
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6927
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6928
@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  6929
@&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@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6930
@@@@@@@@@BT0@@@@@@@@@@@BH@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6931
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6932
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6933
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6934
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6935
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6936
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6937
@@@@@@@@O??@O??@O??@O??@O??@O??@_??@_??@_??@_??@O??@O?@@G? @A90@@@8@@@\@@@N@@@F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6938
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6939
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6940
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6941
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6942
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6943
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6944
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6945
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  6946
5258
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6947
left2Arrow20x20Icon
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6948
    "This resource specification was automatically generated
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6949
     by the ImageEditor of ST/X."
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6950
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6951
    "Do not manually edit this!! If it is corrupted,
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6952
     the ImageEditor may not be able to read the specification."
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6953
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6954
    "
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6955
     self left2Arrow20x20Icon inspect
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6956
     ImageEditor openOnClass:self andSelector:#left2Arrow20x20Icon
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6957
     Icon flushCachedIcons
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6958
    "
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6959
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6960
    <resource: #image>
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6961
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6962
    ^Icon
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6963
        constantNamed:'GenericToolbarIconLibrary left2Arrow20x20Icon'
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6964
        ifAbsentPut:[(Depth4Image new) width:20; height:20; bits:(ByteArray fromPackedString:'
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6965
H"H"H"H"H"H"H"H"H"HB@"H"H"H"H"H @@H"H"H"H"H"@ HBH"H"H"H"HB@!!@"H"H"H"H HBDPH"H"H"H"@ HQD@@@@@H"HB@!!DQH"H"HBH HBDQDQDQDR@"
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6966
@ HQDQDQDQD H HBDQDQDQDQHBH HBDQDQDQDR@"H HBDQD"H"H H"H HBDQ@@@@@BH"H HBDPH"H"H"H"H HBDBH"H"H"H"H HB@"H"H"H"H"H @@H"H"H"
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6967
H"H"H HBH"H"H"H"H"H"H"H"H"Hb') ; colorMapFromArray:#[0 0 0 100 128 255 128 128 128]; mask:((ImageMask new) width:20; height:20; bits:(ByteArray fromPackedString:'@@@M@J@@@^@J@>@@A>@JC>@@G??@O??@_??O???@???@_??@O??@G??EC>@HA>@@@>@@@^@N@J@A@@@@') ; yourself); yourself]
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6968
!
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
  6969
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6970
leftArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6971
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6972
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6973
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6974
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6975
     the ImageEditor may not be able to read the specification."
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6976
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6977
     self leftArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6978
     ImageEditor openOnClass:self andSelector:#leftArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6979
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6980
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6981
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6982
        constantNamed:#'GenericToolbarIconLibrary class leftArrow20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6983
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6984
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6985
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6986
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6987
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6988
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6989
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6990
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6991
                            fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  6992
@ 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
  6993
@@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
  6994
@ 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
  6995
@@@@@@@@@@@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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6996
@ HB@ HB@ HB@ @B@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6997
                colorMapFromArray:#[ 0 0 0 100 128 255 128 128 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6998
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  6999
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7000
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7001
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7002
                                        fromPackedString:'@@@M@B@@@F@J@N@@@^@J@>@@A??@C??@G??OO??@O??@G??@C??@A??E@>@H@^@@@N@@@F@N@B@A@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7003
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7004
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7005
        ]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7006
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7007
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7008
newDirectory20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7009
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7010
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7011
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7012
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7013
     the ImageEditor may not be able to read the specification."
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7014
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7015
     self newDirectory20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7016
     ImageEditor openOnClass:self andSelector:#newDirectory20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7017
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7018
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7019
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7020
        constantNamed:#'GenericToolbarIconLibrary class newDirectory20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7021
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7022
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7023
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7024
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7025
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7026
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7027
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7028
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7029
                            fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7030
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PDA@PDA@P@@@@@@@@@@@@@@@@@A@ HB@ HA@@@@@@@@@@@@@@@@@PHB@ HB@ HA
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7031
@@@@@@@@@@@@@@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
  7032
@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
  7033
@ 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@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7034
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7035
                colorMapFromArray:#[ 255 0 0 0 0 0 255 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7036
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7037
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7038
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7039
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7040
                                        fromPackedString:'@@@@@DQ@O:R@O9T@_<8@??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? @@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7041
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7042
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7043
        ]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7044
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7045
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7046
paste20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7047
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7048
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7049
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7050
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7051
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7052
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7053
     self paste20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7054
     ImageEditor openOnClass:self andSelector:#paste20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7055
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7056
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7057
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class paste20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7058
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7059
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7060
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7061
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7062
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7063
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7064
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7065
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7066
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7067
@@@@@@@@@@@@@@@@@@@3L@@@@@@@@@L3&YH3@@@@@@@5T9&RUR@@@@@CUG&UURP2@@@@@5Q2H"H$L @@@@MTQDQDQCH@@@@CUDQCL3L2@@@@@5QDP1DQL @@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7068
@@MTQDLX SD @@@CUDQCDQD2H @@@5QDP1"HFHH@@@MTQDLQDQXR@@@CUDQCFH"HX @@@5QDP1DVE&H@@@MTQDLX"H!!"@@@@H"H#E!!Y&X @@@@@@@6E&Y&H@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7069
@@@@@@L"H"H"@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7070
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7071
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7072
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7073
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7074
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7075
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7076
@@@@@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
  7077
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7078
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7079
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7080
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7081
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7082
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7083
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7084
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7085
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7086
printIt20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7087
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7088
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7089
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7090
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7091
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7092
    "
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  7093
     self printIt20x20Icon inspect
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  7094
     ImageEditor openOnClass:self andSelector:#printIt20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7095
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7096
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7097
    ^ Icon constantNamed:'GenericToolbarIconLibrary class printIt20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7098
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7099
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7100
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7101
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7102
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7103
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7104
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7105
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7106
                            fromPackedString:'
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  7107
@@@@@@@@@@@@@@@@@@L3L3L3L0@@@@@CDQDQDQL@@@@@@1DQLQDS@@@@@@LQD3DQD @@@@@CDSLQDQH@@@@@@1ND&Y&R@@@@@@L8NY&Y$ @@@@@B"C&Y&YH@
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  7108
@@@@JHD3L9&R@@@@@( Q"GLQD @@@B"AFH\1DQH@@@H"H(!!3DQDR@@@@@@JGLQDQD @@@@@B\"H"H"H@@@@@I2@@@@@@@@@@@BH@@@@@@@@@@@H @@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7109
@@@B@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7110
                colorMapFromArray:#[ 255 255 255 248 252 248 0 0 0 64 64 64 128 132 128 168 172 168 168 228 240 208 220 0 248 252 128 32 220 32 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7111
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7112
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7113
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7114
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7115
                                        fromPackedString:'
3691
3cb6dcdb4ebd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3690
diff changeset
  7116
@@@@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@_?@@??@A??@C??@G??@@_?@@_?@@8@@@0@@A @@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7117
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7118
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7119
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7120
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7121
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7122
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7123
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7124
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7125
4928
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
  7126
profileIt20x20Icon
6005
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7127
    "This resource specification was automatically generated
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7128
     by the ImageEditor of ST/X."
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7129
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7130
    "Do not manually edit this!! If it is corrupted,
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7131
     the ImageEditor may not be able to read the specification."
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7132
4928
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
  7133
    "
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
  7134
     self profileIt20x20Icon inspect
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
  7135
     ImageEditor openOnClass:self andSelector:#profileIt20x20Icon
6005
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7136
     Icon flushCachedIcons
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7137
    "
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7138
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7139
    <resource: #image>
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7140
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7141
    ^Icon
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7142
        constantNamed:'GenericToolbarIconLibrary class profileIt20x20Icon'
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7143
        ifAbsentPut:[(Depth2Image width:20 height:20) bitsPerSample:(#[2]); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@P@@@@@E@@@@@A\@@@@@S4@@@@D<@@@@AO0@A@@S??G5@D??13=@@C<_O=@@OG<?0@G1?0C@@MS??<@@TW??4@A@W?=@@@@W?P
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7144
@@@@PD@@@@@@@@@a')
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7145
            mask:((ImageMask width:20 height:20) bits:(ByteArray fromPackedString:'
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7146
@@@@@@@@@@@@@F@@@N@@@^@@@>@@A<@@C?>@G??@O?? O??0@??0A??0A??0A7?0A#? @A?@@@>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7147
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7148
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7149
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fd004f696211 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6003
diff changeset
  7150
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]
4928
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
  7151
!
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
  7152
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7153
redo20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7154
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7155
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7156
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7157
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7158
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7159
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7160
     self redo20x20Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7161
     ImageEditor openOnClass:self andSelector:#redo20x20Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7162
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7163
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class redo20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7164
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7165
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7166
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7167
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7168
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7169
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7170
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7171
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7172
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@<@@ACD@B@,@B@\@B@<@AA<@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7173
                colorMapFromArray:#[ 0 0 0 0 0 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7174
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7175
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7176
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7177
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7178
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@<@@ACD@B@,@B@\@B@<@AA<@A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7179
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7180
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7181
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7182
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7183
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7184
rightArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7185
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7186
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7187
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7188
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7189
     the ImageEditor may not be able to read the specification."
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7190
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7191
     self rightArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7192
     ImageEditor openOnClass:self andSelector:#rightArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7193
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7194
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7195
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7196
        constantNamed:#'GenericToolbarIconLibrary class rightArrow20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7197
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7198
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7199
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7200
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7201
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7202
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7203
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7204
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7205
                            fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7206
@ 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
  7207
@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
  7208
@ 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
  7209
@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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7210
@ HB@ HB@ HB@@HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ @a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7211
                colorMapFromArray:#[ 0 0 0 100 128 255 128 128 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7212
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7213
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7214
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7215
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7216
                                        fromPackedString:'@@@@@D@@@F@H@G@@@G @@G0@O?8AO?<@O?>@O??@O??DO?>DO?<@O?8@@G0@@G @@G@@@F@@@D@J@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7217
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7218
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7219
        ]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7220
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7221
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7222
search20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7223
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7224
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7225
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7226
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7227
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7228
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7229
     self search20x20Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7230
     ImageEditor openOnClass:self andSelector:#search20x20Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7231
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7232
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class search20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7233
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7234
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7235
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7236
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7237
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7238
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7239
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7240
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7241
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@B@@@@@@@@@@@@@@@@@H@H@@@@@@@@@@DAA@@@@PHD@@@B@@ @@@@@@@@@A@@@P@@H@@B@@@@@@@@@@@@@@@@@@@@@@
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7242
@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7243
                colorMapFromArray:#[ 0 0 0 212 208 200 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7244
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7245
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7246
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7247
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7248
                                        fromPackedString:'@@@@@@@@@@@@A10@A10@A10@C;8@C;8@G?<@O?>@O?>@O?>@O;>@O >@O >@O >@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7249
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7250
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7251
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7252
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7253
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7254
shell20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7255
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7256
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7257
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7258
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7259
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7260
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7261
     self shell20x20Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7262
     ImageEditor openOnClass:self andSelector:#shell20x20Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7263
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7264
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class shell20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7265
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7266
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7267
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7268
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7269
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7270
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7271
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7272
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7273
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7274
@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
  7275
@1IDH$QBQDH#D@LRH"H"H"H"H1@CD3L3L3L3L3LP@1DQDQDQDQDQD@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7276
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7277
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7278
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7279
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7280
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7281
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7282
                                        fromPackedString:'_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? @@@@@ B F82 H%J D%: B%B L$2 ');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7283
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7284
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7285
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7286
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7287
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7288
shell20x20WithoutTextIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7289
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7290
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7291
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7292
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7293
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7294
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7295
     self shell20x20WithoutTextIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7296
     ImageEditor openOnClass:self andSelector:#shell20x20WithoutTextIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7297
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7298
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7299
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7300
        constantNamed:#'GenericToolbarIconLibrary class shell20x20WithoutTextIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7301
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7302
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7303
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7304
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7305
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7306
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7307
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7308
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7309
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7310
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  7311
@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@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7312
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7313
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7314
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7315
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7316
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7317
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7318
                                        fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7319
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7320
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7321
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7322
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7323
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7324
shellWithoutText20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7325
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7326
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7327
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7328
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7329
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7330
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7331
     self shellWithoutText20x20Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7332
     ImageEditor openOnClass:self andSelector:#shellWithoutText20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7333
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7334
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7335
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7336
        constantNamed:#'GenericToolbarIconLibrary class shellWithoutText20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7337
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7338
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7339
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7340
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7341
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7342
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7343
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7344
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7345
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7346
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  7347
@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@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7348
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7349
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7350
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7351
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7352
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7353
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7354
                                        fromPackedString:'@@@@@@@@@@@@_?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? _?? O?? @@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7355
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7356
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7357
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7358
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7359
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  7360
tableViewWidget20x20
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7361
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7362
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7363
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7364
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7365
     the ImageEditor may not be able to read the specification."
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  7366
    "
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  7367
     self tableViewWidget20x20 inspect
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  7368
     ImageEditor openOnClass:self andSelector:#tableViewWidget20x20
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7369
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7370
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  7371
    ^ Icon constantNamed:'GenericToolbarIconLibrary tableViewWidget20x20'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7372
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7373
            (Depth2Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7374
                width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7375
                height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7376
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7377
                bitsPerSample:(#[ 2 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7378
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7379
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7380
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C?O<?0@N,:3+@@?3?O<@@@@@@@@O<?3?@@:3+N,@C?O<?0@@@@@@@@?3?O<@C+N,:0@O<?3?@@@@@@@@@@@@@@
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7381
@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7382
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7383
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7384
                            width:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7385
                            height:20;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7386
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7387
                                        fromPackedString:'@@@O@@@OA#FO@@@OG??/G??/7??/G??/G??/G??/7??/G??/G??/G??/7??/G??/G??/@@@O@@@O@@@O');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7388
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7389
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  7390
        ]
3950
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  7391
!
80ea9faf4416 added: #tableViewWidget20x20
Claus Gittinger <cg@exept.de>
parents: 3949
diff changeset
  7392
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7393
undo20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7394
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7395
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7396
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7397
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7398
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7399
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7400
     self undo20x20Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7401
     ImageEditor openOnClass:self andSelector:#undo20x20Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7402
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7403
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class undo20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7404
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7405
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7406
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7407
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7408
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7409
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7410
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7411
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7412
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7413
                colorMapFromArray:#[ 0 0 0 0 0 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7414
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7415
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7416
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7417
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7418
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@C0@BLH@CPD@C D@C0D@C8H@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7419
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7420
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7421
        ]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7422
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7423
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7424
upArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7425
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7426
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7427
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7428
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7429
     the ImageEditor may not be able to read the specification."
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7430
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7431
     self upArrow20x20Icon inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  7432
     ImageEditor openOnClass:self andSelector:#upArrow20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7433
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7434
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7435
    ^ Icon constantNamed:'GenericToolbarIconLibrary class upArrow20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7436
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7437
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7438
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7439
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7440
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7441
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7442
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7443
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7444
                            fromPackedString:'
4168
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  7445
H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H"H@H"H"H"H"H"H H H"H"H"H"H"@!!D H"H"H"H"HBDQD H"H"H"H HQDQD H"H"H"@!!DQDQD H"H"HBDQDQDQD H"
8b4e6dc8c2c5 added: #download20x20Icon
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  7446
H HQDQDQDQD H"@@@@HQDR@@@@H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H HQDR@"H"H"H"HBDQD H"H"H"H"@!!DQHBH"H"H"H H"H"@"H"H"H"H@@@@@H"H"
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7447
H"H"H"H"H"H"H"H"H"H"H"H"H"Hb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7448
                colorMapFromArray:#[ 0 0 0 100 128 255 128 128 128 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7449
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7450
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7451
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7452
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7453
                                        fromPackedString:'@@@J@@@@@F@@@O@@@_ O@?0@A?8@C?<@G?>@O??E_??(@?0@@?0@@?0N@?0A@?0@@?0@@?0K@@@A@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7454
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7455
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7456
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7457
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7458
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7459
!GenericToolbarIconLibrary class methodsFor:'image specs-22x22'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7460
5344
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7461
addTab22x22Icon
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7462
    "This resource specification was automatically generated
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7463
     by the ImageEditor of ST/X."
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7464
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7465
    "Do not manually edit this!! If it is corrupted,
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7466
     the ImageEditor may not be able to read the specification."
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7467
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7468
    "
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7469
     self addTab22x22Icon inspect
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7470
     ImageEditor openOnClass:self andSelector:#addTab22x22Icon
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7471
     Icon flushCachedIcons
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7472
    "
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7473
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7474
    <resource: #image>
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7475
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7476
    ^Icon
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7477
        constantNamed:'GenericToolbarIconLibrary addTab22x22Icon'
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7478
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7479
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7480
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ HB@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ @@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7481
@@@@@@@@@ HB@@@@@@@@@@@@@@@@@@@@@ HB@ HB@ HB@ H@@@@@@@@@@@@@@@HB@ HB@ HB@ HB@@@@@@@@@@@@@@@B@ HB@ HB@ HB@ @@@@@@@@@@@@@@
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7482
@@@@@@HB@ @@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@A@@@@@@@@@@@@@ HB@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ @@@@@@@@@@@@@@@@@@@@@@
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7483
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7484
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 0 0 0 127 127 127]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@C @@C @@C @@C @@?>@@?>B@?>@@C @@C @@C @@C @@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7485
!
98e14a580110 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5329
diff changeset
  7486
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7487
backward22x22_3DIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7488
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7489
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7490
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7491
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7492
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7493
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7494
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7495
     self backward22x22_3DIcon inspect
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7496
     ImageEditor openOnClass:self andSelector:#backward22x22_3DIcon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7497
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7498
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7499
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7500
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7501
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7502
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7503
        constantNamed:'GenericToolbarIconLibrary backward22x22_3DIcon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7504
        ifAbsentPut:[(Depth2Image width:22 height:22) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7505
@@@@@@@@@@@@@@@@@@B* @@@@@BUP@@@@@BUP@@@@@BUP@@@@@BUP@@@@@BUP@@@@@IUT@@@@@IUT@@@@@IUT@@@@@%UU@@@@@%UU@@@@@%UU@@@@J%UU@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  7506
@IUUUT@@@B%UU@@@@@JUP@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@@@@') colorMapFromArray:#[0 0 0 0 127 0 255 255 255] mask:((ImageMask width:22 height:22) bits:(ByteArray fromPackedString:'@@@@@@@@@O @@O0@@O0@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@@?<@C??@C??@A?>@@_8@@G @@@@@@@@@@@@@'); yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7507
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7508
5141
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7509
clearConsole22x22Icon
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7510
    "This resource specification was automatically generated
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7511
     by the ImageEditor of ST/X."
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7512
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7513
    "Do not manually edit this!! If it is corrupted,
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7514
     the ImageEditor may not be able to read the specification."
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7515
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7516
    "
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7517
     self clearConsole22x22Icon inspect
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7518
     ImageEditor openOnClass:self andSelector:#clearConsole22x22Icon
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7519
     Icon flushCachedIcons
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7520
    "
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7521
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7522
    <resource: #image>
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7523
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7524
    ^Icon
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7525
        constantNamed:'GenericToolbarIconLibrary clearConsole22x22Icon'
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7526
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7527
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7528
@@@@@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@DB@ HB@ HC@P@@@@@@@@@@@@@@@@@D@ HB@ HBAPLD@@@@@@@@@@@@@@@@A \HBP(KC@4EC <@@@@@@@@@@@@@
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7529
@A@QDQDQDQDQDQDP@@@@@@@@@@@@@@@RD1PUE  IB ,WF@@@@@@@@@@@@@@@FQ(ZF1(ZF!!(ZF!!0@@@@@@@@@@@@@@A4^EATVB@$UG0H @@@@@@@@@@@@@@@!!
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7530
H"H"H"H"DRL$IP@#I"L@@@@@@@@@I2 TEQXHBR$*J2T@IR0*@@@@@@@@@B4.K"8.K"8LH2<+J#@/H0@@@@@@@@@1K!!XHBP(KF#H3IBL$M@@@@@@@@@@@MSX6
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7531
M#X6M!!(#@C\8M3$#@@@@@@@@@C(:N#(:N#,<NC4#@BL7N@@@@@@@@@@@@@@@@@@@@BL>IP@?NC<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7532
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[84 82 80 200 182 110 248 250 250 212 178 110 196 180 120 220 190 120 192 178 120 244 248 250 156 172 200 148 166 200 140 160 190 136 154 190 248 248 250 224 200 140 212 178 100 196 178 120 188 176 120 244 246 250 184 172 120 240 246 250 172 188 210 168 184 210 164 180 210 240 244 250 184 174 120 180 170 130 236 242 250 240 242 250 200 192 160 176 166 130 236 240 250 216 224 230 236 234 230 172 164 130 232 238 250 116 114 110 100 100 100 116 116 120 92 94 90 168 162 140 228 236 250 192 202 220 96 94 90 136 136 140 136 134 130 164 158 140 224 234 250 88 90 90 128 126 130 156 156 140 224 224 230 84 86 90 84 84 80 156 154 140 220 232 250 112 110 110 80 80 80 80 82 80 152 152 150 180 178 170 224 224 220 112 112 110 80 78 80 112 114 110]; mask:((Depth1Image new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@A? @A?0@A?8@A?<@A?<@A?<@A?<@A?<@A?=0A?=0A??0A?? A??0A?=0@@]0@@@@@@@@@@@@') ; yourself); yourself]
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7533
!
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  7534
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7535
close22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7536
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7537
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7538
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7539
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7540
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7541
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7542
     self close22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7543
     ImageEditor openOnClass:self andSelector:#close22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7544
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7545
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7546
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class close22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7547
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7548
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7549
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7550
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7551
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7552
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7553
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7554
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7555
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7556
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7557
@@@@@ H@@@@@@@@@@@@B@ @@@@@@@@@@@@HB@ @@@@@@@@@B@ H@@@@@@@@@@@@@@ HB@@@@@@@B@ H@@@@@@@@@@@@@@@@B@ H@@@@B@ H@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7558
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7559
@@@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
  7560
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7561
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7562
                colorMapFromArray:#[ 255 255 255 0 0 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7563
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7564
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7565
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7566
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7567
                                        fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7568
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7569
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7570
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7571
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7572
5138
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7573
console22x22Icon
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7574
    "This resource specification was automatically generated
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7575
     by the ImageEditor of ST/X."
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7576
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7577
    "Do not manually edit this!! If it is corrupted,
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7578
     the ImageEditor may not be able to read the specification."
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7579
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7580
    "
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7581
     self console22x22Icon inspect
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7582
     ImageEditor openOnClass:self andSelector:#console22x22Icon
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7583
     Icon flushCachedIcons
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7584
    "
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7585
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7586
    <resource: #image>
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7587
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7588
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  7589
        constantNamed:'GenericToolbarIconLibrary console22x22Icon'
5138
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7590
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7591
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7592
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DB@ HB@ HB@ HB@ D@@@@@@@@@@@@CA@PDA@PDA@PDA@PC@@@@@@@@@@@@@0TFA XFA XFA XE@0@@@@@@@@@@
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7593
@@LGA  HB@ HB@ HA0L@@@@@@@@@@@@IB XKC@4NC1@PD@(I@@@@@@@@@@@@DP(FDA@RDA@PDAHJDP@@@@@@@@@@@ALTA ,KEQXWF@<REAL@@@@@@@@@@@@S
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7594
FPXZF!!(ZF!!(ZF!!,S@@@@@@@@@@@@GA4FF!!(ZF!!(ZF!!(]G@@@@@@@@@@@@A8_G1<_G1<_G1<_G18@@@@@@@@@@@@ @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7595
@B@@@@@ @@@@@@@@@@@@@@@@@@@ HRD!!HRD!!HRD!!H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7596
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[47 88 144 95 128 176 47 112 200 47 104 184 80 96 128 95 104 128 208 232 248 95 104 136 255 248 248 47 104 176 96 112 136 111 128 176 95 112 168 80 96 144 64 88 136 63 72 128 240 240 248 47 96 176 239 240 248 47 96 168 111 120 144 96 120 168 95 104 160 79 96 144 64 80 136 112 128 144 224 232 248 112 120 144 47 96 160 112 128 160 47 88 160 127 136 160 79 112 168 47 88 136]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@C@@@C@@@C@@@C@@@CA??CA??CA??CA??CA??CA??CA??CA??CA??CA??CA??C@G0C@?>C@@@C@@@C@@@C@@@C') ; yourself); yourself]
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7597
!
fe5f7e8c6c50 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  7598
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7599
copy22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7600
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7601
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7602
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7603
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7604
     the ImageEditor may not be able to read the specification."
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7605
    "
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7606
     self copy22x22Icon inspect
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7607
     ImageEditor openOnClass:self andSelector:#copy22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7608
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7609
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7610
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class copy22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7611
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7612
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7613
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7614
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7615
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7616
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7617
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7618
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7619
                            fromPackedString:'
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
  7620
@@@@@@@@@@AUUUW@@@A???>@@@A???>O@@A???>@@@A???>@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8?>@G???8?>IG???8?>@G???8**M
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7621
G???8@@@G???8@@KG???8@@@G???8@@@G???8@@HN***(@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7622
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7623
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7624
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7625
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7626
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7627
                                        fromPackedString:'@_?<@_?<@_?<@_?<@_?<@_?<???<???<???<???<???<???<???<???<???<???<??8@??8@??8@??8@??8@??8@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7628
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7629
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7630
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7631
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7632
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7633
copyMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7634
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7635
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7636
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7637
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7638
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7639
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7640
     self copyMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7641
     ImageEditor openOnClass:self andSelector:#copyMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7642
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7643
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7644
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7645
        constantNamed:#'GenericToolbarIconLibrary class copyMenuItem22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7646
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7647
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7648
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7649
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7650
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7651
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7652
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7653
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7654
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7655
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O@@@@@@@@@@AUUUW@@@@@@?>@EUUU\?>@G???8?>@G???8?>@G???8?>@G???8**@G???8@@IN***(@@@@@@@@@@M
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7656
@@@@@@@@G???8@@KG???8@@@G???8@@@G???8@@HN***(@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7657
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7658
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7659
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7660
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7661
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7662
                                        fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<???<???<???<???<???<???<???<??8@??8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7663
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7664
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7665
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7666
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7667
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7668
currentDirectoryIcon
5824
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7669
    "This resource specification was automatically generated
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7670
     by the ImageEditor of ST/X."
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7671
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7672
    "Do not manually edit this!! If it is corrupted,
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7673
     the ImageEditor may not be able to read the specification."
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7674
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7675
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7676
     self currentDirectoryIcon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7677
     ImageEditor openOnClass:self andSelector:#currentDirectoryIcon
5824
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7678
     Icon flushCachedIcons
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7679
    "
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7680
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7681
    <resource: #image>
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7682
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7683
    ^Icon
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7684
        constantNamed:'GenericToolbarIconLibrary class currentDirectoryIcon'
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7685
        ifAbsentPut:[(Depth4Image width:22 height:22) bitsPerSample:(#[8]); bits:(ByteArray fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7686
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQIDP!!DP@@@@@@DQIDQDHQD@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7687
DQIDQDQBDQ@@@@DQIDQDQDP!!DP@@DQIDQDQDQDHQD@D"IDQDQDQDQ@@A@RH$QDQDQDQD@@D@@@QDQDQDQDP@@@@@ADQD@@QDQ@@@@@@DQDP@ADQD@@@@@@QD
5824
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7688
Q@@DQDP@@@@@ADQDQDQDQ@@@@@@DQDQDQDQD@@@@@@QDQDQDQDP@@@@@ADQDQDQDQ@@@@@@@@@@@@@@@@@@b')
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7689
            colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192]
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
  7690
            mask:((ImageMask width:22 height:22) 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]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7691
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
  7692
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7693
cut22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7694
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7695
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7696
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7697
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7698
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7699
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7700
     self cut22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7701
     ImageEditor openOnClass:self andSelector:#cut22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7702
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7703
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7704
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class cut22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7705
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7706
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7707
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7708
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7709
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7710
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7711
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7712
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7713
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7714
@@@@@@@@@@@@@@@@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
  7715
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@SL3L3L0CL0@@@@AL3L3L3@,CB@@@@D3L3L3@L0L0@@@@2H"H H"0 KBH @@@@@@KL3@@L3LH@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7716
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7717
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7718
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7719
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7720
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7721
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7722
                                        fromPackedString:'_?<@_=\P_=<0_=,0_=50_>5 _>; _?[@_?[@_?.@_?.@_?N@_?[@_>[@_;;8_75<@F1,@D1$@D1$@F ,@C@X@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7723
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7724
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7725
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7726
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7727
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7728
cutMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7729
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7730
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7731
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7732
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7733
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7734
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7735
     self cutMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7736
     ImageEditor openOnClass:self andSelector:#cutMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7737
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7738
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7739
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7740
        constantNamed:#'GenericToolbarIconLibrary class cutMenuItem22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7741
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7742
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7743
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7744
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7745
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7746
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7747
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7748
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7749
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7750
@@@@@@@@@@@@@@@@@@@ADP0@@@@L@@@CL3L3CB@@@B0@@@L3L3LL0@@@3@@@@@@@@@KB@@KB@@@QDQDQDL0ACL@@@AL3L3L0KB@,H@@@D3L3L3LL0L0@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7751
L3L3L0K@0 @@@AL3L3L3LL3@@@@@D3L3L3L03L@@@@@2H"H"H"CL0@@@@@@@@@@@@,CB@@@@@@@@@@@L0L0@@@@@@@@@H"0 KBH @@@@@@KL3@@L3LH@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7752
CBCB@@K@K@@@@@@L@LH@@,@L@@@@@@0@0 @B0@0@@@@@CBC@@@C@K@@@@@@@3@@@@@3@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7753
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7754
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7755
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7756
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7757
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7758
                                        fromPackedString:'@@@@@A@P@A 0@A 0_=50_>5 _>; _?[@_?[@_?.@_?.@_?.@_?[@@@[@@C;8@G5<@F1,@D1$@D1$@F ,@C@X@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7759
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7760
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7761
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7762
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7763
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7764
debug22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7765
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7766
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7767
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7768
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7769
     the ImageEditor may not be able to read the specification."
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7770
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7771
     self debug22x22Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7772
     ImageEditor openOnClass:self andSelector:#debug22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7773
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7774
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7775
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class debug22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7776
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7777
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7778
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7779
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7780
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7781
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7782
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7783
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7784
                            fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7785
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7786
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HB@ HB@ @@@@@@@@@@@@@@@@@@@ HBAPTEAPTB@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7787
@@@B@ @B@ HEAPTEAPTEAPH@@@@@@@HBAPTE@@HEAPTEAPTEAPTE@ @@@@@B@ TEAP@BAPTEAPTEAPTEAPH@@@@@@@HEAPT@@@@@@@@@@@@@@@@@@@@@@@HB
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7788
APTE@@HBAPTEAPTEAPTE@ @@@@@@@ HB@ @B@ TEAPTEAPTE@ H@@@@@@@@@@@@@@@HBAPTEAPTE@ @@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7789
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7790
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7791
                colorMapFromArray:#[ 0 0 0 127 127 127 128 0 0 161 161 165 194 194 194 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7792
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7793
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7794
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7795
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7796
                                        fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@L? @E?0@??8Q??<O??<C??<C??<O??<S??<@??8@G?0@L? @Q#X@FA @@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7797
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7798
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7799
        ]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7800
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
  7801
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7802
debug22x22IconForBlackBackgound
6166
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7803
    <resource:#obsolete>
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7804
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7805
    ^ self debug22x22IconForBlackBackground
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7806
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7807
    "Modified: / 30-05-2017 / 19:51:21 / mawalch"
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7808
!
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7809
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7810
debug22x22IconForBlackBackground
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7811
    <resource: #image>
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7812
    "This resource specification was automatically generated
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7813
     by the ImageEditor of ST/X."
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7814
    "Do not manually edit this!! If it is corrupted,
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7815
     the ImageEditor may not be able to read the specification."
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7816
    "
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7817
     self debug22x22IconForBlackBackground inspect
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7818
     ImageEditor openOnClass:self andSelector:#debug22x22IconForBlackBackground
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7819
     Icon flushCachedIcons"
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7820
    
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7821
    ^ Icon 
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7822
        constantNamed:'GenericToolbarIconLibrary class debug22x22IconForBlackBackground'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7823
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7824
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7825
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7826
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7827
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7828
                bitsPerSample:(#[ 8 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7829
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7830
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7831
                            fromPackedString:'
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7832
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@X@@@@@@@@FA X@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7833
@@@@@@@F@@@@A X@@@XFA @@A @@@@@@@@@@@@XF@@@FA XFA XF@@@@@@@@@@@@@@@@A @FA HB@ HB@ X@@@@@@@@@@@XFA XF@ HBAPTEAPTBA @@A @@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7834
@@XB@ XB@ HEAPTEA XEAPHF@@@FA HBAPTEA HEA XEAPXFAPTE@ @@@@@B@ XEAPXBAPXFAPTEAPTEAPH@@@@@A HEAPTFA XFA XFA XFA XF@@@FA HB
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7835
A TEA HBAPTEAPTEA XE@ @F@@@F@ HB@ XB@ TEA XEAPXF@ X@@@@@@@@FA XFA HBAPXFAPTE@ X@@@@@@@@@@@@@A XFA XB@ HB@ X@@@@@@@@@@@@@
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7836
A X@@@XFA XFA X@@@@@@@@@@@@@A @@@@XF@@@@A X@A X@@@@@@@@@@@@@A X@@@@@@@@FA @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7837
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7838
                colorMapFromArray:#[ 0 0 0 127 127 127 128 0 0 161 161 165 194 194 194 255 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7839
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7840
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7841
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7842
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7843
                                        fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@L? @E?0@??8Q??<O??<C??<C??<O??<S??<@??8@G?0@L? @Q#X@FA @@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7844
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7845
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7846
        ]
6166
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7847
33c75b4a9999 #REFACTORING by mawalch
mawalch
parents: 6071
diff changeset
  7848
    "Created: / 30-05-2017 / 19:27:59 / mawalch"
3628
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7849
!
ed62d60d91a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3625
diff changeset
  7850
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7851
delete22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7852
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7853
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7854
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7855
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7856
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7857
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7858
     self delete22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7859
     ImageEditor openOnClass:self andSelector:#delete22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7860
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7861
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7862
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class delete22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7863
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7864
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7865
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7866
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7867
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7868
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7869
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7870
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7871
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7872
@@@@@@@@@@@@@@@@DQDQDQDQL@@@@@@SL3L3L3L @@@@@AL3L3L3L2@@@@@@D3L3L3L3H@@@H@@SL3L3L3L @@H@@AL3L3L3L2@@@@@@D3L3L3L3@@@@@@@S
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7873
L3L3L0@ @@@ @AL3L3L3@@@@@@@@D3L3L3L@D@@@H@@SL3L3L0@QL3H @AL3L3L3@A@3LB@@D3L3L3L@DC@0H@@2H"H"H @PLC@ @@@@@@@@@A@0LB@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7874
@@@@DC@0H@@@@@@@@@@PLC@ @@@@@@@@@A@0LB@@@@@@@@@@DS@2H@@@@@@@@@HAL3HB@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7875
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7876
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7877
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7878
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7879
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7880
                                        fromPackedString:'_?<@_?<@_?<P_?<P_?<X_?<X_?<H_?0H_?O<_?XL_?_<_?_<_?_<_?_<_?_<_?_<@@_<@@_<@@_<@@_<@@_<@@G0');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7881
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7882
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7883
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7884
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7885
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7886
displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7887
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7888
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7889
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7890
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7891
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7892
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7893
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7894
     self displayScreen22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7895
     ImageEditor openOnClass:self andSelector:#displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7896
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7897
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7898
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7899
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7900
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7901
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  7902
        constantNamed:#'GenericToolbarIconLibrary class displayScreen22x22Icon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  7903
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7904
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  7905
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
  7906
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
  7907
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7908
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7909
down22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7910
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7911
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7912
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7913
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7914
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7915
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7916
     self down22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7917
     ImageEditor openOnClass:self andSelector:#down22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7918
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7919
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7920
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class down22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7921
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7922
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7923
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7924
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7925
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7926
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7927
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7928
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7929
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7930
UUT@AUUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUP
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7931
UT@*$AUPUV***%UPUU***UUPUUZ*)UUPUUV*%UUPUUU*UUUPUUUYUUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7932
                colorMapFromArray:#[ 255 255 255 0 0 0 0 127 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7933
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7934
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7935
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7936
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7937
                                        fromPackedString:'@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@A?>@A?>@@?<@@_8@@O0@@G @@C@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7938
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7939
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7940
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7941
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7942
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7943
downRight22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7944
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7945
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7946
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7947
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7948
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7949
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7950
     self downRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7951
     ImageEditor openOnClass:self andSelector:#downRight22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7952
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7953
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7954
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7955
        constantNamed:#'GenericToolbarIconLibrary class downRight22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7956
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7957
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7958
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7959
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7960
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7961
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7962
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7963
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7964
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7965
UUUUUUUPP@EUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUT%UPR*UUT)UPR*UUT*UPR*P@@*%PR*****)P
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7966
R******PR*****)PR*****%PQUUUU*UPUUUUT)UPUUUUT%UPUUUUTUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7967
                colorMapFromArray:#[ 255 255 255 0 0 0 0 127 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7968
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7969
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7970
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7971
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7972
                                        fromPackedString:'@@@@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ L@_ N@_ O@_?? _??0_??8_??8_??0_?? @@O@@@N@@@L@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7973
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7974
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7975
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7976
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  7977
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7978
editor22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7979
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7980
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7981
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7982
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7983
     the ImageEditor may not be able to read the specification."
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7984
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7985
     self editor22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7986
     ImageEditor openOnClass:self andSelector:#editor22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7987
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7988
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7989
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class editor22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7990
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7991
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7992
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7993
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7994
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7995
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7996
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7997
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  7998
                            fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  7999
*******************************("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
  8000
!!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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8001
RRY(UUUD***("*)J*****$R***"J)J******QJ***HUUUZUUUUUD***TQDQDQDQDQDR***************(b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8002
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8003
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8004
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8005
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8006
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8007
                                        fromPackedString:'@@@@@@@@G??LG??<G??<G??<G??<G??<G??<G??<G??8G??0G??0G??0G??0G??0G??0G??0G??0G??0O??0@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8008
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8009
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8010
        ]
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8011
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8012
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8013
font22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8014
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8015
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8016
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8017
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8018
     the ImageEditor may not be able to read the specification."
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8019
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8020
     self font22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8021
     ImageEditor openOnClass:self andSelector:#font22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8022
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8023
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8024
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class font22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8025
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8026
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8027
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8028
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8029
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8030
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8031
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8032
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8033
                            fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8034
@@@@@@@@@@@@@@@@@@@@@!!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
  8035
ADUDP @C@@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@ADT2@@@CH@@@@@@DQSH@@@L @@@@@@QEL @@@2@@@@@@QDT2@@@CH@@@@@QDQSH@@@@ @@@@@DQE
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8036
P @@@@@@@@@@@DQ@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8037
                colorMapFromArray:#[ 0 0 0 255 255 255 150 150 150 213 213 213 215 48 48 134 54 54 240 240 240 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8038
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8039
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8040
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8041
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8042
                                        fromPackedString:'@@@@@G @OG0@O''<@O7>@O<?@A>? A?? A??@A<?@A<>@A<>@A<>@A=>@C?>@G<>@C<\@@8D@@H@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8043
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8044
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8045
        ]
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8046
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8047
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8048
forward22x22_3DIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8049
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8050
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8051
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8052
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8053
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8054
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8055
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8056
     self forward22x22_3DIcon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8057
     ImageEditor openOnClass:self andSelector:#forward22x22_3DIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8058
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8059
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8060
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8061
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8062
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8063
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8064
        constantNamed:'GenericToolbarIconLibrary forward22x22_3DIcon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8065
        ifAbsentPut:[(Depth2Image width:22 height:22) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8066
@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@B%@@@@@@)UT@@@@JUUUP@@@H@UP@@@@@BUP@@@@@BUP@@@@@BUP@@@@@IUT@@@@@IUT@@@@@IUT@@@@@%UU@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
  8067
@@%UU@@@@BUUUP@@@BUUUP@@@IUUUT@@@@@@@@@@@@@@@@@@@@@@@@@@') colorMapFromArray:#[0 0 0 0 127 0 255 255 255] mask:((ImageMask width:22 height:22) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@C@@@O0@@?<@C??@C??@@O0@@O0@@O0@@_8@@_8@@_8@@?<@@?<@A?>@A?>@C??@A??@@@@@@@@@'); yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8068
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8069
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8070
help22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8071
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8072
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8073
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8074
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8075
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8076
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8077
     self help22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8078
     ImageEditor openOnClass:self andSelector:#help22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8079
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8080
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8081
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class help22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8082
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8083
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8084
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8085
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8086
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8087
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8088
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8089
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8090
                            fromPackedString:'@@@@@@@@@O0A@_8@@?<@@8\C@8\A@@\@@@8@@A8@@C0@@G @@G@@@G@@@G@C@@@@@@@@@G@@@G@@@G@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8091
                colorMapFromArray:#[ 0 0 0 127 0 127 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8092
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8093
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8094
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8095
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8096
                                        fromPackedString:'@@@@@@@@@O0@@_8@@?<@@8\@@8\@@@\@@@8@@A8@@C0@@G @@G@@@G@@@G@@@@@@@@@@@G@@@G@@@G@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8097
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8098
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8099
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8100
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8101
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8102
home22x22Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8103
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8104
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8105
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8106
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8107
     the ImageEditor may not be able to read the specification."
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8108
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8109
     self home22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8110
     ImageEditor openOnClass:self andSelector:#home22x22Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8111
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8112
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8113
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class home22x22Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8114
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8115
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8116
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8117
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8118
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8119
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8120
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8121
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8122
                            fromPackedString:'
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8123
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQH2DQ@@@@@@@@DQH4L!!DP@@@@@@DQH4QCHQD@@@@@
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8124
DQH4QDP2DQ@@@@DQH4QDQDL!!DP@@DQH4QDQDQCHQD@D"H4QBH"ADP0@A@RH#QBH"H QC@@D@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MD
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8125
IUUUADL@@@@@@4P%UUTDP0@@@@@CQBUUUPQC@@@@@@MDIUUUADL@@@@@@4P%UUTDP0@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8126
                colorMapFromArray:#[ 0 0 0 192 0 0 64 0 0 128 128 128 192 192 192 100 128 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8127
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8128
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8129
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8130
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8131
                                        fromPackedString:'@A@@@C @A''0@A/8@A?<@A?>@A??@C?? G??0O??8_??<_??<_??<C?? C?? C?? C?? C?? C?? C?? C?? C?? ');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8132
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8133
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8134
        ]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8135
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8136
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8137
keyboardMapping22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8138
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8139
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8140
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8141
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8142
     the ImageEditor may not be able to read the specification."
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8143
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8144
     self keyboardMapping22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8145
     ImageEditor openOnClass:self andSelector:#keyboardMapping22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8146
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8147
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8148
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8149
        constantNamed:#'GenericToolbarIconLibrary class keyboardMapping22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8150
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8151
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8152
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8153
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8154
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8155
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8156
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8157
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8158
                            fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8159
@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@*@@@@@@B%P@@@@@JUT@@@@@)TE@@H@BUTQP@@@ETTQ\@@@JTTU?@@@J$@W<@@@B)U_0@@@@*U?@@@@@J''<@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8160
@@B''0@@@@@@''@@@O@@@D@@@@@@@@@@@K@@@@@@@@@@@@@@@M@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8161
                colorMapFromArray:#[ 0 0 0 255 255 255 128 128 128 192 192 192 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8162
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8163
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8164
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8165
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8166
                                        fromPackedString:'@@@@@@@@@@@@@G@@@O @@_0@@?8@A?<@C?>@G??@G?? G??@C?>@A?<@@?8@@_0@@O @@G@@@B@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8167
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8168
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8169
        ]
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8170
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8171
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8172
languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8173
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8174
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8175
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8176
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8177
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8178
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8179
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8180
     self languages22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8181
     ImageEditor openOnClass:self andSelector:#languages22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8182
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8183
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8184
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8185
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8186
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8187
    ^Icon
5238
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8188
        constantNamed:'GenericToolbarIconLibrary languages22x22Icon'
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8189
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8190
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FA @@@@@@@@@@@@@@@@XF@@@@@@@@@B (JB (JB (JB (F!!(Z@@@@@@@@@@@ZJB (JA0\GA0(JB ZF @@@@@@@@@@
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8191
F" (JA0\GA0\GB (F!!(@@@@@@@@@@A((JA0\GA0\GA0\JB Z@@@@@@@@@@@ZJB \GA0\GA0\GB (J@@@@@@@@@@@F" (GA0\GA0\GA0(JB B@@@@@@@@@A((
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8192
J@X@A LC@0LC@0LC@ @@@@X@@@@ZJB @@@@@@0@@@@@@@@@C@@@@@@@@F" (@@X@@@@@@@@@@@@@@@@E@@@@@ATZF @]DQDQGP8[F1,SE1\WE0$@@@XF@@@@
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8193
GQ<_G1<[F1,[D1<_E1\I@@@@@@@@@AL]GQDSD!!H[F1,[F1,[BP@@@@@@@@@TFQ$YFQ$YEAPTEAPTE@@@@@@@@@@@FQ$"H"HYFQ$YFQ$YFRH@@@@@@@@@@BH"
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8194
H!!$"H"H"H"H"H"H"@@@@@@@@@@@"H"H"H"H"H"HYFQ$YFPX@@@@@@@@F@@@@@@@@@@@@@@@@@@@F@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bbd4b65c09d2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5229
diff changeset
  8195
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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; bits:(ByteArray fromPackedString:'@@@@_?>@_?>@_?>@_?>@_?>@_?>@_?>@_??8_??8_??8_??8_??8A??8A??8A??8A??8A??8A??8@@@@@@@@@@@@') ; yourself); yourself]
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8196
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8197
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8198
left22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8199
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8200
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8201
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8202
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8203
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8204
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8205
     self left22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8206
     ImageEditor openOnClass:self andSelector:#left22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8207
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8208
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8209
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class left22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8210
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8211
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8212
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8213
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8214
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8215
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8216
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8217
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8218
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8219
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUTUUUUUPURUUUUUPUJUUUUUPT*P@@@@PR******PJ******P*******PZ******PV*UUUUUPU*UUUUUP
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8220
UZUUUUUPUVUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8221
                colorMapFromArray:#[ 255 255 255 0 0 0 0 127 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8222
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8223
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8224
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8225
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8226
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@A @@C @@G @@O??<_??<???<???<_??<O??<G @@C @@A @@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8227
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8228
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8229
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8230
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8231
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8232
leftDown22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8233
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8234
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8235
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8236
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8237
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8238
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8239
     self leftDown22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8240
     ImageEditor openOnClass:self andSelector:#leftDown22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8241
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8242
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8243
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class leftDown22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8244
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8245
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8246
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8247
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8248
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8249
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8250
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8251
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8252
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8253
UUUUUUUPU@@@@@@PUJ****)PUJ****)PUJ****)PUJ****)PUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUPUJ)UUUUP@J*@UUUP
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8254
***)UUUPZ**%UUUPV**UUUUPU*)UUUUPUZ%UUUUPUVUUUUUPUUUUUUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8255
                colorMapFromArray:#[ 255 255 255 0 0 0 0 127 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8256
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8257
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8258
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8259
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8260
                                        fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G8@@G8@@G8@@G8@@G8@@G8@@G8@@??@@??@@_>@@O<@@G8@@C0@@A @@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8261
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8262
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8263
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8264
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8265
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8266
load22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8267
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8268
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8269
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8270
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8271
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8272
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8273
     self load22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8274
     ImageEditor openOnClass:self andSelector:#load22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8275
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8276
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8277
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class load22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8278
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8279
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8280
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8281
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8282
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8283
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8284
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8285
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8286
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8287
UUUUUUUPUUUUU?UPUUUUW*5PU???>*/PU:****)PUUUUUUZPP@@@@@EPS?????&PS?????%PS?????&PS?????%PT?????9PT?????9PT?????9PT?????9P
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8288
T?????9PT?????9PUO????>PUO????>PUO????>PU:*****PUUUUUUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8289
                colorMapFromArray:#[ 255 255 255 0 0 0 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8290
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8291
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8292
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8293
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8294
                                        fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8295
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8296
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8297
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8298
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8299
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8300
loadFromMethod22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8301
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8302
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8303
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8304
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8305
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8306
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8307
     self loadFromMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8308
     ImageEditor openOnClass:self andSelector:#loadFromMethod22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8309
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8310
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8311
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8312
        constantNamed:#'GenericToolbarIconLibrary class loadFromMethod22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8313
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8314
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8315
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8316
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8317
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8318
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8319
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8320
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8321
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8322
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8323
L3L3L3L3L2DQDCL:(3L3N*L3HRDPL3**(3N*(3L!!DQDCL:*#N*N*L3HQDPL3**(:L:(3L!!DQ@3N*N*(3*#L2DQDCL:(3(3N*L3HQDPL3*#L3L:(3L!!DQ@3N*
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8324
L3L3*#L2DQDPL3*#L3N*(3L!!DQ@3N*L3L3*#L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8325
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8326
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8327
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8328
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8329
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8330
                                        fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8331
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8332
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8333
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8334
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8335
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8336
loadImage22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8337
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8338
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8339
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8340
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8341
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8342
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8343
     self loadImage22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8344
     ImageEditor openOnClass:self andSelector:#loadImage22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8345
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8346
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8347
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8348
        constantNamed:#'GenericToolbarIconLibrary class loadImage22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8349
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8350
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8351
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8352
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8353
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8354
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8355
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8356
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8357
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8358
DQDQDQDQDQDQDQDQDQDQDQDQD3LQDQDQDQDQDQD2H#DQDQL3L3L3L2H"H3DQD2H"H"H"H"H"DQDQDQDQDQDQDQH!!D@@@@@@@@@@@@QDPL3L3L3L3L3L!!HQ@3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8359
L3L3L3L3L2DQDCMDY''\3L3L3HRDPL4Q&]3L3L3L!!DQDCMU&X 3L3L3HQDPL5VY"CL3L3L!!DQ@3QFY7L3L3L2DQDCMDY''\3L3L3HQDPL5VY"CL3L3L!!DQ@3UY
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8360
&HL3L3L2DQDPL4Q&]3L3L3L!!DQ@3QFY7L3L3L2DQDCL3L3L3L3L3HQDSH"H"H"H"H"H!!DQDQDQDQDQDQDQDb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8361
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8362
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8363
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8364
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8365
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8366
                                        fromPackedString:'@@G@@@O G??8O??<O??<_??<???<???<???<???<???<_??<_??<_??<_??<_??<_??<O??<O??<O??<O??<O??<');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8367
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8368
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8369
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8370
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8371
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8372
make22x22Icon1
5143
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8373
    "This resource specification was automatically generated
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8374
     by the ImageEditor of ST/X."
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8375
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8376
    "Do not manually edit this!! If it is corrupted,
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8377
     the ImageEditor may not be able to read the specification."
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8378
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8379
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8380
     self make22x22Icon1 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8381
     ImageEditor openOnClass:self andSelector:#make22x22Icon1
5143
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8382
     Icon flushCachedIcons
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8383
    "
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8384
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8385
    <resource: #image>
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8386
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8387
    ^Icon
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8388
        constantNamed:'GenericToolbarIconLibrary make22x22Icon1'
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8389
        ifAbsentPut:[(Depth4Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8390
@@@@@@@@@@@@@@@@@@@@@G\@@@@@@@@@]7@GUW@@]0@@@@]UU7UUU7YR\@@@A5UUUUUUUUI0@@@AEUUUUUUUI&@@A7]7UUI!!EUU&]7A2UUUUI!!@AUUUUU7UU
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8391
UUT!!X!!EUUUUVE7]UUUY&X%UVY&DQDWUUUUUUUVXQDQDWUUUUUUUUT&DQ@WUUUUUUUUUUU1@CQUT3UUUTQEUW@@@RHQE5UWDQ]7D@@ADQDWUU\QDQDP@@DQDQ
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8392
\%I1@QDQ@@@ADP@W]1@@DQ@@@@@@@ADQD@@@@@@@@@@@DQDP@@@@@@@@@@@ADP@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 48 48 48 192 192 192 56 59 56 88 92 88 248 252 248 128 128 128 160 160 160]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@@@C@@C''#@G?? G?? G?? _??8???<???<???<???<???<_??8_??0O??0O??0O?70GO# @O @@O @@G@@@@@@') ; yourself); yourself]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8393
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8394
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8395
make22x22Icon2
5143
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8396
    "This resource specification was automatically generated
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8397
     by the ImageEditor of ST/X."
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8398
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8399
    "Do not manually edit this!! If it is corrupted,
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8400
     the ImageEditor may not be able to read the specification."
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8401
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8402
    "
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8403
     self make22x22Icon2 inspect
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8404
     ImageEditor openOnClass:self andSelector:#make22x22Icon2
5143
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8405
     Icon flushCachedIcons
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8406
    "
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8407
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8408
    <resource: #image>
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8409
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8410
    ^Icon
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8411
        constantNamed:'GenericToolbarIconLibrary make22x22Icon2'
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8412
        ifAbsentPut:[(Depth4Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8413
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@!!L!!H@@@@@@@@CHSD"D!!H @@@@@@L3H#L"L"@@@@@@
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8414
@@H3H#L @@@@@@@3L3H@H#L"@@@@@DPCL0@3HCL@@@@@PDL3L3H3@0@@@@@BP3L3L3M@@@@@@@I@LCLD@4@@@@@@@ I@L0Q@P@@@@@@@@$ADAD@@@@@@@@@B
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
  8415
PCLDP@@@@@@@@@@@L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 88 88 88 184 252 248 0 192 192 0 128 128]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@O0@A?>@C??@C??@C??@G?? G?? G?? G?? C??@C??@C??@@?<@@?<@@G @@@@@@@@@@@@@') ; yourself); yourself]
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8416
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
  8417
5196
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8418
makeYellow22x22Icon1
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8419
    "This resource specification was automatically generated
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8420
     by the ImageEditor of ST/X."
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8421
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8422
    "Do not manually edit this!! If it is corrupted,
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8423
     the ImageEditor may not be able to read the specification."
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8424
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8425
    "
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8426
     self makeYellow22x22Icon1 inspect
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8427
     ImageEditor openOnClass:self andSelector:#makeYellow22x22Icon1
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8428
     Icon flushCachedIcons
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8429
    "
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8430
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8431
    <resource: #image>
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8432
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8433
    ^Icon
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8434
        constantNamed:'GenericToolbarIconLibrary makeYellow22x22Icon1'
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8435
        ifAbsentPut:[(Depth4Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8436
@@@@@@@@@@@@@@@@@@@@@G\@@@@@@@@@]7@GDW@@]0@@@@\QE7DQE7XS\@@@A1DQDQDQDQM0@@@BHQDQDQDQM&@@A7]7DQM"HQE&]7A3DQDQM"@BDQDQE7DQ
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8437
DQD2X2HQDQDVI7\QDQY&X1DVY&H"H''DQDQDQDVX"H"H''DQDQDQDQD6H"@''DQDQDQDQDQE2@DTQEDDQDUUQDW@@@#L"I1DWH"]7H@@BH"H''DQ\"H"H @@H"H"
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8438
\1M2@"H"@@@BH @'']2@@H"@@@@@@@BH"H@@@@@@@@@@@H"H @@@@@@@@@@@BH @@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 211 107 48 48 48 192 192 192 56 59 56 88 92 88 128 128 128 160 160 160]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@@@C@@C''#@G?? G?? G?? _??8???<???<???<???<???<_??8_??0O??0O??0O?70GO# @O @@O @@G@@@@@@') ; yourself); yourself]
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8439
!
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8440
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8441
memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8442
    "This resource specification was automatically generated
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8443
     by the ImageEditor of ST/X."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8444
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8445
    "Do not manually edit this!! If it is corrupted,
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8446
     the ImageEditor may not be able to read the specification."
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8447
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8448
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8449
     self memory22x22Icon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8450
     ImageEditor openOnClass:self andSelector:#memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8451
     Icon flushCachedIcons
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8452
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8453
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8454
    <resource: #image>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8455
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8456
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  8457
        constantNamed:#'GenericToolbarIconLibrary class memory22x22Icon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
  8458
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8459
@@@@@@@@@@@@@@@@@@@@@@?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
  8460
<,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
  8461
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
  8462
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8463
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8464
new22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8465
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8466
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8467
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8468
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8469
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8470
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8471
     self new22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8472
     ImageEditor openOnClass:self andSelector:#new22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8473
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8474
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8475
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class new22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8476
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8477
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8478
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8479
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8480
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8481
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8482
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8483
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8484
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8485
@@@@@@@@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@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8486
A?????8@A?????8@A?????8@A?????8@A?????8@C*****(@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8487
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8488
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8489
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8490
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8491
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8492
                                        fromPackedString:'_?>@_??@_?? _??0_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8_??8');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8493
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8494
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8495
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8496
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8497
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8498
newMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8499
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8500
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8501
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8502
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8503
     the ImageEditor may not be able to read the specification."
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8504
    "
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8505
     self newMenuItem22x22Icon inspect
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8506
     ImageEditor openOnClass:self andSelector:#newMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8507
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8508
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8509
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8510
        constantNamed:#'GenericToolbarIconLibrary class newMenuItem22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8511
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8512
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8513
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8514
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8515
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8516
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8517
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8518
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8519
                            fromPackedString:'
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8520
@@@@@@@@@@@@@@@@@@@ADP@@@@@@@@@CL3L3@@@@@@@@@@L3L3L@@@@@@@@@@@@@@@@H@@ @B@@QDQDQDQFAFAJ@@AL3L3L3L3 8N@@@D3L3L3L3L8"B@@@S
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8521
L3L3L3"H"H"H@AL3L3L3L3NH  @@D3L3L3L3NC 8@@@2H"H"H"JBJBJ@@@@@@@@@B@@H@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8522
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8523
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8524
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8525
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8526
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8527
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8528
                                        fromPackedString:'@@@@@@@@@@@@@@@@_??<_??8_??8_??8_??<_??8_??8_??8_??<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8529
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8530
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8531
        ]
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8532
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
  8533
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8534
openBreakpointBrowser22x22Icon
5196
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8535
    "This resource specification was automatically generated
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8536
     by the ImageEditor of ST/X."
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8537
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8538
    "Do not manually edit this!! If it is corrupted,
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8539
     the ImageEditor may not be able to read the specification."
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8540
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8541
    "
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8542
     self openBreakpointBrowser22x22Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8543
     ImageEditor openOnClass:self andSelector:#openBreakpointBrowser22x22Icon
5196
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8544
     Icon flushCachedIcons
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8545
    "
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8546
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8547
    <resource: #image>
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8548
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8549
    ^Icon
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8550
        constantNamed:'GenericToolbarIconLibrary openBreakpointBrowser22x22Icon'
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8551
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8552
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A,[F1,[@@@@@@@@@@@@@@@@
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8553
@@@@F1,[F1,[F1,[@@@@@@@@@@@@@@@@F1,[F2,C@ XRE3D@@@@@@@@@@@@@@A,[F0$TK3X7MB(UC30@@@@@@@@@@A,[F1 =N#)@PDA@PAXFO@@@@@@@@@@[
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8554
F1$:N$A@PDA@PDA@J L@@@@@@@@@F24)N$A@PDA@PDA@PC(*G @@@@@@@A, L$@:N#(:N#(:PD@:J D@@@@@@@@[FS]@N#(:N#(:N$A@N#,E@@@@@@@@@A$;
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8555
PDA@PDA@PDA@PC(;B0@@@@@@@@@YM4A@PDA@PDA@PD@:N0,@@@@@@@@@F#A@PDA@PDA@PD@:N#,B@@@@@@@@@B0"PDA@PDA@PDA@N#(.B@@@@@@@@@@@CR)@
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8556
PDA@PD@:N#(:B#0@@@@@@@@@@ADMLC(:N#(:N#(:G2X@@@@@@@AEO3$PA@4#L3(:N"8.G2\@@@@@@@ADP$D8C @@D \LD2D_JCT@@@@@@@ADP4D>IA4@@@@@
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8557
@@@@@@@@@@@@@@@@P4D>IQ0@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 160 64 64 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 191 191 208 191 223 239 191 224 240 191 224 255 192 192 208 192 239 255 192 240 255 207 143 95 207 207 191 207 223 239 207 255 255 208 208 223 208 224 239 223 128 63 240 207 144 233 88 88 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@_@@A?0@C?8@C?>@G??@G??@G?? G?? G?? C?? C?? C?? C?? A?? A??@O?>@_O<@?@@@>@@@') ; yourself); yourself]
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8558
!
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8559
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8560
openBreakpointBrowserIcon
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8561
    <resource:#programImage>
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8562
    ^ self openBreakpointBrowser22x22Icon
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8563
!
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8564
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8565
openBugBrowser22x22Icon
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8566
    "This resource specification was automatically generated
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8567
     by the ImageEditor of ST/X."
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8568
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8569
    "Do not manually edit this!! If it is corrupted,
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8570
     the ImageEditor may not be able to read the specification."
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8571
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8572
    "
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8573
     self openBugBrowser22x22Icon inspect
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8574
     ImageEditor openOnClass:self andSelector:#openBugBrowser22x22Icon
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8575
     Icon flushCachedIcons
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8576
    "
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8577
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8578
    <resource: #image>
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8579
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8580
    ^Icon
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8581
        constantNamed:'GenericToolbarIconLibrary openBugBrowser22x22Icon'
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8582
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8583
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8584
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CDGAP(VF3\@@@@@@@@@@@@@@@@@@@4XMS4>N3@YD4TFA @@@@@@@@@@@A1FP$H@S4=OS1(JQT8F@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8585
@A5BP D_G4=OS4=OL@]NS X@@@@@@CL/P$=O@T=OS4=OS4H0H49NA @@@@@%NT=OS1=OS4=OS4=OL@QNS X@@@@@GS9OS4<_S4=OS4=OS4PI@@@@@@@@@A5D
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8586
S4=OS4=OS4=OS4=DC49NA @@@@@]O!!<_G1<A@PDA@PDAQ@=NA X@@@@@G#YOS4=OS4=OS4=OS4PEA @@@@@@@CH''S4=OG4=OS4=OS4<4C@@@@@@@@@@@DSAO
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8587
S0EOS4=OS4=BC$T@@@@@@@@@@ATQM!!<AG1=OS4=BIB0@@@@@@@AVSTDTBAD(N$IBP#P4IB4@@@@@@@AUT5I@D @@E ,PE2X$K#0@@@@@@@AUUEIIJ"H@@@@@
5196
23f3e65aa50a class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5192
diff changeset
  8588
@@@@@@@@@@@@@@@@UEIIJ2D@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 64 64 64 64 64 64 127 127 127 127 127 175 127 128 175 128 0 0 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 160 64 64 160 64 64 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 161 161 165 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 192 192 208 192 239 255 192 240 255 194 194 194 207 143 95 207 207 191 207 223 239 207 239 240 207 255 255 208 208 223 208 224 239 208 255 255 217 217 217 223 128 63 223 255 255 239 239 240 239 255 255 240 207 144 255 0 0 255 64 64 255 64 64 255 64 64 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@BA0@Q''H@O? @_?0@??8Q??<O??<C??<C??<O??<S??<C??8C??0A?? A??XO?? _O<@?@@@>@@@') ; yourself); yourself]
4131
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8589
!
Claus Gittinger <cg@exept.de>
parents: 4108
diff changeset
  8590
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8591
paste22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8592
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8593
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8594
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8595
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8596
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8597
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8598
     self paste22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8599
     ImageEditor openOnClass:self andSelector:#paste22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8600
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8601
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8602
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class paste22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8603
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8604
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8605
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8606
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8607
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8608
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8609
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8610
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8611
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8612
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8613
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8614
L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@@@@@@L"H"H"H"H@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8615
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8616
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8617
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8618
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8619
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8620
                                        fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<???<???<???<???<???<??8@??8@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8621
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8622
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8623
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8624
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8625
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8626
pasteMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8627
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8628
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8629
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8630
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8631
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8632
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8633
     self pasteMenuItem22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8634
     ImageEditor openOnClass:self andSelector:#pasteMenuItem22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8635
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8636
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8637
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8638
        constantNamed:#'GenericToolbarIconLibrary class pasteMenuItem22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8639
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8640
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8641
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8642
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8643
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8644
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8645
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8646
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8647
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8648
@@@@@@@@KLH@@@@@@@@@@@CL3@@@@@@@@@@@CBH"0@@@@@@@@QD,3L3BDQ@@@@@ADQDQDQDQD@@@@@DQDQDQDQDP@@@@@@@@@@DQDQ@ADQDQDQDS@QDQD@D3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8649
L3L3L3HADQDP@SL3L3L3L DQDQ@AL3L3L3L2@QDQD@D3L3L3L3HADQDP@SL3L3L3L DQDQ@CH"H"H"H"@QDQD@@@@@@@@@@ADQDP@@@@@QDQDQDQDQ@@@@@A
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8650
DQDQDQDQD@@@@@DQDQDQDQDP@@@@@QDQDQDQDQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8651
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8652
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8653
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8654
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8655
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8656
                                        fromPackedString:'@@<@@@<@@??<@??<@??<@??<???<???<???<???<???<???<???<???<???<@??<@??<@??<@??<@??<@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8657
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8658
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8659
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8660
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8661
5254
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8662
pickWindowIcon
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8663
    <resource: #programImage>
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8664
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8665
    ^ self pickWindowIcon2
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8666
!
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8667
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8668
pickWindowIcon1
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8669
    "This resource specification was automatically generated
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8670
     by the ImageEditor of ST/X."
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8671
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8672
    "Do not manually edit this!! If it is corrupted,
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8673
     the ImageEditor may not be able to read the specification."
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8674
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8675
    "
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8676
     self pickWindowIcon1 inspect
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8677
     ImageEditor openOnClass:self andSelector:#pickWindowIcon1
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8678
     Icon flushCachedIcons
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8679
    "
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8680
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8681
    <resource: #image>
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8682
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8683
    ^Icon
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8684
        constantNamed:'GenericToolbarIconLibrary pickWindowIcon1'
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8685
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8686
@@DB@0PEA \HBP(KC@4NC1@QD!!LTEPDVE1 YF!!,\GQ8_HBD"H2P%I"X&I2 )J!!\WFQ([J20-K"<0LSH$IRX&I#L4MSX6M#X6M#X6M#X6M#\7NC$:N30=O#<6
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8687
M#X6M#X6M#X6M#\7M3 9N#,<OT@?M#X6M#X6M#X6M#X7M3\8NS(;OC5@PSX6M#X6M#X6M#X6M#\7NC$:N30:PDH6M#X6M#X6M$MCP3X6M3\8NS(;ODQEM#X6
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8688
M#X6P4L6P3YCP3\8NS(;ODYDQSX6M#X6P3X6P4MCM3]CNS(;OC%GRD$6M#X6M$L6M3]CNS\7P3$:N309Q4!!JM#X6M$L6P3\7P3\7P3%CN31KN41MR#X6M#YC
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8689
P4MCP4MCP4MCP3,<N31NST<6M#X6P3YCM3]CM3!!CN$MGQ3,<S$5PM#X6M#YCM#\7P3\8NTL;Q4]GQ5EMT#X6M#X6P3X7P4MCNC%CN4]GQ4]SSUP6M#X6M#YC
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8690
P3]CNDMCN31GQ4]GT45UM#X6M#X6U#]CP4L:N31GQ4]GQ5]MVE$6M#X7M3 9N#,<N#,<Q4]GQ4]ZSU!!YM#X6M3\8NS(;OC(;OD]GQ4]GV$5[VSX6M3\8NS(;
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8691
OC$:N31GQ4]GQ5M\V55^W6A!!X&M$YVY''ZD!!MST5MST5MW@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[56 150 230 68 158 230 76 160 230 72 156 230 68 150 230 64 144 230 60 138 220 56 132 220 52 126 220 44 120 220 40 114 210 36 108 210 32 102 210 28 96 210 24 90 200 20 84 200 16 78 200 12 72 200 8 66 190 4 64 190 4 56 180 0 50 160 140 208 255 132 202 255 124 194 255 116 186 255 108 178 255 100 170 255 92 162 255 84 154 255 76 144 255 68 136 255 56 128 255 48 118 255 40 110 255 32 100 255 20 92 255 12 82 255 4 74 255 4 64 240 0 50 170 76 164 240 132 200 255 88 158 255 80 150 255 72 142 255 64 132 255 56 124 255 44 116 255 36 106 255 28 98 255 4 68 250 0 50 180 92 168 240 255 255 255 244 244 250 240 242 250 240 240 250 240 238 240 236 236 240 236 234 240 240 240 240 28 72 180 108 176 240 56 94 180 104 174 230 104 172 230 0 0 0 56 92 180 104 170 230 232 234 240 232 232 240 52 90 180 104 168 230 100 166 230 236 238 240 228 228 240 52 88 180 224 226 230 100 164 230 100 162 230 224 222 230 100 160 230 220 220 230 96 160 230 96 158 220 248 246 250 220 218 230 96 154 220 252 250 250 212 212 220 52 128 210 12 60 170 88 146 220 84 140 210 80 136 210 80 132 210 76 126 200 72 122 200 68 118 200 68 114 190 64 108 190 60 104 190 60 100 180 56 96 180]; mask:((Depth1Image new) width:22; height:22; bits:(ByteArray fromPackedString:'????????????????????????????????????????????????????????????????????????????????????????') ; yourself); yourself]
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8692
!
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8693
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8694
pickWindowIcon2
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8695
    "This resource specification was automatically generated
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8696
     by the ImageEditor of ST/X."
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8697
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8698
    "Do not manually edit this!! If it is corrupted,
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8699
     the ImageEditor may not be able to read the specification."
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8700
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8701
    "
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8702
     self pickWindowIcon2 inspect
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8703
     ImageEditor openOnClass:self andSelector:#pickWindowIcon2
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8704
     Icon flushCachedIcons
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8705
    "
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8706
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8707
    <resource: #image>
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8708
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8709
    ^Icon
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8710
        constantNamed:'Tools::ViewTreeInspectorApplication pickWindowIcon2'
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8711
        ifAbsentPut:[(Depth8Image new) width:21; height:23; bits:(ByteArray fromPackedString:'
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8712
@@DB@0PEA \HBP(KC@4NC1@QD!!LT@QTVE1 YF!!,\GQ8_HBD"H2P$IBT&I2 )E1 YJ",,KR8/LCD"H2P$ICH3MCT5MST5MST5MST5MSX7NC$:N30=O#T5MST5
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8713
MST?O3<?O3X7NC$:N31@O#T5MST5O3<5MS<5M#<?NC$:N31@PST5MST?MST?O3<?O3X7O3$:N3%@P#T5MS<5MST5MS<6M#\8NS<:N31CQCT5O3T5MST?O3<?
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8714
O3\8NS(?N31CQCT5O3T5MST5M#<6M3 9N#(?N31EQ#T?MS<5O3T5O3<?M3 ?N#<:O31EQ3T?MS<5O3T?M#X7O3$?N#<:O31HQ3T?O3<?O3<?M#X7O3<?O3<?
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8715
O31HRST?MS<5O3X?M#X7O3$?NC<:O31HR#T?MS<5O3X6O3<?N#$?NC<:O31HR3T5O3T5M#X6M3<9N#$:NC$?N31HSCT5O3T6M#X?O3<?O3$:ST4?ST9HS3T5
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8716
MS<6M#X6M3<9N#$:SS=MSUAHTUH5MSX?M#X?O3<?O3-MO45MSUMHTUH5M#X6O3<9N#<9N#<?ST5MSUMHUEH5M#X7NC$?O3<?O3-MST5MST9UUCT5MST5MST5
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8717
MST5MSX7NC$:N31UUEYWVE%ZV51]W%= QT!!HRD!!HRD!!U') ; colorMapFromArray:#[56 150 230 68 158 230 72 156 230 68 150 230 64 144 230 60 138 220 56 132 220 52 126 220 44 120 220 40 114 210 36 108 210 32 102 210 28 96 210 24 90 200 20 84 200 16 78 200 12 72 200 8 66 190 4 64 190 4 56 180 0 50 160 140 208 255 124 194 255 116 186 255 108 178 255 100 170 255 92 162 255 84 154 255 76 144 255 68 136 255 56 128 255 48 118 255 40 110 255 32 100 255 20 92 255 12 82 255 4 74 255 4 64 240 0 50 170 76 164 240 132 200 255 132 202 255 88 158 255 80 150 255 72 142 255 64 132 255 56 124 255 44 116 255 36 106 255 28 98 255 4 68 250 0 50 180 92 168 240 255 255 255 244 244 250 240 242 250 240 240 250 240 238 240 236 236 240 236 234 240 240 240 240 28 72 180 108 176 240 0 0 0 56 94 180 104 174 230 104 172 230 56 92 180 104 170 230 52 90 180 104 168 230 100 166 230 52 88 180 100 164 230 100 162 230 100 160 230 96 160 230 232 232 240 220 220 230 96 158 220 220 218 230 96 154 220 252 250 250 212 212 220 52 128 210 12 60 170 88 146 220 80 136 210 80 132 210 76 126 200 72 122 200 68 118 200 68 114 190 64 108 190 60 104 190 60 100 180 56 96 180]; mask:((Depth1Image new) width:21; height:23; bits:(ByteArray fromPackedString:'???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8???8') ; yourself); yourself]
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8718
!
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  8719
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8720
printer22x22Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
  8721
    <resource:#programImage>
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8722
    ^ self printer22x22Icon1
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8723
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8724
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8725
printer22x22Icon1
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8726
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8727
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8728
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8729
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8730
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8731
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8732
     self printer22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8733
     ImageEditor openOnClass:self andSelector:#printer22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8734
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8735
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8736
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon1'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8737
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8738
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8739
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8740
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8741
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8742
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8743
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8744
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8745
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8746
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@@@@@@@@@@D@@@@@@@@@@@@@@@@A@@@@@@@@@@@A@@@A@PDA@@@A@PD@@P@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8747
@@@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
  8748
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
  8749
APTEAPTE@ HBAPTAAPTA@@@AAPTEAPTEAPTEAPTEAPTE@PTA@@@@@PTEAPTEAPTEAPTEAPTEAPDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8750
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8751
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8752
                colorMapFromArray:#[ 255 255 255 0 0 0 255 255 0 129 129 129 194 194 194 105 133 190 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8753
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8754
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8755
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8756
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8757
                                        fromPackedString:'@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8758
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8759
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8760
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8761
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8762
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8763
printer22x22Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8764
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8765
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8766
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8767
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8768
     the ImageEditor may not be able to read the specification."
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8769
    "
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8770
     self defaultIcon inspect
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8771
     ImageEditor openOnClass:self andSelector:#defaultIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8772
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8773
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8774
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class printer22x22Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8775
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8776
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8777
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8778
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8779
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8780
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8781
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8782
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8783
                            fromPackedString:'
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8784
QDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ@@@@@@@@@ADQDQ@QDQDQDQDADQDQDAD@@AD@@PDQDQD
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8785
ADQDQDQDPDQDQDPD@@P@P@P@@DQDPDQDQDQDQ@DAADP@@@@@@@@@DA@DPADQDQDQDQDA@0Q@@@@@@@@@@@@3AD@3L3L3L2H#LCADPCL3L3L3H"L0ADQ@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8786
@@@@@@ADQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDPb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8787
                colorMapFromArray:#[ 0 0 0 194 194 194 255 255 0 105 133 190 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8788
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8789
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8790
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8791
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8792
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@??0A?? A?? C??@C??0G??8O??8_??8_??8_??0_?? _??@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8793
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8794
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8795
        ]
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8796
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
  8797
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8798
reload22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8799
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8800
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8801
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8802
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8803
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8804
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8805
     self reload22x22Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8806
     ImageEditor openOnClass:self andSelector:#reload22x22Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8807
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8808
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class reload22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8809
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8810
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8811
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8812
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8813
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8814
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8815
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8816
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8817
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8818
@@@@@@@@@@@UT@@@@@EU@D@@@@UT@@@H@AUP@@@@@EU@@@@@@EU@@@@E@EU@@@@@@EU@@@@@AUUT@@@@@UUP@@@@@EU@@@@@@AT@@@@@@@P@@@@H@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8819
@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@G@@@@@@@J@@@@@@@I@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8820
                colorMapFromArray:#[ 0 0 0 0 129 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8821
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8822
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8823
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8824
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8825
                                        fromPackedString:'@G<C@_?C@??#A?C3C>@;G<@KG<@CG<@C??$C_?NCO>_CG<?#C9?3A3?;@''??@@?#P@?C\A?COC>CG?<CC?8C@? C');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8826
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8827
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8828
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8829
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8830
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8831
removeTab22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8832
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8833
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8834
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8835
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8836
     the ImageEditor may not be able to read the specification."
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8837
    "
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8838
     self close22x22Icon inspect
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8839
     ImageEditor openOnClass:self andSelector:#close22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8840
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8841
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8842
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8843
        constantNamed:#'GenericToolbarIconLibrary class removeTab22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8844
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8845
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8846
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8847
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8848
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8849
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8850
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8851
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8852
                            fromPackedString:'
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8853
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8854
@@@@@ 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
  8855
@@@@@@HB@ @B@ H@@@@@@@@@@@@@@@@@@@@@@ HB@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ H@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ @@@@@@@@@@@@@@@@@@
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8856
@@@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
  8857
@@@@@@@@@@@B@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8858
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8859
                colorMapFromArray:#[ 255 255 255 0 0 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8860
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8861
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8862
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8863
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8864
                                        fromPackedString:'@@@@@@@@@@@@@@@@A C@A0G@@8N@@\\@@N8@@G0@@C B@G0@@N8@@\\@@8N@A0G@A C@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8865
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8866
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8867
        ]
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8868
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
  8869
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8870
right22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8871
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8872
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8873
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8874
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8875
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8876
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8877
     self right22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8878
     ImageEditor openOnClass:self andSelector:#right22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8879
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8880
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8881
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class right22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8882
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8883
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8884
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8885
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8886
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8887
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8888
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8889
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8890
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8891
UUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUIUPUUUUUJUPUUUUUJ%P@@@@@J)PJ******PJ****** J******PJ*****)PEUUUUZ%PUUUUUJUP
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8892
UUUUUIUPUUUUUEUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8893
                colorMapFromArray:#[ 255 255 255 0 0 0 0 127 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8894
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8895
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8896
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8897
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8898
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@F@@@G@@@G ???0???8???<???<???8???0@@G @@G@@@F@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8899
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8900
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8901
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8902
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8903
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8904
save22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8905
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8906
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8907
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8908
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8909
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8910
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8911
     self save22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8912
     ImageEditor openOnClass:self andSelector:#save22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8913
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8914
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8915
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class save22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8916
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8917
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8918
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8919
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8920
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8921
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8922
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8923
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8924
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8925
AL3L3L@PM3L3L0?PML3L3L=PM3L3L0=PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM3L3L0?PML3L3L?PM@@@@@?PO??????PO??????PO??????P
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8926
O=UUUU?PO=???[?PO=5O?Z?PO=6O?Z?PO=6O?Z?PO=0O?Z?P5U***U5P');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8927
                colorMapFromArray:#[ 255 255 255 0 0 0 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8928
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8929
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8930
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8931
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8932
                                        fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8933
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8934
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8935
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8936
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8937
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8938
saveAsMethod22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8939
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8940
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8941
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8942
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8943
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8944
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8945
     self saveAsMethod22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8946
     ImageEditor openOnClass:self andSelector:#saveAsMethod22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8947
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8948
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8949
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8950
        constantNamed:#'GenericToolbarIconLibrary class saveAsMethod22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8951
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8952
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8953
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8954
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8955
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8956
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8957
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8958
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8959
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8960
@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
  8961
LDP0LDP0LCL1@1LCQ@LCQ@L@L3DCDC@0LC@0LC@3LPLP@@@@@@@@@CL1@3L3L3L3L3L3L3DCL3L3L3L3L3L3LPL3L3L3L3L3L3L1@3L1DQDQDQDQL3DCL3D3
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8962
L3L3LRL3LPL3LSDPL3L1H#L1@3L1LR@3L3D"L3DCL3D1HCL3LRH3LPL3LS@@L3L1H#L1LQDQH"H"H"DQLQDb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8963
                colorMapFromArray:#[ 255 255 255 0 0 0 127 127 127 170 170 170 127 127 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8964
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8965
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8966
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8967
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8968
                                        fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???8');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8969
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8970
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  8971
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8972
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  8973
5141
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8974
scrollLock22x22Icon
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8975
    "This resource specification was automatically generated
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8976
     by the ImageEditor of ST/X."
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8977
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8978
    "Do not manually edit this!! If it is corrupted,
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8979
     the ImageEditor may not be able to read the specification."
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8980
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8981
    "
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8982
     self scrollLock22x22Icon inspect
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8983
     ImageEditor openOnClass:self andSelector:#scrollLock22x22Icon
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8984
     Icon flushCachedIcons
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8985
    "
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8986
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8987
    <resource: #image>
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8988
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8989
    ^Icon
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8990
        constantNamed:'GenericToolbarIconLibrary scrollLock22x22Icon'
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8991
        ifAbsentPut:[(Depth8Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8992
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8993
@@@@@PDA@PDA@PDA@PDA@PD@@@@@@@@@@@HC@0LC@0LC@0DC@0LA@@@@@@@@@@@B@0PDA@PDA@PE@0XGAP@@@@@@@@@@B@LIBP$IBP$IB L@@@(@@@@@@@@@
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8994
@@,CC@0LC@0LC@4MCP4M@@@@@@@@@@@NC0@@@@@LC@0PDQDQD@@@@@@@@@@@@AHSD1PUEP0LE PDAAX@@@@@@@@@@A\XFQ$XF!!TU@A,DA@P[@@@@@@@@@@@\
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8995
GQ8^G10 G!!T!!@0$IHP@@@@@@@@@"H1H"H!!H#H!!8^IBP$IBP@@@@@@@@@IRX''JB$*J2T^G"0C@0L-@@@@@@@@@B8*K3@1K2,.G!!82@0XGL @@@@@@@@@3J#P5
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8996
MSP+L18^M L^G#X@@@@@@@@@M3 9N#(9NC\;OC46M#X6@@@@@@@@@BH#H2L#H2L"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8997
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[240 240 248 175 152 96 160 152 104 208 232 248 224 232 248 144 144 120 79 104 160 191 200 216 159 144 104 239 232 248 127 128 128 175 168 136 239 240 248 111 112 144 191 184 168 224 240 248 111 112 128 160 176 200 207 176 136 192 152 56 208 192 160 240 248 248 144 152 168 192 168 120 207 160 64 240 232 224 208 192 144 143 152 168 191 144 40 223 208 168 255 248 248 223 208 184 224 224 208 128 144 168 192 176 128 175 120 24 127 136 168 176 144 40 255 224 136 255 240 208 223 192 136 240 224 176 255 240 200 255 224 160 112 136 168 112 128 168 176 136 24 255 240 184 175 136 56 191 152 64 111 128 168 176 128 24 224 208 144 127 88 16 96 120 168 175 128 24 240 216 136 255 224 144 223 184 104 175 184 208 159 168 200 128 144 184]; mask:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'@@@C@@@C@@@C@@@CA??#A??#A??#A??#A??#A??#@??#A??#A??#C??#C??#C??#C??#C??#C?@C@@@C@@@C@@@C') ; yourself); yourself]
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8998
!
ec64d377a9c5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
  8999
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9000
start22x22Icon
5375
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9001
    "This resource specification was automatically generated
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9002
     by the ImageEditor of ST/X."
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9003
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9004
    "Do not manually edit this!! If it is corrupted,
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9005
     the ImageEditor may not be able to read the specification."
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9006
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9007
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9008
     self start22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9009
     ImageEditor openOnClass:self andSelector:#start22x22Icon
5375
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9010
     Icon flushCachedIcons
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9011
    "
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9012
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9013
    <resource: #image>
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9014
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9015
    ^Icon
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9016
        constantNamed:'GenericToolbarIconLibrary start22x22Icon'
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9017
        ifAbsentPut:[(Depth4Image new) width:22; height:22; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9018
@@@@@@@@@@@@@@@@@N8@@@@@@@@@@@@N<^@@@@@@@@@@@@;.;.;.;.@@@@@@C/G @@@@8^@@@@@N<^@@@@@A@@@@@@;18@@@@@D@@@@@C.;.;.; @P@@@@@N
5375
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9019
<^@@@@@@@@@@@@;18@@@C!!G.@@@@C/G @@@@G>@@@@@N;.;.; @_8@@@@@;18@@@@A? @@@@C/G @@@@G>@@@@@N<^@@@@@_8@@@@@;.;.;.@A? @@@@C/GJ
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9020
@@@@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:((ImageMask new) width:22; height:22; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9021
@@@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
  9022
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9023
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9024
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9025
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5375
7ecf6ed7ef95 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5368
diff changeset
  9026
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9027
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9028
4292
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9029
startNewSystemBrowserIcon22x22
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9030
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9031
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9032
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9033
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9034
     the ImageEditor may not be able to read the specification."
4292
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9035
    "
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9036
     self startNewSystemBrowserIcon22x22 inspect
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9037
     ImageEditor openOnClass:self andSelector:#startNewSystemBrowserIcon22x22
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9038
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9039
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9040
    ^ Icon 
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  9041
        constantNamed:'GenericToolbarIconLibrary startNewSystemBrowserIcon22x22'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9042
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9043
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9044
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9045
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9046
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9047
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9048
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9049
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9050
                            fromPackedString:'
4292
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9051
NP(JB (JB (JB (9@@@@@@@@@@@@@@*Q$YFQ$YFQ$YFQB @@@@@@@@@@@@@J$V1,[F1,[F1,[@(@@@@@@@@@@@@@B)E,[F1,[F1,[F0J@@@@@@@@@@@@@@*Q
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9052
[F1,[F1,[F1,B @@@@@@@@@@@@@JNQHRD!!HRD!!HRD (@@@@@@@@@@@@@NP(JB (JB (JB (9@@@@@@@@@@@@@@@@@@@@@@@@QATTIR)P@@@@@@@@@@@@@@@@
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9053
@@@@F2]HVEQ@JBI''@@@@@@@@@@@@@@@@J6&Q XFA UT)FF\JB (JB @@@@@@KFI[B0,H@ LGA TU_9FQ$S$@@@@@L5I1V0,CB@XMCPXMAQLA@PDR@@@@@B1Y
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9054
VT8KB@4NC 8NCPTW@PDAD @@@@@,Y$-CB0XMC0<OC08EGQHRD!!H@@@@@KE%UP0,LC!!DQDQ@OAQ4JB (J@@@@@B5IVT4KB0,KB0,KB0,T@@@@@@@@@@AEMU%M
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9055
B0,KB0,KB0-GF (JB (@@@@@@A=@ST5MS$9NS$9+GF^Q$YD9@@@@@@@$G4%&Y&)1]XV@L#1/[6=/D @@$HI]H1X_M%M&Z&MQL#6B[6=/[1H@#86LWBD@@BTY
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9056
G#P2O%^B[6=/[6<R@@BL[P@@@@@@@@@/K1HRD!!HRD!!HRD @a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9057
                colorMapFromArray:#[ 0 0 0 32 223 32 40 255 124 50 255 112 51 255 109 54 229 139 62 255 87 62 255 88 62 255 91 62 255 136 64 64 64 73 255 115 83 255 62 91 255 73 94 255 74 101 255 84 105 255 85 112 255 96 127 127 127 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 143 175 208 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 159 192 239 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 160 208 255 160 223 255 170 170 170 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 175 223 255 176 175 207 176 176 176 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 176 223 255 176 224 255 176 239 255 183 183 183 190 190 190 191 175 143 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 239 255 191 240 255 192 192 208 192 239 255 192 240 255 192 255 255 196 196 196 207 143 95 207 207 191 207 207 207 207 207 208 207 207 223 207 208 223 207 223 239 207 239 240 207 239 255 207 240 255 207 255 255 208 208 223 208 208 224 208 224 239 208 255 255 217 217 217 223 32 32 223 128 63 223 192 255 223 223 32 223 223 224 223 255 255 224 224 224 224 224 239 224 239 240 224 255 255 231 207 255 231 208 255 238 191 255 238 192 255 239 159 232 239 191 255 239 223 255 239 224 255 239 239 224 239 239 239 239 239 240 239 255 255 240 207 144 240 239 223 240 240 239 240 255 255 246 176 255 247 175 255 247 207 255 247 239 255 254 160 255 254 191 255 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9058
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9059
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9060
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9061
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9062
                                        fromPackedString:'??@@??@@??@@??@@??@@??@@??@@@O0@@_<@@??<A??<C??<C??<C??<C??<C??@C??<A??<A??<O??<_O?<LA?<');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9063
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9064
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9065
        ]
4292
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9066
!
dbf738aac550 added: #startNewSystemBrowserIcon22x22
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4290
diff changeset
  9067
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9068
stop22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9069
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9070
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9071
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9072
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9073
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9074
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9075
     self stop22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9076
     ImageEditor openOnClass:self andSelector:#stop22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9077
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9078
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9079
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class stop22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9080
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9081
            (Depth1Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9082
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9083
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9084
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9085
                bitsPerSample:(#( 1 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9086
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9087
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9088
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A?>@A?>@A?>@A?>@A?>@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9089
                colorMapFromArray:#[ 255 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9090
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9091
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9092
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9093
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9094
                                        fromPackedString:'@@@@@?<@A?>@C??@G?? O??0_??8_??8_??8_??8_??8_??8_??8_??8_??8O??0G?? C??@A?>@@?<@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9095
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9096
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9097
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9098
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9099
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9100
up22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9101
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9102
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9103
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9104
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9105
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9106
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9107
     self up22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9108
     ImageEditor openOnClass:self andSelector:#up22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9109
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9110
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9111
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class up22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9112
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9113
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9114
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9115
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9116
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9117
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9118
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9119
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9120
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9121
UUURUUUPUUUJ%UUPUUT*)UUPUUR**UUPUUJ**%UPUT***)UPUVU*%UUPUUT*%UUPUUT*%UUP_UT*%UUP_UT*%UUP_5T*%UUPWUT*%UUPWWT*%UUPWUT*%UUP
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9122
UUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUT*%UUPUUTUUUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9123
                colorMapFromArray:#[ 255 255 255 0 0 0 0 127 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9124
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9125
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9126
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9127
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9128
                                        fromPackedString:'@C@@@G @@O0@@_8@@?<@A?>@A?>@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@@O0@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9129
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9130
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9131
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9132
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9133
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9134
upRight22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9135
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9136
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9137
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9138
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9139
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9140
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9141
     self upRight22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9142
     ImageEditor openOnClass:self andSelector:#upRight22x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9143
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9144
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9145
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class upRight22x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9146
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9147
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9148
                width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9149
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9150
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9151
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9152
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9153
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9154
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9155
UUUUT%UPUUUUT)UPUUUUT*UPP@@@@*%PR*****)PR******PR*****)PR*****%PR*UUU*UPR*UUT)UPR*UUT%UPR*UUTUUPR*UUUUUPR*UUUUUPR*UUUUUP
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9156
R*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPR*UUUUUPYU%UUUUPUUUUUUUP');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9157
                colorMapFromArray:#[ 255 255 255 0 0 0 0 127 0 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9158
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9159
                            width:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9160
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9161
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9162
                                        fromPackedString:'@@L@@@N@@@O@_?? _??0_??8_??8_??0_?? _ O@_ N@_ L@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@_ @@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9163
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9164
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9165
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9166
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9167
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9168
!GenericToolbarIconLibrary class methodsFor:'image specs-24x24'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9169
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9170
baseImage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9171
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9172
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9173
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9174
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9175
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9176
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9177
     self baseImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9178
     ImageEditor openOnClass:self andSelector:#baseImage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9179
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9180
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9181
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9182
        constantNamed:#'GenericToolbarIconLibrary class baseImage24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9183
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9184
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9185
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9186
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9187
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9188
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9189
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9190
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9191
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9192
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  9193
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
  9194
A7\3LQE&Y&XFX@@@A7\3LQE&Y&XFX@@@A7\3LQE&Y&XF@@@@BY&H!!DQ&Y&XF@@@@BY&H!!DQ&Y&XF@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9195
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9196
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9197
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9198
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9199
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9200
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9201
                                        fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9202
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9203
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9204
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9205
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9206
    "Modified: / 06-02-2007 / 19:41:08 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9207
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9208
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9209
baseMenu24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9210
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9211
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9212
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9213
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9214
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9215
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9216
     self baseMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9217
     ImageEditor openOnClass:self andSelector:#baseMenu24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9218
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9219
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9220
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class baseMenu24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9221
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9222
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9223
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9224
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9225
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9226
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9227
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9228
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9229
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9230
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  9231
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
  9232
@QDQDQDQDQTE@@@@@RH"H"H"H"TE@@@@@R]2I7H'']2TE@@@@@RH"H"H"H"TE@@@@AUUUUUUUUUTE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9233
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9234
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9235
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9236
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9237
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9238
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9239
                                        fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9240
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9241
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9242
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9243
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9244
    "Modified: / 06-02-2007 / 19:41:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9245
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9246
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9247
baseWindowSpec24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9248
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9249
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9250
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9251
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9252
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9253
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9254
     self baseWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9255
     ImageEditor openOnClass:self andSelector:#baseWindowSpec24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9256
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9257
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9258
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9259
        constantNamed:#'GenericToolbarIconLibrary class baseWindowSpec24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9260
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9261
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9262
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9263
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9264
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9265
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9266
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9267
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9268
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9269
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9270
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
  9271
AUUUT T"H%H@@@@@ARH"T T"H%H@@@@@ARH"T T"H%H@@@@@AUUUT UUUUH@@@@@@"H"H H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9272
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9273
                colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9274
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9275
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9276
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9277
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9278
                                        fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9279
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9280
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9281
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9282
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9283
    "Modified: / 06-02-2007 / 19:41:03 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9284
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9285
5254
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9286
bigCrossHairIcon
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9287
    "This resource specification was automatically generated
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9288
     by the ImageEditor of ST/X."
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9289
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9290
    "Do not manually edit this!! If it is corrupted,
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9291
     the ImageEditor may not be able to read the specification."
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9292
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9293
    "
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9294
     self bigCrossHairIcon inspect
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9295
     ImageEditor openOnClass:self andSelector:#bigCrossHairIcon
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9296
     Icon flushCachedIcons
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9297
    "
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9298
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9299
    <resource: #image>
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9300
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9301
    ^Icon
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9302
        constantNamed:'GenericToolbarIconLibrary bigCrossHairIcon'
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9303
        ifAbsentPut:[(Depth1Image new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@F0@@XL@@>>@A8O@A>?@B,Z B(J @@@@B(J B,Z A>?@A8O@@>>@@XL@@F0@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[255 255 255 0 0 0]; mask:((Depth1Image new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@G0@@_<@@?>@A??@C?? C?? G??0G<_0G<_0G<_0G??0C?? C?? A??@@?>@@_<@@G0@@@@@@@@@@@@@@@@@') ; yourself); yourself]
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9304
!
b0b2afaa971b class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
  9305
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9306
bugReporter24x24Icon
5377
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9307
    "This resource specification was automatically generated
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9308
     by the ImageEditor of ST/X."
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9309
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9310
    "Do not manually edit this!! If it is corrupted,
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9311
     the ImageEditor may not be able to read the specification."
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9312
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9313
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9314
     self bugReporter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9315
     ImageEditor openOnClass:self andSelector:#bugReporter24x24Icon
5377
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9316
     Icon flushCachedIcons
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9317
    "
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9318
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9319
    <resource: #image>
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9320
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9321
    ^Icon
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9322
        constantNamed:'GenericToolbarIconLibrary bugReporter24x24Icon'
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9323
        ifAbsentPut:[(Depth4Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9324
@@@@@@@@@@@@@@@@@@@@@QDQDQDQDP@@@@@@@@@@@@@@@P@@@@@ADQDQDQDQ@P@@@@@@@@@@@@@A@P@@@@QDQDQDQDPA@P@@@@@@@@@@@@PA@P@@ADQDQDP@
5377
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9325
Q@PA@@@@AADQQ@QD@@P@@@@@ADQDQD@DP@@@@@@@ADEAPTPD@BH"H @@ADPTD@P@H"L3L2@@ADEA@"@"H3L3L3H@@@@BH3LBL3L3L3L @@@BH3LBL3L3L3LJ
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9326
@@@@H3L@@@@@@@@@@@@BH3LBH3L3L3L @@@@H#HBH#L3L3H @@@@@@@@H"H"H"@@@@@@@@@@@@H"H @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5377
b1076568773e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5375
diff changeset
  9327
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 170 170 170 128 0 0 255 0 0 255 255 255]; mask:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@??8@??8C??8C??8O??8O??8???8???8???<???0???8???<???>???>???>A??>_??>O??>@[?<@B?8@F_0@H1,@C@0@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9328
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9329
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9330
changesBrowser24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9331
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9332
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9333
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9334
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9335
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9336
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9337
     self changesBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9338
     ImageEditor openOnClass:self andSelector:#changesBrowser24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9339
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9340
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9341
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9342
        constantNamed:#'GenericToolbarIconLibrary class changesBrowser24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9343
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9344
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9345
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9346
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9347
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9348
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9349
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9350
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9351
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9352
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C????@@@@@@@C@@@????3@@@@@@@3@@EUUUT3@@@@@@D3@AUUUUD3@A?5UUD0@AUUUUD0@A]7UUD@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9353
AW]7UD@@A]7]U@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9354
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9355
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9356
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9357
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9358
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9359
                                        fromPackedString:'@@@@@@@@@@@@@@@@@_?<@_?<A??<A??<G??<G??<_??<_??<_??<_??0_??0_??@_??@_?<@_?<@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9360
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9361
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9362
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9363
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9364
    "Modified: / 06-02-2007 / 19:40:59 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9365
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9366
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9367
class24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9368
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9369
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9370
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9371
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9372
     the ImageEditor may not be able to read the specification."
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9373
    "
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9374
     self class24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9375
     ImageEditor openOnClass:self andSelector:#class24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9376
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9377
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9378
    ^ Icon constantNamed:'GenericToolbarIconLibrary class24x24Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9379
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9380
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9381
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9382
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9383
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9384
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9385
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9386
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9387
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9388
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9389
DQDQDQDQDQDQDQDQDQDQDQDQDQDQL"H"H"H"LQDQDQDQIDQDQDQCHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQH1DQDQDQHQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9390
DQDQL"H"H"H"LQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9391
DQDQDQDQDQDQDQDQDQDQDQDQ');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9392
                colorMapFromArray:#[ 32 223 32 127 127 127 64 64 64 170 170 170 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9393
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9394
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9395
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9396
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9397
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?? @?? @?? @?? @?? @?? @?? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9398
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9399
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9400
        ]
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9401
!
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9402
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9403
dart24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9404
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9405
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9406
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9407
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9408
     the ImageEditor may not be able to read the specification."
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9409
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9410
     self dart24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9411
     ImageEditor openOnClass:self andSelector:#dart24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9412
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9413
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9414
    ^ Icon constantNamed:'GenericToolbarIconLibrary dart24x24Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9415
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9416
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9417
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9418
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9419
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9420
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9421
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9422
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9423
                            fromPackedString:'
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9424
@@@@@@@@@@@@@@@A@ L@@@@@@@@@@@@@@@@@@@@@@@@@@@PEA XG@@@@@@@@@@@@@@@@@@@@@@@HBPXJB0,JC@@@@@@@@@@@@@@@@@@@@@4NC0XKB0,KA L@
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9425
@@@@@@@@@@@@@@@@D@(JB0,KB0,KDP<R@@@@@@@@@@@@@@@SEATVEQTUE!!TUEQ\XFP@@@@@@@@@@@A([GA4^G!!8^G!!8^G!!8^G2@@@@@@@@@@@BD"H2P^IRT%
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9426
IRT%IRT%I"\(@@@@@@@@JRD"B0,$G"T%IRT%IRT%IR(+K@@@@@@-K"T"B0,KIA8%IRT%IRT%IR<*J" @@@@!!IRT0H0,KB2P^IRT%IRT%IRX*J"\1@CH.IRT"
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9427
B0,KB0,$G"T%IRT%IRT*J"(3MBT%IQ8"B0,KB0,KIA8%IRT%IRT/J2(,MRT%IQ8"B0,KB0,KB2P^IRT%IRT.J"(3@CX.IQ8"H0,KB0,KB0,$G"T%IRT%J"(3
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9428
@@@7HRT"B0,KB0,KB0,KIA8%IRT%K2,3@@@@NC$"B0XKB0,KB0,KB2P^IRT%K"(3@@@@@B4:B XFA ,KB0,FB0,$G"T%IR(,@@@@@@@;OC4QA XFA XKA ,K
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9429
O!!8%K"(*@@@@@@@@O1@POC4QA XKB0XKB38^J$AA@@@@@@@@@@$PBP$PODHFA XKA )CQDT@@@@@@@@@@@@IDA@PBP%FATHFQ4!!I@@@@@@@@@@@@@@@@BQ@P
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9430
DA@IBP$RDA@;@@@@@@@@@@@@@@@@@D(PDA@PDA@ID@$@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9431
                colorMapFromArray:#[ 0 0 0 176 216 240 48 208 200 15 216 184 144 216 224 48 216 200 0 208 184 31 216 200 191 216 240 95 216 208 0 216 184 0 208 176 16 216 184 143 216 224 32 216 200 0 224 200 80 216 208 15 208 184 79 216 200 47 176 200 0 168 208 0 152 200 0 152 184 0 160 200 16 168 200 112 192 240 95 160 216 0 192 208 15 168 184 0 112 200 0 120 200 0 160 240 31 176 240 0 128 208 0 184 184 0 216 176 0 160 184 0 128 200 0 144 208 0 168 240 15 168 240 32 144 208 0 160 224 0 168 224 15 168 224 95 168 216 0 136 208 0 152 216 0 176 184 16 168 224 47 144 208 15 160 224 47 152 208 15 128 200 31 136 208 16 136 208 16 144 208 0 136 216 31 184 200 160 224 224 63 216 200 32 208 184 0 168 184 111 216 208 0 176 240 31 168 224 31 208 184 15 176 200 79 184 224 143 208 240 79 216 208 16 208 184 47 216 200 112 224 216 96 216 208 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9432
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9433
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9434
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9435
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9436
                                        fromPackedString:'@A0@@C8@@O<@@_>@@??@A?? C??0C??8G??<O??>O???_???????????_???O???G???C???A???@???@_?>@O?8@G?8@C?0');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9437
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9438
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9439
        ]
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9440
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
  9441
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9442
deleteClass24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9443
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9444
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9445
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9446
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9447
     the ImageEditor may not be able to read the specification."
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9448
    "
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9449
     self deleteClass24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9450
     ImageEditor openOnClass:self andSelector:#deleteClass24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9451
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9452
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  9453
    ^ Icon constantNamed:'GenericToolbarIconLibrary deleteClass24x24Icon'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9454
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9455
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9456
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9457
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9458
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9459
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9460
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9461
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9462
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9463
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH @@@@@B@@@@@@@BH"@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9464
@@H @@@@@@@@H"H@@BH@@@@@@@@@E"H&X"Y&D@@@@@@@X@H"H @AX@@@@@@@XDP"IDQCX@@@@@@@XDH"H$QCX@@@@@@@XBH$P"QCX@@@@@@@X"H3L2H3X@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9465
@@@@H"Y&Y&I6D@@@@@@BH"@@@@\''@@@@@@@BH @@@@A7@@@@@@@@H@@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9466
@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9467
                colorMapFromArray:#[ 255 255 255 170 170 170 255 0 0 127 127 127 223 223 32 240 240 240 64 64 64 255 128 128 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9468
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9469
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9470
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9471
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9472
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@A0A@A8F@@<L@@?? @?? @?? @?? @?? @?? @?? A8G@A0C@@ A@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9473
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9474
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9475
        ]
4309
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9476
!
Claus Gittinger <cg@exept.de>
parents: 4308
diff changeset
  9477
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9478
deleteClassFromStart24x24Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9479
    "This resource specification was automatically generated
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9480
     by the ImageEditor of ST/X."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9481
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9482
    "Do not manually edit this!! If it is corrupted,
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9483
     the ImageEditor may not be able to read the specification."
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9484
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9485
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9486
     self deleteClassFromStart24x24Icon inspect
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9487
     ImageEditor openOnClass:self andSelector:#deleteClassFromStart24x24Icon
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9488
     Icon flushCachedIcons
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9489
    "
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9490
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9491
    <resource: #image>
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9492
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9493
    ^Icon
6006
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9494
        constantNamed:'GenericToolbarIconLibrary class deleteClassFromStart24x24Icon'
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9495
        ifAbsentPut:[(Depth4Image width:24 height:24) bits:(ByteArray fromPackedString:'
6006
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9496
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@@@@@@@@@@@@@@"@@@@@@@@@@@@@@H"H@@@@@@@@@@@@@H"H@@@BH @@@@@B@@@@@@@BH"@@
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9497
@@H @@@@@@@@H"H@@BH@@@"@@@@@E"H&X"Y&D@"@@@@@X@H"H @AXH"H@@@@XDP"IDQCXH"H@@@@XDH"H$QCX@@@@@@@XBH$P"QCX@@@@@@@X"H3L2H3X@@@
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9498
@@@@H"Y&Y&I6D@@@@@@BH"@@@@\''@@@@@@@BH @@@@A7@@@@@@@@H@@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
6006
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9499
@@@@@@@@@@@@@@@@@@@@@@@@')
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9500
            colorMapFromArray:#[255 255 255 170 170 170 255 0 0 127 127 127 223 223 32 240 240 240 64 64 64 255 128 128 0 0 0]
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9501
            mask:((ImageMask width:24 height:24) bits:(ByteArray fromPackedString:'@@@@@@@@@@@F@@@F@@@O@@@OA0A@A8F@@<LF@??&@??/@??/@?? @?? @?? @?? A8G@A0C@@ A@@@@@@@@@@@@@@@@@@@@@'); yourself); yourself]
5703
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9502
!
ea9c332fdb45 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 5672
diff changeset
  9503
4927
2240bd955978 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4780
diff changeset
  9504
deleteClassToEnd24x24Icon
6006
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9505
    "This resource specification was automatically generated
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9506
     by the ImageEditor of ST/X."
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9507
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9508
    "Do not manually edit this!! If it is corrupted,
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9509
     the ImageEditor may not be able to read the specification."
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9510
4927
2240bd955978 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4780
diff changeset
  9511
    "
2240bd955978 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4780
diff changeset
  9512
     self deleteClassToEnd24x24Icon inspect
2240bd955978 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4780
diff changeset
  9513
     ImageEditor openOnClass:self andSelector:#deleteClassToEnd24x24Icon
6006
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9514
     Icon flushCachedIcons
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9515
    "
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9516
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9517
    <resource: #image>
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9518
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9519
    ^Icon
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9520
        constantNamed:'GenericToolbarIconLibrary class deleteClassToEnd24x24Icon'
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9521
        ifAbsentPut:[(Depth4Image width:24 height:24) bits:(ByteArray fromPackedString:'
4927
2240bd955978 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4780
diff changeset
  9522
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH @@@@@B@@@@@@@BH"@@
6006
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9523
@@H @@@@@@@@H"H@@BH@@@@@@@@@E"H&X"Y&D@@@@@@@X@H"H @AX@@@@@@@XDP"IDQCX@@@@@@@XDH"H$QCXH"H@@@@XBH$P"QCXH"H@@@@X"H3L2H3X@"@
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9524
@@@@H"Y&Y&I6D@"@@@@BH"@@@@\''@@@@@@@BH @@@@A7@@@@@@@@H@@@@@@B@H"H@@@@@@@@@@@@@H"H@@@@@@@@@@@@@@"@@@@@@@@@@@@@@@"@@@@@@@@@
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9525
@@@@@@@@@@@@@@@@@@@@@@@@')
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9526
            colorMapFromArray:#[255 255 255 170 170 170 255 0 0 127 127 127 223 223 32 240 240 240 64 64 64 255 128 128 0 0 0]
92827801f6ed #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6005
diff changeset
  9527
            mask:((ImageMask width:24 height:24) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@A0A@A8F@@<L@@?? @?? @?? @??/@??/@??&@??&A8G@A0C@@ AO@@@O@@@F@@@F@@@@@@@@'); yourself); yourself]
4927
2240bd955978 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4780
diff changeset
  9528
!
2240bd955978 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4780
diff changeset
  9529
6176
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9530
deleteMethod24x24Icon
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9531
    "This resource specification was automatically generated
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9532
     by the ImageEditor of ST/X."
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9533
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9534
    "Do not manually edit this!! If it is corrupted,
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9535
     the ImageEditor may not be able to read the specification."
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9536
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9537
    "
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9538
     self deleteMethod24x24Icon inspect
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9539
     ImageEditor openOnClass:self andSelector:#deleteMethod24x24Icon
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9540
     Icon flushCachedIcons
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9541
    "
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9542
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9543
    <resource: #image>
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9544
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9545
    ^Icon
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9546
        constantNamed:'GenericToolbarIconLibrary class deleteMethod24x24Icon'
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9547
        ifAbsentPut:[(Depth4Image width:24 height:24) bits:(ByteArray fromPackedString:'
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9548
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH @@@@@B@@@@@@@BH"@@
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9549
@@H @@@@@@@@H"H@@BH@@@@@@@@@E"H&X"Y&D@@@@@@@X@H"H @AX@@@@@@@XDP"IDQCX@@@@@@@XDH"H$QCX@@@@@@@XBH$P"QCX@@@@@@@X"H3L2H3X@@@
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9550
@@@@H"Y&Y&I6D@@@@@@BH"@@@@\''@@@@@@@BH @@@@A7@@@@@@@@H@@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9551
@@@@@@@@@@@@@@@@@@@@@@@@')
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9552
            colorMapFromArray:#[255 255 255 170 170 170 255 0 0 127 127 127 0 255 127 240 240 240 64 64 64 255 128 128]
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9553
            mask:((ImageMask width:24 height:24) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@A0A@A8F@@<L@@?? @?? @?? @?? @?? @?? @?? A8G@A0C@@ A@@@@@@@@@@@@@@@@@@@@@'); yourself); yourself]
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9554
!
7b8ba07cb680 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6175
diff changeset
  9555
6175
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9556
deleteMethodFromStart24x24Icon
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9557
    "This resource specification was automatically generated
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9558
     by the ImageEditor of ST/X."
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9559
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9560
    "Do not manually edit this!! If it is corrupted,
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9561
     the ImageEditor may not be able to read the specification."
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9562
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9563
    "
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9564
     self deleteMethodFromStart24x24Icon inspect
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9565
     ImageEditor openOnClass:self andSelector:#deleteMethodFromStart24x24Icon
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9566
     Icon flushCachedIcons
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9567
    "
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9568
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9569
    <resource: #image>
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9570
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9571
    ^Icon
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9572
        constantNamed:'GenericToolbarIconLibrary class deleteMethodFromStart24x24Icon'
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9573
        ifAbsentPut:[(Depth4Image width:24 height:24) bits:(ByteArray fromPackedString:'
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9574
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"@@@@@@@@@@@@@@@"@@@@@@@@@@@@@@H"H@@@@@@@@@@@@@H"H@@@BH @@@@@B@@@@@@@BH"@@
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9575
@@H @@@@@@@@H"H@@BH@@@"@@@@@E"H&X"Y&D@"@@@@@X@H"H @AXH"H@@@@XDP"IDQCXH"H@@@@XDH"H$QCX@@@@@@@XBH$P"QCX@@@@@@@X"H3L2H3X@@@
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9576
@@@@H"Y&Y&I6D@@@@@@BH"@@@@\''@@@@@@@BH @@@@A7@@@@@@@@H@@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9577
@@@@@@@@@@@@@@@@@@@@@@@@')
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9578
            colorMapFromArray:#[255 255 255 170 170 170 255 0 0 127 127 127 0 255 127 240 240 240 64 64 64 255 128 128 0 0 0]
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9579
            mask:((ImageMask width:24 height:24) bits:(ByteArray fromPackedString:'@@@@@@@@@@@F@@@F@@@O@@@OA0A@A8F@@<LF@??&@??/@??/@?? @?? @?? @?? A8G@A0C@@ A@@@@@@@@@@@@@@@@@@@@@'); yourself); yourself]
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9580
!
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9581
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9582
deleteMethodToEnd24x24Icon
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9583
    "This resource specification was automatically generated
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9584
     by the ImageEditor of ST/X."
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9585
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9586
    "Do not manually edit this!! If it is corrupted,
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9587
     the ImageEditor may not be able to read the specification."
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9588
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9589
    "
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9590
     self deleteMethodToEnd24x24Icon inspect
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9591
     ImageEditor openOnClass:self andSelector:#deleteMethodToEnd24x24Icon
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9592
     Icon flushCachedIcons
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9593
    "
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9594
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9595
    <resource: #image>
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9596
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9597
    ^Icon
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9598
        constantNamed:'GenericToolbarIconLibrary class deleteMethodToEnd24x24Icon'
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9599
        ifAbsentPut:[(Depth4Image width:24 height:24) bits:(ByteArray fromPackedString:'
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9600
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH @@@@@B@@@@@@@BH"@@
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9601
@@H @@@@@@@@H"H@@BH@@@@@@@@@E"H&X"Y&D@@@@@@@X@H"H @AX@@@@@@@XDP"IDQCX@@@@@@@XDH"H$QCXH"H@@@@XBH$P"QCXH"H@@@@X"H3L2H3X@"@
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9602
@@@@H"Y&Y&I6D@"@@@@BH"@@@@\''@@@@@@@BH @@@@A7@@@@@@@@H@@@@@@B@H"H@@@@@@@@@@@@@H"H@@@@@@@@@@@@@@"@@@@@@@@@@@@@@@"@@@@@@@@@
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9603
@@@@@@@@@@@@@@@@@@@@@@@@')
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9604
            colorMapFromArray:#[255 255 255 170 170 170 255 0 0 127 127 127 0 255 127 240 240 240 64 64 64 255 128 128 0 0 0]
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9605
            mask:((ImageMask width:24 height:24) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@A0A@A8F@@<L@@?? @?? @?? @??/@??/@??&@??&A8G@A0C@@ AO@@@O@@@F@@@F@@@@@@@@'); yourself); yourself]
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9606
!
74f6a697ee26 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6166
diff changeset
  9607
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9608
desktop24x24Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9609
    <resource: #programImage>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9610
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9611
    ^self desktop24x24Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9612
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9613
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9614
desktop24x24Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9615
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9616
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9617
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9618
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9619
     the ImageEditor may not be able to read the specification."
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9620
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9621
     self desktop24x24Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9622
     ImageEditor openOnClass:self andSelector:#desktop24x24Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9623
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9624
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9625
    ^ Icon constantNamed:'GenericToolbarIconLibrary class desktop24x24Icon2'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9626
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9627
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9628
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9629
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9630
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9631
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9632
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9633
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9634
                            fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9635
@K^7-;^7-5" (J@&J$EAI*A2KTP@K AD@K^7-;]AI*A2KTP@K AD"BXSD085X3$N@CH2A7-;G!!,[Y:9?*5AP&9.COV>"(#U/@CJ$)WZSSI\JB&@FRYA5#X6M
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9636
^J"(\C&(@G,YRYP"H"H"G0",R$(3R!!0E_S\KV3$7@G-I%BJ2 KIQCB@8HS  H@$IY(E)E :A@A8F%BJ@ F"-HC !!NB@ T%J0&V%)VP9)@A- %2J2ZJ4LNBD!!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9637
HB@MT%J0&V%)#@9)@A- B"I(TP08HRD!!HB@MT%J0&V&\#@9)@F]LB"IQ,S !!HRD!!HBART+B0&V&\E09)@J9L%1>RHBD!!HRD!!HBART+B0&V&DWP9)@G=L%8JU
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9638
HRE*HRD H@5RT+B0T6&D.&1)@G= %@ \OF)"HRD HEIRT+A: Y2D@F2\@J- +:0%R6)"HRD HEIR,KA> XRD@V2D@EA _ET%R6(!!HS8 CUIR,KA> XRD@V2D
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9639
@E@F^J0%R6(!!HR@ T%IR,KA> XRD@ :D@I-II1@P-FH!!HR@ T%J0,G9> XRD@ :D@I.])(=E]8U-[UYVO3<?O2"E!!QDQ@ 8Q@AJ5Q)9B")5_W5=_W4!!HMCP4
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9640
GQ4]K08]@HNFQZLXJ5=.EAPTEK"!!(ZF!!"8&IF :I@HLC\U]@JWN6-+Z6V%)CP4MCEV9.F 9.@F-+Z35T''8]/[:J"\GA[E%&L@A(ZF 8Z@KV5NP:9(E1D@@B:
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9641
KWH&D08NC 8NC 8N@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9642
                colorMapFromArray:#[ 239 239 240 239 239 255 240 240 255 111 112 128 64 112 191 48 112 208 79 112 191 95 111 176 64 112 208 63 127 223 95 128 207 95 144 223 63 112 223 48 112 224 175 176 191 144 160 207 112 159 208 159 175 191 143 144 207 191 191 207 47 63 95 47 48 80 208 208 224 223 224 240 255 208 64 48 95 176 255 255 255 96 127 176 48 111 208 127 143 160 96 112 176 80 127 208 48 112 223 47 111 223 95 128 208 95 144 224 95 160 240 47 96 208 192 207 208 111 144 208 144 160 176 16 143 191 192 192 208 15 127 191 32 48 80 223 223 224 239 240 240 240 255 255 48 111 191 112 143 160 80 111 176 47 111 207 112 128 160 160 175 176 80 128 207 80 144 223 48 111 223 160 175 191 79 128 223 79 143 240 47 96 223 160 175 208 47 112 223 143 159 176 0 175 224 192 192 207 96 176 31 32 48 64 224 224 224 47 128 191 63 143 191 32 80 175 112 128 144 64 111 191 48 111 207 32 96 208 95 127 191 79 128 207 80 143 223 95 159 224 127 143 191 79 127 223 63 127 224 80 159 240 160 176 208 48 96 207 143 159 191 15 159 208 207 208 208 208 223 224 32 47 64 207 208 224 223 223 223 224 224 240 64 127 191 111 127 144 80 127 191 80 143 207 32 111 223 159 175 176 79 127 207 79 143 223 80 144 224 111 127 191 80 128 223 96 160 240 32 96 223 159 175 208 176 176 191 128 159 191 47 63 80 176 191 223 192 207 224 48 111 144 208 208 223 64 80 111 48 111 176 48 96 176 64 111 176 79 128 176 63 111 191 64 127 207 64 143 224 95 112 176 64 112 207 79 128 208 79 143 224 112 128 191 95 143 223 95 159 240 79 127 208 143 159 207 111 175 255 144 160 191 144 144 175 175 191 223 208 223 223 63 79 95 31 112 175 63 64 95 223 223 240 47 96 176 0 0 0 63 144 208 63 96 176 48 96 191 64 127 208 80 112 191 80 127 207 63 112 208 64 128 223 95 127 207 95 127 208 80 144 240 79 144 240 128 144 207 96 160 255 144 159 176 224 48 0 175 176 208 207 207 208 48 64 95 191 192 223 15 160 240 31 79 160 47 95 175 96 144 176 47 96 191 79 127 191 63 127 208 63 112 207 112 143 191 63 111 207 64 127 223 111 128 191 79 112 207 64 128 224 64 112 223 95 128 223 144 160 208 95 143 224 159 160 176 31 47 64 208 208 208 48 63 95 191 192 207 224 239 240 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9643
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9644
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9645
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9646
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9647
                                        fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9648
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9649
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9650
        ]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9651
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
  9652
5016
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9653
desktopOSX24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9654
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9655
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9656
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9657
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9658
     the ImageEditor may not be able to read the specification."
5016
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9659
    "
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9660
     self desktopOSX24x24Icon inspect
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9661
     ImageEditor openOnClass:self andSelector:#desktopOSX24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9662
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9663
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9664
    ^ Icon constantNamed:'GenericToolbarIconLibrary desktopOSX24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9665
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9666
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9667
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9668
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9669
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9670
                            fromPackedString:'
5016
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9671
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU#5UUUUUUUUUUUUUUUUUUUUUU
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9672
UUUUUUVOUUQ02''Y6X&J5-[TYKB0]GQ4,KB0]\GA>UURN(A$Y4]D5VE G)JP5VE G)JP5(7@YUXSFWU4B*06X&"\TEGE1I2\TI7E-CR<*UZZ(*J!!K$9M[6]%R
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9673
^G!!80<NV/;=:TECPUZZ&*JZS$9N9D!!IQ 8M9TUDRD+&94MCPUZ4-WBHD-KSC^[-$R"AJZ8!!Q ;03)P@_UPXF (HVP$IC4=NA1<\+IRU+-;_P3<?UUP$IB ) 
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9674
QDQ*H2MG2<,XFGM3HRF?JR$0US(OIFV.VP-_M43DRYBP20!!^!!$T9!!7.TUUUA_G2,#H3M2\$W$)J:RVZU.K C"UV)UUV"]ETU5MR_GA3N[)I''Y+L(/UU5#UV\
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9675
USP<XQLPU"Y=Q)4^O8A#,7]HPKY?''@DAUUVYAUTZ"5VWDUV*,UV\''EU?UUT21UTNUUT[M%V2+5U(3ETL0T?ROS5)&<C@ZUUZUWIM5);B+36ON<#HS4:E[6>>
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9676
5:_@C 8NUUUW'')9,T5L.O#81")FQ6M"!!,KB0''%UW#5UUUUUUNET8NET8NET8NET8NET8UUVOUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9677
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9678
                colorMapFromArray:#[ 96 64 64 31 16 31 48 32 48 191 80 160 127 64 143 0 32 63 96 64 128 223 192 208 223 143 191 112 95 160 127 95 144 192 80 176 15 0 31 64 48 63 15 15 16 159 112 207 63 32 111 47 32 64 144 96 127 47 31 96 95 64 80 144 79 176 175 95 176 255 160 240 240 175 208 192 176 191 15 47 64 0 47 48 144 95 144 191 160 176 95 48 127 112 79 96 176 112 143 176 128 160 128 79 144 176 96 175 143 96 175 208 144 176 64 32 96 95 63 80 160 47 143 160 80 143 63 32 48 223 159 191 192 175 191 96 63 128 96 96 128 64 47 63 192 111 175 112 112 143 31 15 31 112 95 96 16 16 48 207 191 207 0 47 63 191 80 175 0 0 15 191 95 160 160 144 223 64 176 224 16 31 64 160 176 208 128 127 143 223 143 224 64 31 64 160 143 208 160 95 160 144 80 143 192 96 191 144 79 128 143 80 144 239 159 207 80 16 63 255 176 240 176 112 144 64 48 64 239 144 223 16 32 48 80 111 176 96 143 223 111 79 95 160 112 143 144 111 127 95 111 143 159 159 160 0 0 0 64 32 111 15 0 15 208 191 207 160 79 175 31 0 16 112 80 111 111 63 128 47 32 48 224 144 207 207 80 191 143 79 144 31 31 80 175 159 175 128 64 143 191 127 160 143 96 176 224 112 208 255 207 255 64 64 64 16 15 16 160 79 144 191 128 160 80 96 143 80 48 64 255 176 255 159 207 255 143 127 143 80 63 64 16 32 63 192 128 175 64 47 128 96 32 96 175 159 176 95 31 64 143 96 127 159 111 128 112 80 95 175 95 160 176 128 223 79 32 96 207 191 191 47 16 47 223 144 208 208 143 191 112 64 143 160 111 128 31 31 47 111 111 111 160 95 143 223 111 191 191 143 160 160 95 175 128 112 160 31 47 80 159 64 175 63 31 63 175 175 176 111 111 127 255 176 224 112 96 111 255 192 255 95 63 96 144 127 160 175 64 144 144 111 128 32 32 80 79 48 64 0 32 48 80 63 80 47 47 47 32 16 47 111 95 144 95 112 127 144 63 144 79 63 96 112 96 127 63 47 127 223 207 208 208 192 208 96 79 80 80 48 96 79 79 80 64 48 80 80 64 111 96 96 144 63 47 63 160 95 191 79 63 127 144 95 175 64 95 144 111 96 111 128 95 160 80 112 208 95 32 80 112 64 111 191 160 191 48 16 48 176 127 144 176 64 144 127 95 111 255 191 255 176 111 143 159 112 128 160 47 128 112 111 127 128 80 111 96 96 127 112 127 128 48 95 191 143 95 127 240 159 208 16 15 31 32 32 47 208 143 176 111 111 128 223 112 207 80 79 80 240 160 208 95 128 176 176 79 160 255 144 240 127 80 96 128 96 111 191 176 191 16 0 15 176 112 160 160 80 207 175 96 144 16 31 48 47 47 48 127 127 143 128 95 111 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9679
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9680
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9681
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9682
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9683
                                        fromPackedString:'@@@@@@@@@@@@????????????????????????????????????????????????????????????????????????@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9684
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9685
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9686
        ]
5016
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9687
!
50b7e331691e class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5015
diff changeset
  9688
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9689
documents24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9690
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9691
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9692
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9693
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9694
     the ImageEditor may not be able to read the specification."
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9695
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9696
     self documents24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9697
     ImageEditor openOnClass:self andSelector:#documents24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9698
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9699
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9700
    ^ Icon constantNamed:'GenericToolbarIconLibrary class documents24x24Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9701
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9702
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9703
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9704
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9705
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9706
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9707
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9708
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9709
                            fromPackedString:'
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9710
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V%)FG@$IB&8^%9]]!!5APGP@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9711
TP@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>TP@@@@@@@@@@VE +^9FQO8 F%IRULXFA%C@3L0@@@@@@[F1''E%IRP#^DHB@<OC0<OC2S$0@@@@@@ H@*^ HBKWNP
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9712
UUVB (JB #1+Z0@@@@@@ H@*^ HBKWNPUUVB (JB #1+Z0@@@@@@B@"M@#4=K@=Y%YT#G2D!!&VPZF @@@@@@K2<)J@DAACZPUUUG_(NCFFQVU @@@@@@F1-9
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9713
#C,;EU9Y%YUJCE1\[VQ*Z @@@@@@F1-8]0@@S''JPUUVB (JB #1APP@@@@@@F1-8]0@@S''JPUUVB (JB #1APP@@@@@@U5^K@H*JSP9Y%YU_W5=_W31=_P@@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9714
@@@@_7<S''VE!!DXVPUUVB (JB #0EAP@@@@@@A0\%"S 8]I!!Y%YU_W5=_W31TU@@@@@@@A0\%"S 8]I!!Y%YU_W5=_W31TU@@@@@@@K"95II.[R06PUUVB (JB
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9715
 #2O#0@@@@@@K"9 SI*ZH$ 2B0,RD#$9NRXYFP@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@''I1[P6Y&](Y1
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9716
N#(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9717
                colorMapFromArray:#[ 121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9718
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9719
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9720
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9721
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9722
                                        fromPackedString:'@@@@@@@@G?? G?? G?? G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G??<G?0@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9723
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9724
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
  9725
        ]
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9726
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
  9727
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9728
dos24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9729
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9730
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9731
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9732
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9733
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9734
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9735
     self dos24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9736
     ImageEditor openOnClass:self andSelector:#dos24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9737
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9738
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9739
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class dos24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9740
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9741
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9742
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9743
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9744
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9745
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9746
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9747
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9748
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9749
@@@@@@@@@@@@@@@@@@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
  9750
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
  9751
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9752
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9753
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9754
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9755
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9756
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9757
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9758
                                        fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@D@@@D@@@\1 @%J@@%I@@%H @\3@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9759
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9760
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9761
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9762
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9763
    "Modified: / 06-02-2007 / 19:40:56 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9764
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9765
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9766
fileBrowser24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9767
    "This resource specification was automatically generated
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9768
     by the ImageEditor of ST/X."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9769
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9770
    "Do not manually edit this!! If it is corrupted,
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9771
     the ImageEditor may not be able to read the specification."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9772
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9773
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9774
     self fileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9775
     ImageEditor openOnClass:self andSelector:#fileBrowser24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9776
     Icon flushCachedIcons
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9777
    "
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9778
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9779
    <resource: #image>
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9780
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9781
    ^Icon
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9782
        constantNamed:'GenericToolbarIconLibrary fileBrowser24x24Icon'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9783
        ifAbsentPut:[(Depth4Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9784
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3@Y&Y&Y&Y&@@@@@@3@X@@@@@@F@@@@@@3@XN;.;.8F@@@@@@3@XN; @@@@@@@@@@3@XN;J
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9785
=/[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
  9786
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9787
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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:((ImageMask new) width:24; height:24; 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]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9788
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9789
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9790
fileIn24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9791
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9792
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9793
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9794
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9795
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9796
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9797
     self fileIn24x24Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9798
     ImageEditor openOnClass:self andSelector:#fileIn24x24Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9799
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9800
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class fileIn24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9801
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9802
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9803
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9804
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9805
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9806
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9807
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9808
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9809
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9810
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  9811
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
  9812
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9813
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9814
                colorMapFromArray:#[ 0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9815
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9816
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9817
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9818
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9819
                                        fromPackedString:'@@@@@@?>@@?>_>?>_>?>_>?>_??>_??>_??>_??>_??>_??>_??>O>?>@ ?>@@?>@@@@EPD@HP@@ISD0IT%H]W%HITEHISEH');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9820
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9821
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9822
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9823
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9824
    "Modified: / 06-02-2007 / 19:40:51 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9825
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9826
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9827
garbageCollect24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9828
    "This resource specification was automatically generated
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9829
     by the ImageEditor of ST/X."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9830
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9831
    "Do not manually edit this!! If it is corrupted,
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9832
     the ImageEditor may not be able to read the specification."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9833
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9834
    "
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9835
     self garbageCollect24x24Icon inspect
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9836
     ImageEditor openOnClass:self andSelector:#garbageCollect24x24Icon
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9837
     Icon flushCachedIcons
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9838
    "
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9839
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9840
    <resource: #image>
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9841
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9842
    ^Icon
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9843
        constantNamed:'GenericToolbarIconLibrary garbageCollect24x24Icon'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9844
        ifAbsentPut:[(Depth4Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9845
@@@@@@@@@@@@@ADQ@@@@@@@@@@@@@ADQDQ@@@K.;,QF1DQDQDQ@@B;.;.1.0@@DQDQ@@.;@@.;.1@@@ADQ@@.0@@F;.1@2@ADQ@@.0@@.;.1DCHADQ@K.;@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9846
DQDQDPL DQB0.0,@DQDP@@@0DQ,K@KB0DQ@BH"H@DQ@@@@@@DQ@P@@@0DP@@@@8N@@@QDSL0D@@@C.;.8@@PL3@ @@@@@NC @@@PLC@ @@@@;.;.@@@PLC@J
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9847
@@@@C 8@@@@PLC@ @@B (@@AD@@PLC@ @J*** CA0@@PLC@ @@(J@L3L3@@PLC@ B***(@0L@Q@SLCL @JB CL3L0Q@CH"H@@ADQDLCADQDP@@@Q@ADQD@@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
  9848
@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:((ImageMask new) width:24; height:24; 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]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9849
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9850
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9851
historyBackInTextIcon
5672
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9852
    "This resource specification was automatically generated
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9853
     by the ImageEditor of ST/X."
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9854
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9855
    "Do not manually edit this!! If it is corrupted,
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9856
     the ImageEditor may not be able to read the specification."
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9857
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9858
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9859
     self historyBackInTextIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9860
     ImageEditor openOnClass:self andSelector:#historyBackInTextIcon
5672
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9861
     Icon flushCachedIcons
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9862
    "
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9863
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9864
    <resource: #image>
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9865
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9866
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
  9867
        constantNamed:'GenericToolbarIconLibrary historyBackInTextIcon'
5672
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9868
        ifAbsentPut:[(Depth8Image width:24 height:24) bits:(ByteArray fromPackedString:'
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9869
%IRT%IRT%@@@@@@@@@AO$$>T%IRT%IRT%@@@@@@@@@@@@@@@@@@@@@@@@@@@@IRT%)X@@@@@@@@@@@@@@@@@%)ZV%P@@@IVV%)ZX&I"X&I"X&I"X&I"X&I"X
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9870
&I @@IVV%)ZX&IVV%)ZU%P@@@@@@%YZV%Y @@IVV%)ZX&I"X&I"X&@@@@@@@@@@@@I @@IVV%)ZX&IVV%)X@@@BI@@@@@@@@@I"U@IVV%)ZX&IVV@@@@@@@@
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9871
@@@@@E0K@I"U@@BV%)ZX&I"X&I"X&@@@@@@@S 8F!!Y"U@@BV%)ZX&@@@@@@@@@@@@H4#D''4@!!XAO@@AO%YVX&@@@@@@@@@@@#P8]"X8@@@@@@@BD%YVX&I"X
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9872
&I"X&H=<@3^N^(:N]7]7[0B@%T>X&@@@@@@@@@A4@0(6[6<,H!!(5ZPB@%P"X&@@@@@@@@@@@!! 4DE6<@@@@@AQF@%P"X&I"X&I"X&@@@@H \@ 0@ HB@ HB@
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9873
%W&X&@@@@@@@@@@@@@BOPPD@ I @@@AO%PBX&AAYX@@@@@@@@@@@$%0K I (@@AO%PBX&I"X&I"X&@@@@@@@@D)JQ9!!D@D=O%@BX&D=OS4=O@@@@@@@@@D=O
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9874
S9!!O@D=O%@BX&IQOS4=OQ @@@@@@@D=OS9!!O@D=O%@BX&I"X&I"X&I"X&I"X&I"X&I!!O@IIO%@@@%IRT%D=OS4=OS4=O$$>T%@@@@IRT%IP@@@@@@@@@@@@@
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9875
@@@@@@@@@@@@@IRT%IRT%IRT%IRTS4=OS4=O$$>T%IRT%IRT')
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9876
            colorMapFromArray:#[0 146 0 0 150 0 0 158 0 8 150 8 8 170 8 16 150 16 16 154 16 24 154 24 24 158 24 24 162 24 24 182 24 33 154 33 33 211 24 41 158 41 41 162 41 41 166 41 41 174 41 49 162 49 49 166 49 57 166 57 57 199 49 66 178 57 66 190 57 66 227 57 74 199 66 74 203 66 74 227 74 74 231 66 82 174 82 82 182 74 82 190 74 82 203 66 82 207 74 82 215 74 82 231 82 90 182 90 90 207 82 90 211 74 90 211 82 90 215 74 90 215 82 90 223 82 90 227 82 90 231 82 90 235 82 90 235 90 99 211 90 99 215 82 99 215 90 99 219 82 99 219 90 99 223 82 99 223 90 99 227 99 99 235 90 107 195 99 107 211 99 107 223 90 107 227 90 107 235 90 107 235 99 107 235 107 107 239 90 107 239 99 115 142 222 115 186 107 115 211 99 115 227 99 115 235 99 115 235 107 115 239 99 115 239 107 123 190 123 123 195 123 123 239 107 123 239 115 123 239 123 123 243 107 132 199 132 132 239 107 132 239 123 132 243 107 132 243 115 132 243 123 132 247 123 140 203 140 140 215 132 140 243 115 140 243 123 140 243 132 140 247 115 140 247 123 148 199 148 148 243 123 148 243 132 148 247 123 148 247 132 148 251 123 148 251 132 156 203 156 156 243 132 156 243 140 156 251 123 156 251 132 165 251 140 165 251 156 173 170 156 173 215 173 173 235 156 173 251 148 173 251 156 173 251 165 181 239 165 181 251 156 181 251 165 181 251 173 189 215 181 189 247 173 189 251 173 189 255 173 189 255 181 198 223 198 198 251 173 198 255 181 206 227 206 206 243 181 206 255 189 214 207 206 214 211 214 214 255 189 214 255 198 222 219 214 222 219 222 222 223 222 222 227 214 222 227 222 222 231 214 222 251 206 222 255 198 222 255 206 231 227 231 231 239 231 231 255 214 239 235 231 239 235 239 239 243 239 247 239 239 247 239 247 247 243 239 247 243 247 247 247 247 255 255 255 127 127 127]
f9a9151132d3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5670
diff changeset
  9877
            mask:((ImageMask width:24 height:24) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@G??0D@@PE<@PDA@PD@CPE<G0D@_0D@??E???DA??D@??E<_?D@O0D@G0E<@PD@@PD@@PG??0@@@@@@@@@@@@'); yourself); yourself]
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9878
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
  9879
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9880
imageEditor24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9881
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9882
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9883
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9884
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9885
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9886
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9887
     self imageEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9888
     ImageEditor openOnClass:self andSelector:#imageEditor24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9889
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9890
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9891
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9892
        constantNamed:#'GenericToolbarIconLibrary class imageEditor24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9893
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9894
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9895
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9896
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9897
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9898
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9899
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9900
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9901
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9902
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
  9903
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
  9904
A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFX@(@A7\3LQE&Y&XFXI& BY&H!!DQ&Y&XFXI* BY&H!!DQ&Y&XFXI* @@@@@@@@@@@@@I* @@@@@@@@@@@@@I& @@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9905
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9906
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9907
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9908
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9909
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9910
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9911
                                        fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9912
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9913
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9914
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9915
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
  9916
    "Modified: / 06-02-2007 / 19:40:45 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9917
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9918
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9919
installAsWebPage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9920
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9921
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9922
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9923
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9924
     the ImageEditor may not be able to read the specification."
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9925
    "
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9926
     self installAsWebPage24x24Icon inspect
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9927
     ImageEditor openOnClass:self andSelector:#installAsWebPage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9928
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9929
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9930
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9931
        constantNamed:#'GenericToolbarIconLibrary class installAsWebPage24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9932
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9933
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9934
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9935
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9936
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9937
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9938
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9939
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9940
                            fromPackedString:'
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9941
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"H"H"H"H"H@BYBP@%UUUUUUUU$@BYBP@%UUUUUUUU$@BYBP@%UUUUUUUU$@@@@@@%UU.;.5UU$@@@@@@%U[.;.;
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9942
UU$@@@@@@%V;.;.;-U$@@@@@@%.*.;**.5$@@@@@@%.**;.**5$@@@@@@%.**;***5$@@@@@@%.:*;***5$@@H&P@%.:*;**.5$@@@@@@%V;.;*+-U$@@@$@
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9943
@%U[.;.;UU$@@@$@@%UU.;.5UU$@@@$@@%UUUUUUUU$@@H"P@%UUUUUUUU$@@H&P@%UUUUUUUU$@@H&P@%UUUUUUUU$@@H&P@)&Y&Y&Y&Y$@@H"P@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9944
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9945
                colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 191 191 191 255 0 0 240 240 0 255 255 0 100 100 100 0 255 0 0 0 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9946
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9947
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9948
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9949
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9950
                                        fromPackedString:'@@@@??>@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_??>_??>N@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9951
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9952
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9953
        ]
3533
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9954
!
85c56573dac9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3506
diff changeset
  9955
4335
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  9956
left2Arrow24x24Icon
5210
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9957
    "This resource specification was automatically generated
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9958
     by the ImageEditor of ST/X."
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9959
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9960
    "Do not manually edit this!! If it is corrupted,
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9961
     the ImageEditor may not be able to read the specification."
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9962
4335
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  9963
    "
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  9964
     self left2Arrow24x24Icon inspect
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  9965
     ImageEditor openOnClass:self andSelector:#left2Arrow24x24Icon
5210
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9966
     Icon flushCachedIcons
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9967
    "
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9968
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9969
    <resource: #image>
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9970
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9971
    ^Icon
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9972
        constantNamed:'GenericToolbarIconLibrary left2Arrow24x24Icon'
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9973
        ifAbsentPut:[(Depth8Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9974
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@P@@@@@@@@@@@@@@@@@@@@@@@@@A@ @A@ @@@@@@
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9975
@@@@@@@@@@@@@@@@@@DC@PDC@P@@@@@@@@@@@@@@@@@@@@@@@PPE@PPE@ @@@@@@@@@@@@@@@@@@@@@AA @AA @G@P@@@@@@@@@@@@@@@@@@@@DH@@DH@@$J
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9976
@ ,C@0DA@P,@@@@@@@@@@P0@@P0@@@4NC1@@@@@Q@1H@@@@@@@@AA @AA @@D1PUC!!@QDQXWA1H@@@@@@@DDDPDDDQDSEATUEP8XBQLYB!!H@@@@@@@,JE@,J
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9977
EA,\EATUEQ4]GQ4]B!!H@@@@@@@@RB!!PRB!!P^GAPTF1<_G1, B!!H@@@@@@@@@D (ND (NG2@]GP(JB (JHP,@@@@@@@@@@AHJC!!HJC!!8J@QHRD!!HRD ,@@@@@
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9978
@@@@@@@RB!!4RB!!4"@ @@@@@@@@@@@@@@@@@@@@@@D (!!D (!!@P@@@@@@@@@@@@@@@@@@@@@@@@,A@ ,A@ @@@@@@@@@@@@@@@@@@@@@@@@@K@P@K@P@@@@@@
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9979
@@@@@@@@@@@@@@@@@@@@B0@@B0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
f588eb10170f class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5209
diff changeset
  9980
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; 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:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@@D @@M @@_ @@? @A? @C??0G??0O??0_??0_??0O??0G??0C??0A? @@? @@_ @@M @@D @@@@@@@@@@@@@@@@@') ; yourself); yourself]
4335
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  9981
!
e93beeaab082 added: #left2Arrow24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  9982
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9983
leftArrow24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9984
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9985
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9986
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9987
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9988
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9989
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  9990
     self leftArrow24x24Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9991
     ImageEditor openOnClass:self andSelector:#leftArrow24x24Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9992
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9993
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9994
        constantNamed:#'GenericToolbarIconLibrary class leftArrow24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9995
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9996
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9997
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9998
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
  9999
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10000
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10001
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10002
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10003
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10004
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10005
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10006
@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
 10007
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
 10008
@@@@@@@@D (]H H@@@@@@@@@@@@@@@@@@@@@@@@@@AHJHPD@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10009
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10010
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10011
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10012
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10013
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10014
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10015
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10016
                                        fromPackedString:'@@@@@@@@@B@@@F@@@N@@@^@@@>@@A??@C??@G??@O??@O??@G??@C??@A??@@>@@@^@@@N@@@F@@@B@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10017
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10018
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10019
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10020
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10021
    "Modified: / 06-02-2007 / 19:40:42 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10022
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10023
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10024
leftArrow24x24disabledIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10025
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10026
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10027
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10028
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10029
     the ImageEditor may not be able to read the specification."
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10030
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10031
     self leftArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10032
     ImageEditor openOnClass:self andSelector:#leftArrow24x24disabledIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10033
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10034
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10035
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10036
        constantNamed:'GenericToolbarIconLibrary class leftArrow24x24disabledIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10037
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10038
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10039
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10040
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10041
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10042
                bitsPerSample:(#[ 8 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10043
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10044
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10045
                            fromPackedString:'
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10046
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10047
@@@@@@@@@@@@@@@@@@@A@0D@@@@@@@@@@@@@@@@@@@@@@@@@@@DDAPH@@@@@@@@@@@@@@@@@@@@@@@@@@PX@A0D@@@@@@@@@@@@@@@@@@@@@@@@AB@@IB HK
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10048
@0LA@PDK@@@@@@@@@@@@@@DL@@@FCP8O@@@@D@LQ@@@@@@@@@@@@@PX@@AHND04ODA@TEP\Q@@@@@@@@@@@AAA@PD 8SD1LME $RE0(Q@@@@@@@@@@@KB 8U
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10049
F@8SD1LYFQ$YFP(Q@@@@@@@@@@@@DP(NF!! NC!!T[F1,UE0(Q@@@@@@@@@@@@@ADJCQ,WFQ$JB (JB!!0K@@@@@@@@@@@@@@@QB 4ZB DQDQDQDQDK@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10050
@@@@@@@@DP(YGPH@@@@@@@@@@@@@@@@@@@@@@@@@@ADJG@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@K@PH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B0D@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10051
@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10052
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10053
                colorMapFromArray:#[ 224 224 224 25 25 25 28 28 28 57 57 57 121 121 121 89 89 89 153 153 153 80 80 80 150 150 150 185 185 185 70 70 70 0 0 0 131 131 131 124 124 124 115 115 115 176 176 176 214 214 214 3 3 3 166 166 166 96 96 96 204 204 204 144 144 144 172 172 172 134 134 134 137 137 137 92 92 92 147 147 147 156 156 156 48 48 48 51 51 51 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10054
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10055
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10056
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10057
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10058
                                        fromPackedString:'@@@@@@@@@B@@@F@@@N@@@^@@@>@@A??@C??@G??@O??@O??@G??@C??@A??@@>@@@^@@@N@@@F@@@B@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10059
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10060
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10061
        ]
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10062
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10063
5258
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10064
lint24x24Icon1
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10065
    "This resource specification was automatically generated
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10066
     by the ImageEditor of ST/X."
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10067
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10068
    "Do not manually edit this!! If it is corrupted,
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10069
     the ImageEditor may not be able to read the specification."
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10070
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10071
    "
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10072
     self lint24x24Icon1 inspect
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10073
     ImageEditor openOnClass:self andSelector:#lint24x24Icon1
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10074
     Icon flushCachedIcons
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10075
    "
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10076
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10077
    <resource: #image>
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10078
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10079
    ^Icon
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10080
        constantNamed:'GenericToolbarIconLibrary lint24x24Icon1'
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10081
        ifAbsentPut:[(Depth8Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10082
??????????????????????????????????????????????????????????????????????????=_W?????>-@:7?????????????????????MF7???<4+_??
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10083
????????????????????+TW???<L?????????????????????????2AG?4HY????????????????????????K65[()A-!!????????????????:7?????[\W>
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10084
?/;0[XS???<ZR???????JZ6-??=-0?3<?O3<F&7??0*-??????????<GO:5-6-+Z6-+,9+U-A:4@????????????+PE-^G!!<>-262/O1[_??????????????
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10085
+V4PR4/I):+J+8+Q,_??????????+P(]I1,,N=7J;?W27-ZO>94NS4??????B @@[RH(PN2#9>+%5[:@8L>D????????????[Q<-S_BU6=/W3)Y:.]??????
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10086
????@@AEI1<>W^:$1,"2X6I(6]IP_@C?????+QHN[RL0U>&6&(-1Y6)(=:$@@D??????N @@[QUDXKO;(HM6^7M,<G @@@AO????????MB(2ZUZX>;.&*NG:
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10087
/:6D??????????<)+V4SXEY?2?S<>.Y-/;V-?????????1&-??=-RU)/]8JMT&7?@K>5#O???????:7?????[RX+NBX&[_????>:/;T@?????????????65-
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10088
[V5-????????6OF5????????????????????????????@MK?') ; colorMapFromArray:#[0 1 0 0 2 0 1 4 0 3 6 2 30 1 0 6 9 5 34 2 2 10 12 8 43 4 2 13 15 12 15 17 13 77 0 0 16 18 15 35 14 12 17 19 16 67 6 1 19 20 18 75 7 10 21 23 20 86 9 4 25 27 24 111 4 7 103 7 10 96 10 12 32 29 28 29 30 28 31 33 30 153 2 0 33 35 33 35 36 34 110 16 16 173 0 1 36 38 35 41 37 36 165 4 0 155 7 7 128 15 14 39 41 39 157 12 16 51 42 42 207 0 4 43 45 42 58 41 39 141 19 15 199 4 0 210 3 0 221 1 4 48 49 47 231 0 12 211 7 8 172 19 10 172 19 18 52 54 51 53 55 53 234 5 23 59 54 53 176 24 21 56 57 55 57 59 56 204 19 22 195 22 24 103 47 48 227 16 9 60 61 59 198 25 19 216 20 21 61 63 60 119 48 45 228 20 20 63 65 62 211 30 27 68 69 67 69 71 68 212 32 34 242 25 29 72 74 71 74 76 74 191 45 50 245 31 38 76 78 75 77 79 76 79 80 78 138 66 66 248 36 40 240 41 43 83 85 82 216 50 52 241 43 50 195 58 61 86 88 85 244 46 46 87 89 86 89 91 88 214 58 58 193 65 67 92 93 91 248 51 49 109 90 87 185 68 87 194 67 80 87 95 125 250 54 57 173 74 96 202 67 84 159 78 103 253 56 52 188 72 90 87 99 135 129 89 121 99 101 98 73 104 148 255 59 60 159 83 106 175 81 94 94 102 132 187 78 98 215 71 85 255 61 67 169 84 104 251 66 66 104 106 103 90 106 147 151 92 119 200 81 93 107 108 106 140 99 131 162 94 119 255 72 76 144 100 128 96 112 153 228 80 83 159 97 120 111 113 110 191 90 111 206 87 104 113 115 112 87 118 163 115 117 114 83 122 166 179 100 117 118 120 117 199 99 101 231 91 88 138 113 147 120 122 119 196 101 119 123 125 122 115 123 167 213 100 113 119 123 162 180 109 128 127 129 126 208 108 109 115 131 173 185 115 140 158 122 154 173 119 144 131 133 130 130 130 163 178 122 124 181 119 147 106 139 178 136 138 135 120 139 175 126 138 175 204 121 132 132 139 172 113 146 186 136 143 176 144 146 143 121 149 184 153 142 173 135 150 181 148 150 147 125 153 188 130 153 182 179 140 167 150 152 149 205 136 148 181 145 146 136 159 189 155 157 154 140 163 193 159 161 158 161 163 160 143 166 196 162 164 161 148 167 192 164 166 163 165 165 187 197 159 173 167 169 166 152 171 196 191 163 180 157 172 191 169 171 168 216 159 166 171 173 170 208 163 179 187 169 190 217 162 175 174 176 173 159 178 203 186 173 174 207 167 175 163 178 198 213 166 176 179 181 178 198 176 192 169 185 204 183 185 182 216 175 184 209 177 189 212 180 192 204 183 198 208 183 193 188 190 187 180 192 206 194 196 193 215 191 201 187 199 213 204 198 197 211 196 210 199 201 198 190 202 216 191 203 217 201 202 212 202 204 201 208 203 201 219 201 210 205 207 203 217 203 217 206 208 205 213 207 206 223 205 214 203 211 220 211 213 210 211 212 222 214 216 213 221 215 227 217 219 216 219 221 218 228 218 224 217 222 225 221 223 220 231 221 227 216 225 233 220 226 228 224 226 223 221 229 238 231 233 230 228 234 236 233 235 232 235 238 234 249 251 248 255 255 255]; mask:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@@LN@@FL@@FH@@CX@@G<@BG>LGO>XA??0@?? @?? G??>D??8@??0A??<G??2D??1@??8A??8CO>\BG<N@C8G@@@B') ; yourself); yourself]
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10089
!
3095209460fd class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5257
diff changeset
 10090
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10091
make24x24Icon3
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10092
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10093
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10094
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10095
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10096
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10097
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10098
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10099
     self make24x24Icon3 inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10100
     ImageEditor openOnClass:self andSelector:#make24x24Icon3
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10101
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10102
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10103
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10104
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10105
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10106
    ^Icon
5143
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10107
        constantNamed:'GenericToolbarIconLibrary make24x24Icon3'
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10108
        ifAbsentPut:[(Depth8Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10109
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DB@0PE@@@@@@@@@@@@@@@@@@@@@@@@@@XGB@HABP(@@@@@@@@@@@@@@@@@@@@@@@@@@@ KA00J
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10110
@@@@@@@@@@@@@@@@@@@@@@@@@@@MC  OD@@@@@@@@@@@@@@@@@@@@@@@@@@CBADBA!!H@@@@@@@@@@@@@@@@@@@@@@@@S@ XOE@XO@@@@@@@@@@@@@@@@@@@@
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10111
@@PFC1PACAT@@@@@@@@@@@@@@@@@@@@@@@0O@00UD!!HTB @@@@@@@@@@@@@@@@@@BPLLCAT@@A@QE P@@@@@@@@@@@@@@@@WE@L@@@@@@@$XC1$L@@@@@@@@
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10112
@@@@F TAEP@@@@@@@@@CFAL@@@@@@@@@@@@[GA4R@@@@@@@@@@@@G @@@@@@@@@@@A0\F1,\@@@@@@@@@@@@@@@@@@@@@@@_F"@[F1<@@@@@@@@@@@@@@@@@
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10113
@@@@@A<ZF1,[G0@@@@@@@@@@@@@@@@@@@@@@@A0[F1,_@@@@@@@@@@@@@@@@@@@@@@@@GB@[F1<@@@@@@@@@@@@@@@@@@@@@@@@ HA,[G0@@@@@@@@@@@@@@
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10114
@@@@@@@@GBD F1,_@@@@@@@@@@@@@@@@@@@@@@@@HR@[F1<@@@@@@@@@@@@@@@@@@@@@@@@@@A,[G2H@@@@@@@@@@@@@@@@@@@@@@@@@@@@_H @@@@@@@@@@
2501dcc744db class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5141
diff changeset
 10115
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 248 250 160 152 140 192 184 180 160 152 160 128 120 130 112 112 100 176 176 180 192 192 200 208 200 200 128 120 120 96 88 90 224 216 220 144 144 140 208 200 210 224 208 210 176 168 170 96 96 100 192 192 180 128 128 130 176 160 170 160 160 160 144 136 140 224 224 220 112 112 120 112 104 100 240 232 240 48 48 50 32 32 40 48 40 40 64 64 60 160 160 170 32 32 20 48 32 40 48 40 50 16 8 10]; mask:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@C8@@C>@@@_@@@O @@O0@@O8@@_0@@_<@@>^@A0_@G N@O@D@_@@A>@@C<@@C8@@G0@@O @@?@@@>@@@^@@@L@@@@@@@') ; yourself); yourself]
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10116
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10117
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10118
menuEditor24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10119
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10120
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10121
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10122
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10123
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10124
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10125
     self menuEditor24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10126
     ImageEditor openOnClass:self andSelector:#menuEditor24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10127
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10128
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10129
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10130
        constantNamed:#'GenericToolbarIconLibrary class menuEditor24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10131
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10132
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10133
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10134
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10135
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10136
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10137
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10138
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10139
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10140
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 10141
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
 10142
@QDQDQDQDQTEAP\@@RH"H"H"H"TEAP\@@R]2I7H'']2TE@CM0@RH"H"H"H"TE@C]0AUUUUUUUUUTE@C]0@@@@@@@@@@@@@C]0@@@@@@@@@@@@@CM0@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10143
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10144
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10145
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10146
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10147
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10148
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10149
                                        fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10150
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10151
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10152
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10153
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10154
    "Modified: / 06-02-2007 / 19:40:40 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10155
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10156
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10157
method24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10158
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10159
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10160
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10161
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10162
     the ImageEditor may not be able to read the specification."
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10163
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10164
     self method24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10165
     ImageEditor openOnClass:self andSelector:#method24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10166
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10167
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10168
    ^ Icon constantNamed:'GenericToolbarIconLibrary method24x24Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10169
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10170
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10171
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10172
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10173
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10174
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10175
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10176
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10177
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10178
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10179
DQDQDQDQDQDQDQDQDQDQDQDQDQDQL"H"H"H"LQDQDQDQIDQDQDQCHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQI@@@@@@AHQDQDQDQH1DQDQDQHQDQ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10180
DQDQL"H"H"H"LQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10181
DQDQDQDQDQDQDQDQDQDQDQDQ');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10182
                colorMapFromArray:#[ 223 32 32 127 127 127 64 64 64 170 170 170 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10183
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10184
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10185
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10186
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10187
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?? @?? @?? @?? @?? @?? @?? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10188
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10189
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10190
        ]
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10191
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10192
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10193
methodFinder24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10194
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10195
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10196
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10197
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10198
     the ImageEditor may not be able to read the specification."
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10199
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10200
     self methodFinder24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10201
     ImageEditor openOnClass:self andSelector:#methodFinder24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10202
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10203
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 10204
    ^ Icon constantNamed:'GenericToolbarIconLibrary methodFinder24x24Icon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10205
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10206
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10207
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10208
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10209
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10210
                bitsPerSample:(#[ 8 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10211
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10212
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10213
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10214
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10215
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADEQPX
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10216
IR)P@@@@@@@@@@@@@@@@@@@@@A,''RE!!YUD@(H&\@@@@@@@@@@@@@@@@@J6&Q XFA XEUJQ!!''B (JB (9@@@@@@@,X%,KB0 C@ LGA TU_9FQ$S$J@@@@@DX?
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10217
 U,K[F1,[F1,[@X LV1,[AHJ@@@@@CMR\U,K[F1,[F1,[F0ED61,[AHJ@@@@@B1YVT8K[F1,[F1,[F0EE61,[AHJ@@@@@B1&R4LK[F1,[F1,[F0EGQHRD!!HJ
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10218
@@@@@B1YUTLK[F1,[F1,[F0EGP(JB (9@@@@@B5IVT4K[F1,[F1,[F0KE@@@@@@@@@@@@DT5VT4KB0,KB0,KB0-GF @@@@@@@@@@@@@_PD5MST9NS$9NS&,\
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10219
Y0@@@@@@@@@@@@@$G4%&Y&)1\WVE CH<@@@@@@@@@@BP %4#E!!<6T6Y1Z&MQL#4@@@@@@@@@@H>M#E0!!@@@%FQ8&MCH>U0@@@@@@@@@@#8:L[S(0@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10220
@@@@@@@@@@@@@@@@#(1-N2<@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10221
                colorMapFromArray:#[ 0 0 0 32 223 32 255 40 124 255 51 109 255 51 109 229 54 139 255 62 88 255 62 88 255 62 91 255 62 136 64 64 64 255 72 115 255 83 62 255 91 73 255 94 74 255 101 84 255 105 85 255 112 96 127 127 127 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 143 175 208 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 159 159 192 159 160 192 159 160 207 159 160 208 159 192 239 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 160 208 255 160 223 255 170 170 170 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 175 223 255 176 175 207 176 176 176 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 176 223 255 176 224 255 176 239 255 183 183 183 190 190 190 191 175 143 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 239 255 191 240 255 192 192 208 192 239 255 192 240 255 192 255 255 196 196 196 207 143 95 207 207 191 207 207 207 207 207 208 207 207 223 207 208 223 207 223 239 207 239 240 207 239 255 207 240 255 207 255 255 208 208 223 208 208 224 208 224 239 208 255 255 217 217 217 223 32 32 223 128 63 223 192 255 223 223 32 223 223 224 223 255 255 224 224 224 224 224 239 224 239 240 224 255 255 231 207 255 231 208 255 238 191 255 238 192 255 239 159 232 239 191 255 239 223 255 239 224 255 239 239 224 239 239 239 239 239 240 239 255 255 240 207 144 240 239 223 240 240 239 240 255 255 246 176 255 247 175 255 247 207 255 247 239 255 254 160 255 254 191 255 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10222
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10223
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10224
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10225
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10226
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O8@@_>@@???A???C???C???C???C???C???C?? C?? A?? A??@O?>@_O<@?@@@>@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10227
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10228
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10229
        ]
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10230
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 10231
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10232
newClassWizardIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10233
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10234
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10235
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10236
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10237
     the ImageEditor may not be able to read the specification."
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10238
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10239
     self newClassWizardIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10240
     ImageEditor openOnClass:self andSelector:#newClassWizardIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10241
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10242
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10243
    ^ Icon constantNamed:'GenericToolbarIconLibrary class newClassWizardIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10244
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10245
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10246
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10247
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10248
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10249
                bitsPerSample:(#[ 8 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10250
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10251
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10252
                            fromPackedString:'
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10253
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10254
@@@@@@@@@@@8B@ HB@ HB@ HB@ 8@@@@@@@@@@@@@@@H:^''):^''):^''):S H@@@@@@@@@@@@@@@H:PXFA XFA XFA!!8H@@@@@@@@@@@@@@@H:PXFA XFA XF
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10255
A!!91RF$@@@@@@@@@@@@H:PXFA ZB^G(FA&5/&38@@@@@@@@@@@@HNA8^G!!97,)EXT&KC%DL@@@@@@@@@@@@8B@ HB@!!9%.^-#;''#]V,@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10256
@@B5V[C)9^S^V#\@@@@@@@@@@@@@@@@@@@@@TIO&7]_V)5\!!QP@@@@@@@@@@@@@@@@A-W;_!!5=SS6-F"O2 @@@@@@@@@@@@@@GM,7NO_5]OA&&)ILCT@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10257
@@@@@@@@@D^]%WY +="IDC,V_P@@@@@@@@@@@@@@@F!!@PV\.X=Q.A0>DFP@@@@@@@@@@@@@@@@@@@@@@H*9VBP@Q 1L@@@@@@@@@@@@@@@@@@@@@P$P2$ 0@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10258
D(D$@@@@@@@@@@@@@@@@@@@@@BL4@@@K@AP3I@@@@@@@@@@@@@@@@@@@@@@@@@@@I HXLRX@@@@@@@@@@@@@@@@@@@@@@@@@@BPBGR<1@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10259
@@@@@@@@@@@*@!!<W@@@@@@@@@@@@@@@@@@@@@@@@@@@@JPTJ');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10260
                colorMapFromArray:#[ 0 0 0 3 3 3 4 4 4 4 8 8 11 16 17 12 12 12 32 223 32 33 4 8 64 64 64 67 27 35 69 69 69 75 80 80 80 93 92 90 19 2 94 95 110 107 120 120 109 13 19 109 107 107 111 110 110 111 115 115 112 112 112 116 117 116 120 76 87 120 120 120 121 121 121 121 132 132 122 120 120 122 122 122 125 57 47 125 125 125 127 127 127 133 133 133 140 70 60 144 32 17 145 28 14 158 75 75 158 158 158 159 36 2 159 159 159 160 34 3 161 79 79 161 161 161 162 162 162 163 59 29 163 63 34 164 164 164 165 76 76 166 166 166 167 46 5 167 167 167 168 46 6 168 168 168 169 89 89 169 91 91 169 171 171 170 86 86 170 170 170 171 79 75 173 90 77 173 125 137 173 173 173 174 85 83 175 49 40 176 68 12 177 50 40 177 67 67 177 111 111 179 70 70 180 72 11 180 117 117 180 180 180 181 26 10 181 28 13 181 80 16 181 179 180 181 186 191 183 70 49 183 88 19 184 69 48 184 186 186 185 55 55 185 183 184 186 56 56 190 50 30 190 52 32 190 104 94 191 87 23 192 94 18 193 37 20 193 38 17 193 88 18 193 108 101 194 81 72 194 85 77 195 165 162 196 67 35 196 92 19 196 144 142 197 68 34 197 99 19 197 147 144 198 80 57 198 81 55 198 128 128 199 96 93 199 102 100 200 105 21 202 136 136 203 82 39 203 107 107 203 109 25 204 83 37 204 85 46 204 102 102 205 88 47 205 104 103 205 172 171 207 111 32 208 116 34 210 44 27 210 44 29 211 86 86 211 93 93 211 138 29 214 83 58 215 201 202 216 87 60 216 142 31 216 183 183 217 217 217 218 66 59 218 218 218 218 225 224 219 65 39 220 134 134 220 140 140 220 188 188 221 141 25 222 168 168 223 32 32 223 157 52 223 170 170 223 223 32 224 136 74 224 160 53 225 125 88 225 214 215 226 139 77 226 165 73 226 167 74 227 133 95 227 143 29 228 151 118 228 157 124 229 149 33 229 159 68 230 185 185 232 162 71 232 187 187 237 201 113 239 203 111 239 236 236 240 177 48 240 190 95 241 154 38 241 192 97 242 195 195 242 200 38 243 203 45 243 236 237 244 202 202 244 212 212 244 215 215 245 211 166 246 182 50 246 204 39 246 215 174 246 218 162 247 202 143 247 224 224 247 226 163 247 228 228 247 241 241 248 224 165 248 233 233 249 228 166 249 230 230 249 244 244 249 245 245 250 228 195 250 247 247 251 232 48 251 239 239 252 215 48 252 249 249 253 245 165 253 247 247 253 249 249 253 251 251 253 252 252 253 253 253 254 229 48 254 233 48 254 247 200 254 248 202 254 253 253 254 254 254 255 214 57 255 233 52 255 239 67 255 240 51 255 241 49 255 242 70 255 245 68 255 246 68 255 246 122 255 248 62 255 248 94 255 249 62 255 249 93 255 249 166 255 251 176 255 252 111 255 253 112 255 254 171 255 254 180 255 255 171 255 255 174 255 255 180 255 255 214 255 255 216 255 255 251 255 255 253 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10261
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10262
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10263
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10264
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10265
                                        fromPackedString:'@@@@@@@@@@@@@@@@O?8@O?8@O?8@O?>@O?>@O?>@O?>@@O>@@G? @O?0@_?0@_? @_? @@?0@@?8@@Y<@@@>@@@_@@@O@@@G');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10266
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10267
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10268
        ]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10269
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10270
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10271
newDataSet24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10272
    "This resource specification was automatically generated
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10273
     by the ImageEditor of ST/X."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10274
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10275
    "Do not manually edit this!! If it is corrupted,
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10276
     the ImageEditor may not be able to read the specification."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10277
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10278
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10279
     self newDataSet24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10280
     ImageEditor openOnClass:self andSelector:#newDataSet24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10281
     Icon flushCachedIcons
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10282
    "
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10283
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10284
    <resource: #image>
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10285
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10286
    ^Icon
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10287
        constantNamed:'GenericToolbarIconLibrary newDataSet24x24Icon'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10288
        ifAbsentPut:[(Depth4Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10289
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 10290
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
 10291
@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@@@@@@@@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10292
@@@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:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8???T@@BR@@DQ') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10293
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10294
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10295
newFileBrowser24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10296
    "This resource specification was automatically generated
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10297
     by the ImageEditor of ST/X."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10298
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10299
    "Do not manually edit this!! If it is corrupted,
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10300
     the ImageEditor may not be able to read the specification."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10301
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10302
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10303
     self newFileBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10304
     ImageEditor openOnClass:self andSelector:#newFileBrowser24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10305
     Icon flushCachedIcons
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10306
    "
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10307
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10308
    <resource: #image>
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10309
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10310
    ^Icon
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10311
        constantNamed:'GenericToolbarIconLibrary newFileBrowser24x24Icon'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10312
        ifAbsentPut:[(Depth4Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10313
@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@@@@@@@@@@@ADAD@@@3@Y&Y&Y&@QDADP@@3@X@@@@@@P@@@P@@3@XN;.;.@QDADP@@3@XN; @@@ADAD@@@3@XN;J
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10314
=/[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
 10315
@@3@XOX@@@@@@@@@@@3@XF=/[6<F@@@@@@3@XO[6=/XF@@@@@@3@X@@@@@@F@@@@@@3@Y&Y&Y&Y&@@@@@@C@Y&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10316
@@@@@@@@@@@@@@@@@@@@@@@@') ; 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:((ImageMask new) width:24; height:24; 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]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10317
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10318
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10319
newImage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10320
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10321
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10322
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10323
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10324
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10325
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10326
     self newImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10327
     ImageEditor openOnClass:self andSelector:#newImage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10328
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10329
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10330
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class newImage24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10331
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10332
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10333
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10334
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10335
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10336
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10337
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10338
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10339
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10340
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 10341
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
 10342
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$@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10343
@@BPBPBP@@@@@@@@@@$@BP@I');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10344
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10345
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10346
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10347
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10348
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10349
                                        fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10350
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10351
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10352
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10353
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10354
    "Modified: / 06-02-2007 / 19:40:31 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10355
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10356
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10357
newMenu24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10358
    "This resource specification was automatically generated
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10359
     by the ImageEditor of ST/X."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10360
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10361
    "Do not manually edit this!! If it is corrupted,
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10362
     the ImageEditor may not be able to read the specification."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10363
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10364
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10365
     self newMenu24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10366
     ImageEditor openOnClass:self andSelector:#newMenu24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10367
     Icon flushCachedIcons
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10368
    "
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10369
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10370
    <resource: #image>
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10371
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10372
    ^Icon
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10373
        constantNamed:'GenericToolbarIconLibrary newMenu24x24Icon'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10374
        ifAbsentPut:[(Depth4Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10375
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 10376
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
 10377
@QDQDQDQDQLE@0@C@RH"H"H"H"T5@0@0@R]2I7H'']2TC@0L@@RH"H"H"H"TEL3@@AUUUUUUUUUL3L3L3@@@@@@@@@@@@L3@@@@@@@@@@@@@C@0L@@@@@@@@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10378
@@@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:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10379
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10380
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10381
newSystemBrowser24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10382
    "This resource specification was automatically generated
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10383
     by the ImageEditor of ST/X."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10384
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10385
    "Do not manually edit this!! If it is corrupted,
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10386
     the ImageEditor may not be able to read the specification."
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10387
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10388
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10389
     self newSystemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10390
     ImageEditor openOnClass:self andSelector:#newSystemBrowser24x24Icon
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10391
     Icon flushCachedIcons
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10392
    "
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10393
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10394
    <resource: #image>
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10395
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10396
    ^Icon
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10397
        constantNamed:'GenericToolbarIconLibrary newSystemBrowser24x24Icon'
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10398
        ifAbsentPut:[(Depth4Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10399
@@@@@@@@@@@@@@@@@@@@@@@@@@@@Y&@@@@@@@@@@@@@FXFX@@FY&Y&Y#@@A&XFY @FQDQDQB@@A @@A @FQDQDQB@@A&XFY @CH"H"H"@@@FXFX@@@@@@@@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10400
@@@@Y&@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A!!DQDQD @@@@@@@@@2H"H"HJ
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10401
@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@@A&Y&Y&X0@@@@XBH"A%UUUUT @@@@@@@@@2H"H"H @@@@@@@@@@@@@@@@@@@@@@@@
5381
92c7db6c4e74 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5379
diff changeset
 10402
@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 255 0 127 127 127 170 170 170 255 0 0 255 255 0 255 255 255]; mask:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@8@@A<_?#>_?''?_?''?_?''?_?#>_?!!<@ @8@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10403
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10404
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10405
newWindowSpec24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10406
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10407
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10408
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10409
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10410
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10411
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10412
     self newWindowSpec24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10413
     ImageEditor openOnClass:self andSelector:#newWindowSpec24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10414
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10415
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10416
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10417
        constantNamed:#'GenericToolbarIconLibrary class newWindowSpec24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10418
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10419
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10420
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10421
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10422
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10423
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10424
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10425
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10426
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10427
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDP@@@@@@@@@@@@@@@@@@@@@AUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10428
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
 10429
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@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10430
@@A A A @@@@@@@@@@X@A @F');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10431
                colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 200 200 0 0 127 127 127 127 127 255 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10432
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10433
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10434
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10435
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10436
                                        fromPackedString:'@@@@@@@@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>@??>Q??>R???T??>8??????>8@@AT@@BR@@DQ');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10437
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10438
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10439
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10440
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10441
    "Modified: / 06-02-2007 / 19:40:22 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10442
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10443
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10444
new_24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10445
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10446
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10447
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10448
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10449
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10450
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10451
     self new_24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10452
     ImageEditor openOnClass:self andSelector:#new_24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10453
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10454
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10455
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class new_24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10456
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10457
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10458
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10459
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10460
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10461
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10462
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10463
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10464
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10465
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10466
@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@@@@@@@@@@@@FX@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10467
@@@@@@@@@@$FZP@I@@@@@@@@@@BVZPBP@@@@@@@@@@@IBP$@@@@@@@@@@@@F&Y@@@@@@@@@@@@&Y&Y&Y@@@@@@@@@@@@&Y@@@@@@@@@@@@@IBP$@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10468
@@BPBPBP@@@@@@@@@@$@BP@I');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10469
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10470
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10471
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10472
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10473
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10474
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQ@@BR@@AT@@@8@@G?@@@8@@AT@@BR@@DQ');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10475
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10476
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10477
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10478
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10479
    "Modified: / 06-02-2007 / 19:40:20 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10480
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10481
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10482
packageIn24x24Icon
5209
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10483
    "This resource specification was automatically generated
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10484
     by the ImageEditor of ST/X."
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10485
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10486
    "Do not manually edit this!! If it is corrupted,
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10487
     the ImageEditor may not be able to read the specification."
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10488
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10489
    "
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10490
     self packageIn24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10491
     ImageEditor openOnClass:self andSelector:#packageIn24x24Icon
5209
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10492
     Icon flushCachedIcons
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10493
    "
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10494
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10495
    <resource: #image>
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10496
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10497
    ^Icon
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10498
        constantNamed:'GenericToolbarIconLibrary packageIn24x24Icon'
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10499
        ifAbsentPut:[(Depth8Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10500
%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT,KB0,KAE]IRT%IRT%IRT%IRT%IRT%IRT,KB0,KAE]IRT
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10501
%IRT%IRT%IRT%IRT%IRT,KB0,KAEA)RT%IRT%IRT%IRT%IRT%IRT,K@),KAE]IRT%IRT%IRT%IRT%IRTDV(S LT:1\VG!!2Y.%IRT%IRT%IRT%IRT%E(WZC^3
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10502
IBPTL"JT%IRT%IRT%IRT%IRT%IR:AP!!;J>Q8;YRT%IRT%IRT%IRT%IRT%IRT8Q&Y-(= %IRT%IRT%IRT%IRT%IP]UJ\#H6P-#W+''9=+Z^Z@!!%IRT%IRTKD$3
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10503
5:0*9>]MN^_''#$_'')M[(,YRT%IQ7 X"#Y*F;T)(*J._''93?I_>[B2)RT%IPA+\ =FFDJE)\1%]9V:7D''''HS"]YRT%IP ]) \C^UKO+2/"($DM%6EP@CN.YRT
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10504
%IP<*AJ))-%NW11O9[V]$6J.853\)YRT%IR705]01IZ+X$Z*Z72QK2 ZK-MD%IRT%IRTMLE2''+5''6D@K_VVLU>%^ 63*%IRT%IRTP66_[^CK$L3ME]H00DFB
5209
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10505
TQ=Y%IRT%IRT,.0I;N3_;M<N60M,Z]CF7V>R%IRT%IRTRCU3R$*>SMSG@ <;T; [A:JT%IRT%IRT%I.4TE,8"4IX_!!9UCL>F%IRT%IRT%IRT%IRT@PD%IRWU
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10506
/6LP4YRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT%IRT') ; colorMapFromArray:#[220 170 60 238 212 149 215 159 53 206 154 55 248 206 99 145 207 140 177 181 168 126 115 98 128 218 120 222 166 61 249 212 116 225 175 64 158 109 29 251 206 88 219 165 60 215 159 52 128 116 97 174 193 173 241 194 77 129 218 121 98 209 89 157 116 45 249 211 118 142 222 137 252 212 110 125 216 119 216 165 58 153 106 27 250 204 86 240 229 207 213 155 51 167 115 31 228 184 77 235 193 90 157 180 156 187 145 62 89 208 81 193 187 180 121 207 115 247 203 93 219 169 60 86 207 77 167 126 53 122 217 115 236 227 207 132 193 128 169 124 40 227 178 66 156 111 33 245 211 123 107 212 99 216 166 74 177 131 52 215 160 56 246 203 92 115 214 108 213 157 53 163 184 162 91 208 83 165 113 30 227 180 69 253 212 106 253 209 92 252 210 102 224 174 63 177 125 36 215 158 52 207 155 59 167 122 45 72 176 65 233 184 71 92 57 7 196 143 49 215 173 93 218 161 56 253 209 91 217 159 54 177 194 176 247 201 83 250 205 87 203 148 50 167 116 32 232 212 151 163 112 30 212 174 102 161 110 29 254 213 105 222 172 62 214 157 52 151 108 38 177 196 177 208 153 51 215 164 57 238 191 79 167 122 39 248 202 84 159 181 158 251 212 112 231 182 69 184 133 47 175 194 174 144 103 39 244 210 125 220 169 60 136 220 131 176 124 36 142 206 138 233 187 78 178 128 37 225 170 65 154 177 153 161 112 30 223 173 63 249 207 98 179 134 49 217 161 56 169 178 167 208 159 56 246 200 83 241 226 190 126 209 120 112 73 12 159 181 157 125 217 118 157 117 51 219 174 76 214 156 51 245 201 92 122 216 115 243 205 111 173 122 34 176 126 37 234 186 75 233 185 72 127 115 97 92 207 83 247 211 119 219 181 98 254 211 98 214 158 53 175 137 64 129 200 123 53 32 3 117 215 110 207 156 58 195 156 74 128 98 47 240 194 81 0 0 0 243 210 129 227 177 66 246 211 122 249 203 85 119 214 112 240 201 102 165 145 115 239 193 82 238 198 99 199 151 53 225 171 65 170 128 44 243 210 128 195 195 195 246 211 121 245 202 95 221 199 159 244 198 80 208 160 72 239 191 75 242 195 78 234 186 71 229 180 68 197 151 65 251 208 99 227 177 65 254 211 95 85 206 76 236 217 172 206 151 55 99 210 90 169 134 80 196 158 81 116 214 109 214 181 116 159 110 29 201 150 51 177 197 177 242 213 143 254 211 94 214 164 58 217 160 55 167 129 71 170 121 36 177 132 49 231 183 73 203 155 55 226 176 65 92 208 83 166 115 31 216 159 53 254 212 104 250 208 100 210 167 74 217 164 62 175 129 46 166 120 42 212 161 56 130 93 31 168 118 32 194 194 194 155 111 39 162 116 35 216 159 54 168 156 140 250 208 99 206 158 69 221 171 61 245 199 81 69 43 5 208 156 56 196 148 52 164 113 30 241 212 143 221 166 60 224 170 65 177 197 175 223 174 64 219 168 59 119 215 112 252 207 89 241 196 87 131 91 25 239 196 90 196 148 50 160 116 42 253 211 103 221 166 61 158 181 156]; mask:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@@G<@@G<@@G<@@G<@@??@@_>@@O<@@G8@A??8G??<O??<O??<O??<O??<O??8G??8G??8G??8G??0C??@@?<@@@@@') ; yourself); yourself]
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10507
!
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10508
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10509
packageOpen24x24Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 10510
    <resource:#programImage>
4072
4a9f93742645 changed: #packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4071
diff changeset
 10511
    ^ self packageOpen24x24Icon2
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10512
!
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10513
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10514
packageOpen24x24Icon1
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10515
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10516
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10517
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10518
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10519
     the ImageEditor may not be able to read the specification."
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10520
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10521
     self packageOpen24x24Icon1 inspect
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10522
     ImageEditor openOnClass:self andSelector:#packageOpen24x24Icon1
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10523
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10524
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10525
    ^ Icon 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10526
        constantNamed:'GenericToolbarIconLibrary class packageOpen24x24Icon1'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10527
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10528
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10529
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10530
                height:22;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10531
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10532
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10533
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10534
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10535
                            fromPackedString:'
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10536
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@OB (JB (JB (J
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10537
B (JB @@@@@@@@@@@@<JA XFA XFA XFA LHC@@@@@@@@@@@C1,FA XFA XFA XFA XIE0(@@@@@@@@[B XFA XFA XFA XFA@T^GA J@@@@@AHJA XFA XF
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10538
A XFA XBA1(_GQ0J@@@@EQ4F@PXFA XFA XFA XEF2$#G (@@@@UC2@ HB@_G!!<_GQ<_G14/L"0 B @@@@@OK2<,KB,+J2$)JR$)GP(%MB<JB @@@@<0MST3
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10539
L3L0LB</K20$EQ(JJ0(PB @@@@<OCP4MCP0LC@0JB (JFQ LB 8TB @@@@@@B!!(ZF!!(ZF!!(ZF!!(ZFQ PC!!@TB @@@@@@C14^G!!8]GQ4]GA,[F1$VEQTTB @@
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10540
@@@@DA8_G!!8\GA0\GA0\F1$VEQTTB @@@@@@D!!8!!HQ<_G1<]GA0\F1$VEQTTB @@@@@@D"D%IRT"H!!4]GQ4]GQ$VEQTJ@@@@@@@@D"\*JBX&I!!8^G!!8^GQ$V
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10541
EQ@@@@@@@@@@D280J"(''I2@ HA8^GQ$VD@@@@@@@@@@@D3P4LS@-KR4%IBD!!H@,J@@@@@@@@@@@@DP,KB0,KB0,KB0,KB0,@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10542
                colorMapFromArray:#[ 0 0 0 0 24 40 4 56 100 4 60 110 24 86 40 36 60 80 44 44 40 48 70 50 88 46 10 108 56 10 108 58 10 112 58 0 116 60 10 124 66 10 124 72 20 132 74 20 132 76 20 140 78 20 140 82 30 144 82 20 144 86 30 148 92 40 152 96 40 152 98 40 160 104 50 164 106 50 172 116 60 180 124 70 180 128 70 188 132 70 192 140 80 196 140 80 196 142 80 196 150 90 200 154 90 204 148 90 204 150 90 204 158 90 204 162 100 208 158 100 208 166 100 212 156 90 212 170 110 216 162 100 216 164 110 216 174 110 216 178 120 220 170 120 220 182 120 220 186 130 224 184 140 228 190 150 228 200 160 244 224 200 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10543
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10544
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10545
                            height:22;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10546
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10547
                                        fromPackedString:'@@@@@@@@@@@@@O?<@_?<@??>A???C???G??>O??<O??<_??<_??<G??<G??<G??<G??<G??8G??0G?? G??@G?>@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10548
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10549
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10550
        ]
4069
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10551
!
f7e1541fe0a9 category of:7 methods
Claus Gittinger <cg@exept.de>
parents: 4068
diff changeset
 10552
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10553
packageOpen24x24Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10554
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10555
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10556
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10557
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10558
     the ImageEditor may not be able to read the specification."
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10559
    "
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10560
     self packageOpen24x24Icon2 inspect
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10561
     ImageEditor openOnClass:self andSelector:#packageOpen24x24Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10562
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10563
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10564
    ^ Icon 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10565
        constantNamed:'GenericToolbarIconLibrary class packageOpen24x24Icon2'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10566
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10567
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10568
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10569
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10570
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10571
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10572
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10573
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10574
                            fromPackedString:'
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10575
TUEQTUEQTUEQTTR3TUEQTUEQTUEQTUEQTUEQTUEQTUEQ3;=MTUEQ63]QTUEQTUEQTUEQTUEQTUF3V#V@W%EQFXECTUEQTUEQTUEQTUEQ,08B\7>$%H9^V7M(
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10576
)%EQTUEQTUEQTPZ3W0<4\6"$/+6[Y6"L+MYQTUEQTUEQ/21K*@=[''\4;.:-5''V"XDJCITUEQTUEQG#GQ*A)&4+,0R-<<%QL\!!UW^"UEQTUEQT\,G)47F8K1V
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10577
$!!^/$70:*T#R5UMQTV(8Z%6CP@/T.<]#-;@#B$$T.YX.]4EQTUD8NV,3^!!^0E"H/[:LVX2JF4JGD&UEQTUEQ "Z.2+ZWOT*GJ&OSR)>RXLU0_V%6TUEQTXJ"
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10578
P+5WX)KB"6I;3):*7FE-VBBOTUEQTUER)W I[,!!.6,LECLA\Q%SLO%EQTUEQTUF=/P@X,U#CDZEEEV"P"A=NTUEQTUEQTUE5%*T@I[!!17R$RID_]\%PCTUEQ
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10579
TUEQTUDA!!XV5-[U>^]7]7P$I[P"4TUEQTUEQTUDADA@PDABJ-T^EXVE!!*R64TUEQTUEQTUFMGDIB]GR:DACA0YFQAI24TUEQTUEQTUEQSFWYZF U HAOS2"D
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10580
[M!!QTUEQTUEQTUEQTZ5YY6][)JRLJEA$&%EQTUEQTUEQTUEQTUDMJ0HO\94!!SI+WTUEQTUEQTUEQTUEQTUEQL#X]C40[&))QTUEQTUEQTUEQTUEQTUEQT[H?
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10581
I9*ZTUEQTUEQTUEQTUEQTUEQTUEQTUFZ&%EQTUEQTUEQTUEQ');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10582
                colorMapFromArray:#[ 240 158 10 244 178 40 255 254 150 188 168 150 255 222 60 156 108 10 252 204 100 255 252 180 212 126 30 255 208 50 204 168 0 184 134 0 232 174 60 212 134 60 255 232 110 255 255 160 255 228 70 148 90 0 252 240 150 248 216 70 228 144 10 255 254 130 212 182 0 192 148 0 248 184 30 252 204 60 255 244 130 180 104 60 255 234 80 248 214 150 252 186 50 208 112 10 196 94 20 255 244 110 220 196 0 200 162 0 248 230 110 236 148 10 255 212 70 180 106 60 255 240 90 240 204 120 255 255 0 252 234 130 255 216 110 212 128 30 255 192 20 228 210 0 208 176 0 255 240 170 204 138 90 255 230 100 255 255 150 255 246 100 216 120 40 248 200 110 252 184 40 255 222 120 244 196 50 255 198 30 188 142 0 216 190 0 200 198 200 204 104 30 255 180 10 180 168 160 255 236 80 232 188 110 255 246 230 236 180 80 240 194 50 228 168 50 255 204 40 196 156 0 224 204 0 255 252 190 220 138 40 255 186 20 180 158 140 255 242 90 248 204 80 0 0 0 252 174 20 200 118 40 212 124 20 255 210 50 212 184 0 184 136 0 232 146 10 236 178 60 255 204 50 255 255 140 255 248 100 248 182 40 252 204 70 255 252 170 220 138 20 255 216 60 220 198 0 216 192 0 208 116 30 244 192 60 255 216 70 255 255 130 255 254 110 208 112 40 252 182 30 255 254 170 204 116 30 255 206 40 180 134 10 248 248 0 224 140 20 228 130 0 255 188 20 255 255 120 255 238 80 248 178 30 204 110 50 200 116 30 252 212 50 255 212 50 180 130 0 224 208 0 232 148 10 212 120 30 255 228 90 255 255 110 255 244 90 248 190 50 244 186 60 255 218 100 252 230 80 255 218 60 220 200 0 232 222 0 216 120 10 220 124 10 255 234 100 252 242 10 255 250 100 232 158 40 236 184 80 184 120 80 244 216 80 255 224 70 228 214 0 184 140 0 248 182 20 236 158 20 255 200 40 204 164 0 255 246 90 208 196 180 204 158 130 255 244 140 212 132 30 255 254 120 204 180 10 224 210 0 248 194 40 220 126 10 255 212 60 212 178 0 255 252 100 248 182 30 228 160 60 255 216 90 255 255 170 255 214 50 164 116 20 168 114 0 248 200 50 212 136 50 255 252 130 196 152 0 200 158 0 240 156 10 204 148 110 255 194 50 188 166 150 255 220 60 180 134 0 232 226 0 224 130 0 252 206 50 255 242 110 204 166 0 208 172 0 248 176 20 252 174 10 255 190 40 252 250 100 255 226 70 236 232 0 152 96 0 208 108 10 220 128 10 255 190 20 212 180 0 216 192 10 224 140 30 252 180 20 255 196 50 188 104 40 255 238 90 228 220 0 252 216 140 224 148 30 255 255 190 255 196 30 220 194 0 192 146 0 232 144 10 228 150 40 176 124 100 180 96 50 255 244 100 156 98 0 252 196 90 240 182 40 212 114 10 255 202 40 188 140 0 200 160 0 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10583
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10584
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10585
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10586
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10587
                                        fromPackedString:'@C@@@GF@@O''@@?? C??0G??8G??<C??>_??>O??<G???C???A??<A??8A??8A??8A??8A??8@??0@_? @O?@@G>@@C8@@A @');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10588
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10589
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10590
        ]
4071
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10591
!
f435e6a02389 changed:
Claus Gittinger <cg@exept.de>
parents: 4069
diff changeset
 10592
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10593
packageOut24x24Icon
5209
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10594
    "This resource specification was automatically generated
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10595
     by the ImageEditor of ST/X."
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10596
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10597
    "Do not manually edit this!! If it is corrupted,
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10598
     the ImageEditor may not be able to read the specification."
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10599
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10600
    "
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10601
     self packageOut24x24Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10602
     ImageEditor openOnClass:self andSelector:#packageOut24x24Icon
5209
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10603
     Icon flushCachedIcons
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10604
    "
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10605
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10606
    <resource: #image>
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10607
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10608
    ^Icon
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10609
        constantNamed:'GenericToolbarIconLibrary packageOut24x24Icon'
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10610
        ifAbsentPut:[(Depth8Image new) width:24; height:24; bits:(ByteArray fromPackedString:'
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10611
!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(YN%XZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!)*NX9ZF!!(ZF
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10612
!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF$E%TO4*V!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZPO@!!:^%>#%(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!&>''[#</N3,// RF!!(ZF!!(ZF!!(ZF!!(ZF&!!,HVUAP
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10613
TEAPTAH.!!(ZF!!(ZF!!(ZF!!(ZF!!(ZFEC,;[F1Q!!XZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZFDCT@XVF%NHZF!!(ZF!!(ZF!!(ZF!!(YO@* ]EHIVB0.\JBH"/8-G!!(ZF!!(ZFN*0\
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10614
%H= ]:Z5HKB+.JI%R8^:Y(ZF!!(Y0G2T%_G1[\''UDCRMZ@Y.G([)WSXZF!!(XZ!!;Y1\WD%IRT*_CBX.U1''J3DG@8ZF!!(Y>_V^Q+0)@PEN6-(%FY1VCA2EBE8ZF
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10615
!!(ZSER.WA"ZR$)F/B)&HJ4E3E&''A#XZF!!(X6!!L@GWWNSPU]RSA"7\2FJ#I<4!!(ZF!!(ZFD1L>KV$!!K@\''.1$^0LE6BSN*!!(ZF!!(ZF,&I-X&I),*9U/P89Z &@
5209
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10616
Z6,E!!(ZF!!(ZF]@18C@0LC@0L,)83)HE+,;QE!!(ZF!!(ZF+QEH,[DQ_7=?_7>3*Z@OIF"F!!(ZF!!(ZF!!$''B^[1XW%9^OS^ (G,$!!(ZF!!(ZF!!(ZF!!(ZF!!#H2L#IC
4afe9c5e5dbe class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5201
diff changeset
 10617
JVP$''XZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF!!(ZF') ; colorMapFromArray:#[84 202 80 240 202 100 212 174 100 208 160 60 156 180 160 152 108 40 244 198 80 224 174 60 128 218 120 176 126 40 252 208 90 72 180 60 220 166 60 100 144 90 156 112 40 152 106 30 68 174 60 216 160 60 120 208 120 176 132 50 68 164 60 240 192 80 220 168 60 200 150 50 156 118 50 144 104 40 240 212 150 144 206 140 216 166 70 188 146 60 176 138 60 244 206 110 64 168 60 220 170 60 68 44 10 72 130 70 128 116 100 248 212 120 244 200 80 224 176 60 56 34 0 168 130 70 244 212 120 240 194 80 220 172 60 200 152 50 156 178 150 100 210 90 240 212 140 236 186 80 192 188 180 180 128 40 168 122 50 84 204 80 216 182 120 212 156 50 176 182 170 156 112 30 236 228 210 88 208 80 144 208 140 216 156 50 180 134 50 116 214 110 252 210 90 232 182 70 212 162 60 168 156 140 156 172 120 128 98 50 248 206 100 236 194 90 216 162 60 164 146 120 116 216 110 244 202 100 232 188 80 212 168 70 176 194 180 240 230 210 92 208 80 72 176 70 236 186 70 255 212 90 120 214 110 168 120 40 76 186 70 232 184 70 212 158 50 124 216 120 164 174 80 244 214 140 248 208 100 228 176 70 216 158 50 120 216 110 168 126 50 84 200 70 224 170 70 128 200 120 184 134 50 132 92 30 236 218 170 248 204 90 196 196 200 216 164 60 172 122 40 168 116 30 84 206 80 224 172 70 136 220 130 176 196 180 240 226 190 252 212 110 232 212 150 228 178 70 208 152 60 180 188 130 168 122 40 60 154 60 224 166 60 204 148 50 124 218 120 132 94 30 244 210 130 248 200 80 228 184 80 216 160 50 172 122 30 168 118 30 76 188 70 232 186 70 204 156 60 168 178 170 0 0 0 252 208 100 240 198 100 220 182 100 216 166 60 172 128 40 168 124 40 220 200 160 132 194 130 196 152 70 176 198 180 252 204 90 248 202 80 228 180 70 208 158 70 164 184 160 160 182 160 244 196 80 255 214 110 196 158 80 176 194 170 252 210 100 64 164 60 196 194 190 208 154 60 164 116 40 160 110 30 244 202 90 92 58 10 128 210 120 176 124 40 76 180 70 72 178 60 144 222 140 208 160 70 164 112 30 160 116 40 60 152 50 216 174 90 196 144 50 176 130 50 252 206 90 64 166 60 220 162 60 208 156 60 164 114 30 160 112 30 68 172 60 255 212 100 196 156 70 52 32 0 252 212 100 240 196 90 220 174 80 208 154 50 156 116 50 108 212 100 112 74 10 224 172 60 196 148 50 168 134 80]; mask:((ImageMask new) width:24; height:24; bits:(ByteArray fromPackedString:'@@@@@@@@@A @@C0@@G8@@O<@@_>@@??@@G<@@G<@A??8G??<O??<O??<O??<O??<O??8G??8G??8G??8G??0C??@@_<@@@@@') ; yourself); yourself]
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10618
!
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 10619
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10620
photoAreaIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10621
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10622
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10623
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10624
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10625
     the ImageEditor may not be able to read the specification."
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10626
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10627
     self photoAreaIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10628
     ImageEditor openOnClass:self andSelector:#photoAreaIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10629
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10630
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10631
    ^ Icon constantNamed:'GenericToolbarIconLibrary class photoAreaIcon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10632
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10633
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10634
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10635
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10636
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10637
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10638
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10639
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10640
                            fromPackedString:'
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10641
QTUEQTT@@@@@@@@@@@@@@@@@@@@@@@@@QTUEQTT@@@@@@@@@@@@@@@@@@@@@@@@@QTT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@QTT@@@@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10642
@@@@@@@@QTT@@C !!NC 8NC 8@@@@@@@@@@@@@@@@@@@@NQ]CP4L*@@@@@@@@@@@@@@@AI @@@@ACI!!P.JR$#JR$)JR$)JR$)JR$%I @@@@ACI#<.J2$#H2L#
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10643
H2L#H2L#H2$TI @@@@ACEATTA"L#H2LJB (JB"XJA",+I @@@@ACI!!TTDDH#IS8FJR$)JRX&IPX+I @@@@ACEATKH2L&B"$)IRD JR$)I (+I @@@@ACI#<T
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10644
D@X&J3(5CAX1MST)N"X+I @@@@ACI#<&DB$&HRPVLS01LSTUN"X+I @@@@ACB!!4JD@4&CQ(VOA8^KCDUN"X+I @@@@ACIR8JJ2$&JQ(NKC(1KCDUN"X+I @@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10645
@@ACIP(\J3,&A#<<LP81LT@:A!!PFI @@@@ACMRT%A X:MR$0C 8NF#(!!MQPFI @@@@ACBST=A XFA#<)LC@0HS(?I XFI @@@@@[BR<)HRD!!HRD:N#(:N#(!!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10646
N#(:I @@@@@[F1(ZF!!(ZF!!)CL#H2P4PZF!!)D@DUE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DUE@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DUE@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10647
@@@@@@@@@DUEQTUE@@@@@@@@@@@@@@@@@@@@@@@@@DUEQTUE');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10648
                colorMapFromArray:#[ 143 143 143 162 162 162 23 41 73 195 195 195 212 212 212 222 222 222 236 236 236 242 242 243 255 255 255 138 138 138 161 161 161 179 179 179 37 53 82 208 208 209 72 84 105 235 235 235 243 243 243 254 254 254 123 131 145 158 158 158 178 178 178 193 194 194 39 61 99 92 92 92 221 225 233 240 241 244 122 122 122 135 135 135 155 155 155 168 173 182 169 179 200 77 77 77 219 219 219 229 229 229 239 241 243 248 248 248 133 133 133 153 153 153 174 174 174 190 190 190 205 205 205 216 217 217 100 100 100 240 240 240 85 107 141 152 152 152 171 171 172 187 187 187 202 202 202 44 68 111 98 98 98 237 237 237 247 248 248 150 150 150 161 164 172 186 186 186 201 201 201 215 215 215 215 217 228 238 236 234 74 97 140 145 145 146 167 167 167 184 184 184 192 196 204 85 85 85 225 225 225 108 108 108 116 116 116 25 25 25 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10649
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10650
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10651
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10652
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10653
                                        fromPackedString:'>@@@>@@@0@@@0@@@3?@@G??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??;@@@C@@@C@@@_@@@_');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10654
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10655
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10656
        ]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10657
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10658
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10659
photoIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10660
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10661
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10662
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10663
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10664
     the ImageEditor may not be able to read the specification."
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10665
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10666
     self photoIcon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10667
     ImageEditor openOnClass:self andSelector:#photoIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10668
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10669
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10670
    ^ Icon constantNamed:'GenericToolbarIconLibrary class photoIcon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10671
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10672
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10673
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10674
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10675
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10676
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10677
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10678
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10679
                            fromPackedString:'
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10680
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10681
@@@@@@@@@@@@@C !!NC 8NC 8@@@@@@@@@@@@@@@@@@@@NQ]CP4L*@@@@@@@@@@@@@@@AI @@@@ACI!!P.JR$#JR$)JR$)JR$)JR$%I @@@@ACI#<.J2$#H2L#
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10682
H2L#H2L#H2$TI @@@@ACEATTA"L#H2LJB (JB"XJA",+I @@@@ACI!!TTDDH#IS8FJR$)JRX&IPX+I @@@@ACEATKH2L&B"$)IRD JR$)I (+I @@@@ACI#<T
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10683
D@X&J3(5CAX1MST)N"X+I @@@@ACI#<&DB$&HRPVLS01LSTUN"X+I @@@@ACB!!4JD@4&CQ(VOA8^KCDUN"X+I @@@@ACIR8JJ2$&JQ(NKC(1KCDUN"X+I @@
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10684
@@ACIP(\J3,&A#<<LP81LT@:A!!PFI @@@@ACMRT%A X:MR$0C 8NF#(!!MQPFI @@@@ACBST=A XFA#<)LC@0HS(?I XFI @@@@@[BR<)HRD!!HRD:N#(:N#(!!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10685
N#(:I @@@@@[F1(ZF!!(ZF!!)CL#H2P4PZF!!)D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10686
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10687
                colorMapFromArray:#[ 143 143 143 162 162 162 23 41 73 195 195 195 212 212 212 222 222 222 236 236 236 242 242 243 255 255 255 138 138 138 161 161 161 179 179 179 37 53 82 208 208 209 72 84 105 235 235 235 243 243 243 254 254 254 123 131 145 158 158 158 178 178 178 193 194 194 39 61 99 92 92 92 221 225 233 240 241 244 122 122 122 135 135 135 155 155 155 168 173 182 169 179 200 77 77 77 219 219 219 229 229 229 239 241 243 248 248 248 133 133 133 153 153 153 174 174 174 190 190 190 205 205 205 216 217 217 100 100 100 240 240 240 85 107 141 152 152 152 171 171 172 187 187 187 202 202 202 44 68 111 98 98 98 237 237 237 247 248 248 150 150 150 161 164 172 186 186 186 201 201 201 215 215 215 215 217 228 238 236 234 74 97 140 145 145 146 167 167 167 184 184 184 192 196 204 85 85 85 225 225 225 108 108 108 116 116 116 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10688
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10689
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10690
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10691
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10692
                                        fromPackedString:'@@@@@@@@@@@@@@@@C?@@G??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??8@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10693
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10694
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10695
        ]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10696
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 10697
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10698
redoXP24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10699
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10700
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10701
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10702
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10703
     the ImageEditor may not be able to read the specification."
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10704
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10705
     self redoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10706
     ImageEditor openOnClass:self andSelector:#redoXP24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10707
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10708
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10709
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class redoXP24x24Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10710
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10711
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10712
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10713
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10714
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10715
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10716
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10717
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10718
                            fromPackedString:'
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10719
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A,WEEKUE5-@@@@@@@@@@@@@@@@@@@@@E0>D!!</HQ%@VF4@@@@@
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10720
@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
 10721
@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
 10722
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
 10723
@@@@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
 10724
@@@@@@@@@@@@@@@@V HXF05P@@@@@@@@@@@@@@@@@@@@@@@@@E(BDT!!+@@@@@@@@@@@@@@@@@@@@@@@@@@AZOF,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10725
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10726
                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 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10727
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10728
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10729
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10730
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10731
                                        fromPackedString:'@@@@@@@@A?@@C?0^G?8^O?<^O?>^O!!?^_@?>_@_>_@O>O!!?>O#?>O3?>G3?>G8@@C<@@C>@@A?@@@?@@@_@@@N@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10732
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10733
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10734
        ]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10735
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 10736
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10737
reload24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10738
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10739
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10740
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10741
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10742
     the ImageEditor may not be able to read the specification."
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10743
    "
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10744
     self reload24x24Icon inspect
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10745
     ImageEditor openOnClass:self andSelector:#reload24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10746
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10747
    
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 10748
    ^ Icon constantNamed:'GenericToolbarIconLibrary reload24x24Icon'
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10749
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10750
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10751
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10752
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10753
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10754
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10755
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10756
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10757
                            fromPackedString:'
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10758
\GA0\GA0\GA0\GA0\GA0\GA0[6=/[6=/\GA0\GA0\GA+N <@B0@OJU1+[6=/W@I+\GA0\GA0Z3(MJ4)YV%9RMAXIWF-\B Y+\GA0\GA+C2EXR346K3!!DT%9P
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10759
DQ\JTP-+\GA0\G@_H%\<IBT&KR</NC9YW")QX -+\GA0\FXMTTH4MSX6K"<0NC 9SFI^Z@-+\GA0\@<4U5D4MC-RW$0>NC >O$1EZ@-+\GA0Z05CD DD@0@A
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10760
DCQ^VS8>O#=EZ@-+\GA0N!!$FEA UBD]+Z!!0MR&EEO$UEZ@-+[6=/C0D#L#H\W6-+Z6,MTVELSD5SZ@-+[6=/@SMUU$%%Z6-+[ 1PXVI(ZF!!(Z@-+[6=/Z6-+
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10761
Z6-+Z6-+B @@@@@@@@@@@@E+[0H@@@@@@@@@@@@JZ6-+Z6-+Z6-+Z6-+[0-(ZF!!(ZFI"T@))Z6-+Z5-''Y4@AZ6-+[0-(T5MMT6IQCVM+Z6-,LTEHL0DNZ6-/
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10762
[0-(QTUESFIPCQ9-Z6@SGR@[BQ$(Z6-/[0-(QTUEO4QYW#PP@ @EA0DRP05$Z6-/[0-(QUMEO#8>QEM^VC04MEEWM@1+Z6-/[0-(X&!!SO#8>NC\6OS45MTIQ
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10763
CUQ+Z6=/[0-(U2)!!V#88NC\.K"0,OED"F&-+Z6=/[0-QB!!LQTVISQC8=OS5QVBDLZ6-+[6=/[0XJQ&-OBQ$;VU9^WT(+CR]+Z6-/[6=/[0ENZ6-+Z4<\C@@K
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10764
@@0''Z6-+Z6-/[6=/[6-+Z6-/Z6-+Z6-+Z6-+Z6-+Z6=/[6=/');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10765
                colorMapFromArray:#[ 0 79 191 15 80 191 15 80 192 15 95 191 16 95 176 16 95 191 16 95 192 31 95 176 31 95 191 31 95 192 31 96 192 31 111 207 32 96 192 32 111 207 47 96 192 47 111 192 47 112 207 47 112 208 47 127 208 48 111 192 48 112 176 48 112 191 48 127 208 63 112 192 63 127 176 63 128 208 64 112 192 64 127 191 79 127 192 79 128 191 79 128 192 79 128 207 79 143 191 79 144 223 79 159 223 80 143 191 80 175 239 80 176 239 80 176 240 95 128 192 95 143 192 95 143 207 95 160 224 95 175 224 95 176 239 95 176 240 95 191 240 95 191 255 95 192 255 96 143 208 96 144 191 96 144 192 96 176 239 96 191 239 96 191 240 96 192 240 96 192 255 96 207 255 111 144 208 111 176 239 111 191 239 111 192 240 111 207 255 111 208 255 112 159 207 112 160 207 112 192 239 112 192 240 112 207 255 112 208 255 127 159 192 127 159 207 127 160 192 127 160 207 127 207 240 127 208 240 127 208 255 127 223 255 128 159 207 128 160 207 128 207 240 128 208 240 128 208 255 128 223 255 143 160 207 143 175 192 143 176 207 143 208 240 143 208 255 143 223 255 143 224 255 144 176 208 144 176 223 144 223 255 144 224 255 159 175 207 159 176 223 159 224 255 159 239 255 160 176 207 160 191 207 160 191 208 160 191 224 160 192 208 160 239 255 175 191 207 175 191 208 176 192 208 176 207 224 191 192 223 192 208 224 240 240 239 240 240 240 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10766
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10767
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10768
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10769
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10770
                                        fromPackedString:'@@@@@G>F@_?.@??>A??>C??>C??>C??>G>?>G<O>G8?>@@?>_?@@_?C8_>O8_?_8_??8_??0_??0_?? _??@]?>@X_8@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10771
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10772
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 10773
        ]
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10774
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 10775
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10776
rightArrow24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10777
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10778
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10779
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10780
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10781
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10782
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10783
     self rightArrow24x24Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10784
     ImageEditor openOnClass:self andSelector:#rightArrow24x24Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10785
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10786
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10787
        constantNamed:#'GenericToolbarIconLibrary class rightArrow24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10788
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10789
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10790
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10791
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10792
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10793
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10794
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10795
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10796
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10797
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10798
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10799
@@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
 10800
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
 10801
@@@@@@@@@@@@@QXQF H@@@@@@@@@@@@@@@@@@@@@@@@@@0PZ@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q(B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10802
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10803
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10804
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10805
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10806
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10807
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10808
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10809
                                        fromPackedString:'@@@@@@@@@D@@@F@@@G@@@G @@G0@O?8@O?<@O?>@O??@O??@O?>@O?<@O?8@@G0@@G @@G@@@F@@@D@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10810
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10811
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10812
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10813
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10814
    "Modified: / 06-02-2007 / 19:40:15 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10815
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10816
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10817
rightArrow24x24disabledIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10818
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10819
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10820
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10821
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10822
     the ImageEditor may not be able to read the specification."
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10823
    "
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10824
     self rightArrow24x24disabledIcon inspect
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10825
     ImageEditor openOnClass:self andSelector:#rightArrow24x24disabledIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10826
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10827
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10828
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10829
        constantNamed:'GenericToolbarIconLibrary class rightArrow24x24disabledIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10830
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10831
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10832
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10833
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10834
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10835
                bitsPerSample:(#[ 8 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10836
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10837
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10838
                            fromPackedString:'
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10839
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10840
@@@@@@@@@@@@@@@@@@@@@0PB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PTF@ @@@@@@@@@@@@@@@@@@@@@@@@@@@0\@A@H@@@@@@@@@@@@@@@@A@PDA@PDH@P\I
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10841
@@XB@@@@@@@@@@@@@@@AA0(@@@@@B ,LB @D@ @@@@@@@@@@@@@MB \NB ,ODADRAP(@A H@@@@@@@@@@@@M@@TSE@TQEQXVD 0K@@PB@@@@@@@@@@@MB <V
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10842
E!!XVD!!XVD TODQ\B@@@@@@@@@@@AB <PAQ PFQLQD0<QE0H@@@@@@@@@@@@AA!!\WE1\WE!!HSC1DW@ @@@@@@@@@@@@@A@ HB@ HB@1DODQ\B@@@@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10843
@@@@@@@@@@@@@QTQE0H@@@@@@@@@@@@@@@@@@@@@@@@@@0PW@ @@@@@@@@@@@@@@@@@@@@@@@@@@@Q\B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0H@@@@@@@@@
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10844
@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10845
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10846
                colorMapFromArray:#[ 224 224 224 25 25 25 0 0 0 48 48 48 102 102 102 153 153 153 80 80 80 172 172 172 44 44 44 182 182 182 214 214 214 185 185 185 166 166 166 57 57 57 204 204 204 176 176 176 144 144 144 115 115 115 96 96 96 134 134 134 163 163 163 124 124 124 92 92 92 70 70 70 156 156 156 137 137 137 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10847
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10848
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10849
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10850
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10851
                                        fromPackedString:'@@@@@@@@@D@@@F@@@G@@@G @@G0@O?8@O?<@O?>@O??@O??@O?>@O?<@O?8@@G0@@G @@G@@@F@@@D@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10852
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10853
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10854
        ]
4061
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10855
!
6526c8291e90 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4059
diff changeset
 10856
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10857
sUnit24x24BaseIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10858
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10859
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10860
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10861
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10862
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10863
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10864
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10865
     self sUnit24x24BaseIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10866
     ImageEditor openOnClass:self andSelector:#sUnit24x24BaseIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10867
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10868
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10869
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10870
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10871
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10872
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10873
        constantNamed:'GenericToolbarIconLibrary sUnit24x24BaseIcon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10874
        ifAbsentPut:[(Depth2Image width:22 height:22) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10875
@@@@@@@@EUUUUUU@EUUUUUV@EUUUUUZ@EUUUUU*DEUUUUV*@EUUUUZ*AEUUUU**@EUUUV**@EUUUZ**@EUUU***@EUUV***@EUUZ***@EUU****KEUV****I
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10876
EUZ****@EU*****DEV*****@EZ*****@E******@F******@@@@@@@@K') colorMapFromArray:#[0 0 0 255 0 0 0 255 0]; yourself]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10877
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10878
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10879
sUnit24x24DebugIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10880
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10881
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10882
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10883
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10884
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10885
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10886
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10887
     self sUnit24x24DebugIcon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10888
     ImageEditor openOnClass:self andSelector:#sUnit24x24DebugIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10889
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10890
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10891
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10892
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10893
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10894
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10895
        constantNamed:'GenericToolbarIconLibrary sUnit24x24DebugIcon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10896
        ifAbsentPut:[(Depth4Image width:22 height:22) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10897
@@@@@@@@@@@@)#@BH"H"H"JRH"(@* H"H"H)$#H"(@* @"H"H"H#$("H^ XBH"JEH"NR"Y"0Y H"H( "IP^UVX P@"H"HHH(,HUU&A@BH"H"@H"HBEVXD@H"
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10898
H"JH&Y,0"XDP@%H"JH%U"I";DQ@BH".H%U"EVX@V@@T@.H%U"EUY 3@P@EV;%U"EUU&:DQ@EUX!!U!!%UU&@A!!D@UU"E"EUUVX@@@PARUT"EUUVXB!!D1@BH"Y9
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10899
UUVXB!!DQD@H"HQRH"H@JDQDP@"HQDVY&Y DQDQ@BHQDQDQDV@QDQD@HQDQDQDV@QDQDP@@@@@@@@@@@@@@@b') colorMapFromArray:#[0 0 0 0 255 0 255 0 0 44 44 44 152 49 49 248 0 0 110 110 110 100 72 72 108 0 0 209 0 0 148 148 148 52 0 0]; yourself]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10900
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10901
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10902
sUnit24x24Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10903
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10904
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10905
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10906
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10907
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10908
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10909
    "
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10910
     self sUnit24x24Icon inspect
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10911
     ImageEditor openOnClass:self andSelector:#sUnit24x24Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10912
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10913
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10914
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10915
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10916
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10917
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10918
        constantNamed:'GenericToolbarIconLibrary sUnit24x24Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10919
        ifAbsentPut:[(Depth4Image width:22 height:22) bits:(ByteArray fromPackedString:'
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10920
@@@@@@@@@@@@@@@BH"H"H"H"H"H"H@H"H"H"H"H"H"H0@"H"H"H"H"H"H3@BH"H"H"H"H"H3L@H"H"H"H"H!!DCL0@"H"H @@@!!D@L3@BH"H ???1D@L3L@H"
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10921
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
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 10922
@@@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]; yourself]
3544
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10923
!
3f7791271f1c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3539
diff changeset
 10924
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10925
saveImage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10926
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10927
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10928
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10929
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10930
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10931
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10932
     self saveImage24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10933
     ImageEditor openOnClass:self andSelector:#saveImage24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10934
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10935
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10936
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10937
        constantNamed:#'GenericToolbarIconLibrary class saveImage24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10938
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10939
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10940
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10941
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10942
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10943
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10944
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10945
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10946
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10947
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 10948
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
 10949
DPL3DQDQDQDQL3D@DPL3D3L3L3D#L3D@DPL3DQ@3L3D"L3D@DPL3D"@3L3D"L3D@DPL3D@@3L3D"L3D@DSDQD"H"H"DQLQD@DP@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10950
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10951
                colorMapFromArray:#[ 255 255 255 0 0 0 127 127 127 170 170 170 200 200 200 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10952
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10953
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10954
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10955
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10956
                                        fromPackedString:'@@@@@@@@O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??<O??8@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10957
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10958
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10959
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10960
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10961
    "Modified: / 06-02-2007 / 19:40:12 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10962
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10963
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10964
shell24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10965
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10966
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10967
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10968
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10969
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10970
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10971
     self shell24x24Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10972
     ImageEditor openOnClass:self andSelector:#shell24x24Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10973
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10974
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class shell24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10975
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10976
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10977
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10978
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10979
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10980
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10981
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10982
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10983
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10984
@@@@@@@@@@@@@@@@@@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
 10985
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
 10986
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10987
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10988
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10989
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10990
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10991
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10992
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10993
                                        fromPackedString:'@@@@G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8G??8C??8@@@@@H@(@H@(A/L(BIR(AI^(@)P(CIL(@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10994
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10995
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 10996
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10997
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 10998
    "Modified: / 06-02-2007 / 19:40:09 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 10999
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11000
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 11001
snapshot24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11002
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11003
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11004
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11005
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11006
     the ImageEditor may not be able to read the specification."
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 11007
    "
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 11008
     self snapshot24x24Icon inspect
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 11009
     ImageEditor openOnClass:self andSelector:#snapshot24x24Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11010
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11011
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11012
    ^ Icon constantNamed:'GenericToolbarIconLibrary class snapshot24x24Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11013
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11014
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11015
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11016
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11017
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11018
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11019
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11020
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11021
                            fromPackedString:'
4378
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
 11022
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@")J>/)BH@@@@@@@@@@@@@[&9?_7<@@D@\CP4MCQ1@
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
 11023
@@@@@@@@@CEJR$)JR$)%YZ.O"S 8"X>O#8>O#8<A@E9JR$)JR$)JN389B+.;B#$^BEI;L8=?@D&TG6MJR$)JM3\EFA XF@T7,X,!!Z(>/@@,B-QXFR$)PM3@@
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
 11024
[6=/[0ALULB))8>B@KYN&)</R$*X[66Y!!!!PT!!*M-''I"HZ79X@KYN]QX/R$)YI"Q&P%EQP&X$I%%8^YIX@KYN&)<#R$*>Q44.ZR\''ZTTRE;8C#H4#@KYN]QX#
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
 11025
R$(FC(:U]JJ"]IVNC Z7[KJ=@KYN]QX#R$)3Y1-H"(*J"$ [Y5>(,B"]@KYN&)<#R$(=O0$  XFA R@IO1Y=!!3QO@KYN]QX#R'' *GTL,+YBP+R2:PWX6IX#A
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
 11026
@KYN&)<#R&J4+A6E 4YF 723] \G^+''A@@,B&!!X5R%5 DZ@]GQ4]GQ56**)1\+<D@IFS%2%JR!!@PZJV.+*:.+*F****8OG\Z@LEKEY98)!!A$ZE]W+*:.+%]W
52406e551b3a changed: #snapshot24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4377
diff changeset
 11027
V*)$ZEXO@@2[T6M#T5M0\GB[J6E!!XVDSWGA0\I,L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11028
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11029
                colorMapFromArray:#[ 199 201 201 152 154 156 116 118 120 201 203 205 135 137 140 238 237 236 141 143 145 190 197 206 217 219 220 84 161 232 134 201 255 110 112 114 152 154 155 255 254 253 201 197 193 135 137 139 180 182 186 168 170 173 101 148 198 132 137 143 49 118 196 219 221 221 137 139 141 179 177 176 255 250 246 255 255 255 135 137 138 91 167 239 195 195 196 190 187 186 217 219 219 115 117 119 145 178 243 137 205 255 179 181 183 143 145 147 170 177 186 189 191 194 153 153 154 133 193 249 217 218 220 132 135 137 142 144 147 134 139 141 140 174 245 233 233 233 108 172 233 143 144 146 216 216 217 153 155 157 249 249 249 190 191 191 213 214 216 142 144 146 188 193 198 214 215 216 179 227 255 224 222 219 255 255 254 216 218 219 180 182 185 137 138 139 217 218 219 213 208 205 169 171 172 188 189 190 125 184 241 144 184 222 251 251 251 108 171 233 184 184 252 180 178 176 125 177 240 105 107 109 213 214 215 196 198 200 215 216 217 94 144 198 117 119 121 139 141 143 212 213 214 149 206 255 191 192 192 132 134 136 213 214 214 223 223 223 184 186 189 183 185 188 144 146 148 193 195 196 181 185 192 234 234 234 133 135 138 186 188 190 155 157 161 138 139 142 184 186 188 129 145 150 198 200 202 131 133 135 181 183 186 234 234 233 67 128 198 213 209 204 182 184 187 134 194 250 211 209 208 206 207 209 198 200 201 158 158 158 177 178 180 176 177 179 133 135 137 182 185 187 182 184 186 138 139 141 122 184 243 121 123 125 140 147 156 185 187 190 204 205 207 203 204 206 187 191 197 182 179 176 89 158 226 192 193 197 238 238 239 148 150 153 252 252 252 142 178 241 146 148 151 175 181 250 241 241 241 89 157 225 58 124 196 192 193 196 207 208 210 179 228 255 128 178 240 212 210 209 200 202 204 230 231 232 94 161 227 205 203 202 158 180 244 107 109 111 234 235 235 113 115 117 109 111 114 123 187 247 254 254 254 118 120 122 210 211 213 174 177 183 178 181 182 134 136 138 176 176 179 140 142 145 221 222 222 154 157 159 142 143 145 145 149 154 121 184 243 174 177 181 147 149 153 166 169 171 188 190 192 230 230 230 194 196 198 248 245 243 181 184 187 223 222 221 145 145 145 159 180 245 147 150 152 147 149 152 193 196 198 215 215 216 226 227 228 221 219 216 163 165 166 177 181 181 111 113 115 199 201 202 179 181 185 201 204 207 143 184 223 135 201 255 242 242 242 141 143 146 163 164 167 190 192 194 231 231 231 138 140 142 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11030
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11031
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11032
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11033
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11034
                                        fromPackedString:'@@@@@@@@@A>@G3?@_???_???_???_???_???_???_???_???_???_???_???_???_???_???_???_???@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11035
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11036
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11037
        ]
4369
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 11038
!
cd340a4186ab category of:8 methods
Claus Gittinger <cg@exept.de>
parents: 4366
diff changeset
 11039
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11040
systemBrowser24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11041
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11042
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11043
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11044
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11045
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11046
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11047
     self systemBrowser24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11048
     ImageEditor openOnClass:self andSelector:#systemBrowser24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11049
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11050
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11051
    ^ Icon 
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11052
        constantNamed:'GenericToolbarIconLibrary class systemBrowser24x24Icon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11053
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11054
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11055
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11056
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11057
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11058
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11059
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11060
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11061
                            fromPackedString:'
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11062
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDR@@@@@@@@@AL3L3L4@@@@@@@@@AL3L3L4@@@@@@@@@BQDQDQD@@@@@@@@@@@@@@@@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11063
@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@QDQDQD @@@@DDQD@UUUUUU@@@@@@@@@@$QDQDP@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11064
@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@@@@QDQDQD @@@@DDQD@VY&Y&Y@@@@@@@@@@$QDQDQ@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11065
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11066
                colorMapFromArray:#[ 0 0 0 255 255 255 172 170 170 255 0 0 128 128 130 0 255 0 255 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11067
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11068
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11069
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11070
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11071
                                        fromPackedString:'@@@@@@@@_? @_? @_? @_? @_? @_? @@ @@@ @@@ @@@ ??A0??A???A0??@ ??@ @@@ ??A0??A???A0??@@??@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11072
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11073
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11074
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11075
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11076
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11077
uiPainter24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11078
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11079
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11080
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11081
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11082
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11083
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11084
     self uiPainter24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11085
     ImageEditor openOnClass:self andSelector:#uiPainter24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11086
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11087
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11088
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11089
        constantNamed:#'GenericToolbarIconLibrary class uiPainter24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11090
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11091
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11092
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11093
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11094
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11095
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11096
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11097
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11098
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11099
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BYBPADQDQDQDQDP@BYBP@@@@@@@@@@@@BYBPAUUUT UUUUH@@@@@AUUUT TQTUH@@@@@APTQT UU
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11100
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
 11101
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@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11102
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11103
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11104
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11105
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11106
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11107
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11108
                                        fromPackedString:'@@@@@@@@??>N??>N??>N??>D??>D??>D??>D??>D??>D??>N??>_??>_??>N??>N??>N??>_??>_??>_??>_@@@_@@@N@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11109
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11110
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11111
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 11112
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 11113
    "Modified: / 06-02-2007 / 19:40:06 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11114
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11115
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 11116
undoXP24x24Icon
6003
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11117
    "This resource specification was automatically generated
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11118
     by the ImageEditor of ST/X."
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11119
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11120
    "Do not manually edit this!! If it is corrupted,
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11121
     the ImageEditor may not be able to read the specification."
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11122
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 11123
    "
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 11124
     self undoXP24x24Icon inspect
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 11125
     ImageEditor openOnClass:self andSelector:#undoXP24x24Icon
6003
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11126
     Icon flushCachedIcons
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11127
    "
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11128
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11129
    <resource: #image>
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11130
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11131
    ^Icon
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11132
        constantNamed:'GenericToolbarIconLibrary class undoXP24x24Icon'
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11133
        ifAbsentPut:[(Depth8Image width:24 height:24) bits:(ByteArray fromPackedString:'
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11134
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E5TR5E\@@@@@@@@@FMFP% @@@@@@@AXPA$!!K1<R
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11135
O%0@@@@@@D1ST#,@@@@@Y4TZL#@-JBT F@I\@@@@@D)OSS(@@@A[A"81K"\TC1@XF1 ?@@@@@D)IQ3$@@E,LK2<,DDQYX%\BFA,QT@@@@D)AN@,@V081K"HC
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11136
U @@@@A[A1,[O0@@@D(7M )[CR<+GS9"@@@@@@@@P1,[AP@@@D(5M@ MKR \O&T@@@@@@@@@R1,[B0@@@D(3LR\*IQ,>Y @@@@@@@@@@RA,[A0@@@D(/KBX$
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11137
E0AY@@@@@@@@@@@@AQ,[@P@@@D()IRD\EP,KB0,KO6T@@@ATC1,VS @@@D(#G!!,[F1,[F1,[DUX@@@@AF1,GV0@@@D(SD1LSD1LSD1LSAE<@@D,SF1YC@@@@
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11138
@@@@@@@@@@@@@@@@@@@@UP$[F0U^@@@@@@@@@@@@@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@E(BFA,VOP@@@@@@@@@@@@@@@@@@@@@@V HXF1 B
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11139
X@@@@@@@@@@@@@@@@@@@@@@@T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@D Q@%(@@@@@@@@@@@@@@@@@@@@@@@@@@@@<V @@@@@@@@@@@@@@@@@@@@@@@@@@
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11140
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11141
            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]
02724330d748 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5985
diff changeset
 11142
            mask:((ImageMask width:24 height:24) bits:(ByteArray fromPackedString:'@@@@@@@@@@_@^A?0^G?8^O?8^_?<^?!!<_?@<_>@<_<@<_8@<_?1<_?1<_?38@@G8@@O0@@_ @@? @@?@@@^@@@L@@@@@@@@@'); yourself); yourself]
3239
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 11143
!
1238c1fcdb8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3233
diff changeset
 11144
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11145
upArrow24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11146
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11147
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11148
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11149
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11150
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11151
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11152
     self upArrow24x24Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11153
     ImageEditor openOnClass:self andSelector:#upArrow24x24Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11154
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11155
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class upArrow24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11156
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11157
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11158
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11159
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11160
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11161
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11162
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11163
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11164
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11165
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@PH@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11166
@@@@@@@@@@@@@@@@@@@A@0PE@@@@@@@@@@@@@@@@@@@@@@@@@@DFA0 DAP@@@@@@@@@@@@@@@@@@@@@@@P$@A0(HA@T@@@@@@@@@@@@@@@@@@@@AB0@@C@4N
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11167
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
 11168
GA4OD1LJEPD\@Q0A@ @@@@@@@@@@@@@@@!!8^C1T_A@T@@@@@@@@@@@@@@@@@@@@@E @GHATRA@T@@@@@@@@@@@@@@@@@@@@@E @GDQT_A@T@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11169
@@@@@@@@@P@!!H!!TJA@T@@@@@@@@@@@@@@@@@@@@@@P\#IATTA@T@@@@@@@@@@@@@@@@@@@@@@QXXFPPDF H@@@@@@@@@@@@@@@@@@@@@@ TEAPTE@ H@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11170
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11171
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11172
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11173
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11174
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11175
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11176
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11177
                                        fromPackedString:'@@@@@@@@@@@@@F@@@O@@@_ @@?0@A?8@C?<@G?>@O??@_?? @?0@@?0@@?0@@?0@@?0@@?0@@?0@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11178
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11179
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11180
        ]
3446
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 11181
3c788ecf8027 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3445
diff changeset
 11182
    "Modified: / 06-02-2007 / 19:40:02 / cg"
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11183
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11184
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11185
windowInspectIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11186
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11187
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11188
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11189
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11190
     the ImageEditor may not be able to read the specification."
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11191
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11192
     self windowInspectIcon inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11193
     ImageEditor openOnClass:self andSelector:#windowInspectIcon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11194
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11195
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11196
    ^ Icon constantNamed:'GenericToolbarIconLibrary class windowInspectIcon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11197
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11198
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11199
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11200
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11201
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11202
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11203
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11204
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11205
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11206
@@@@@@@@E!!0[E1LOC@(HA TDA@PDA@PD@@@@@@@@GDP;L" $HA(UCP$IBP$IBP$N@@@@@@@@HTL9J2X#G1 RB0\GA0\GA0\N@@@@@@@@I7)4Y&U$X5YUUEQT
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11207
UEQTUEPN@@@@@@@@NHZF!!(ZF!!(ZF!!(ZF!!(ZF!!(XN@@@@@@@@M8ZJ"(*J"(ZJ"(*J"(*J!!(XN@@@@@@@@M(ZJ!!(ZF!!#*F!!(*F!!(X:!!(XN@@@@@@@@MXY.O#5A
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11208
S5]5!!(*F!!(X:!!(XN@@@@@@@@MDYQ\''1=^V5RSHNF!!(X:!!(XN@@@@@@@@VHQST5MST5M8T4FCN#(:!!(XN@@@@@@AY G!!8^G!!8^G!!8^F4>!!(ZF!!(XN@@@@@GA,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11209
#G!!ST5MST5MST81-WS(:#8XN@@@@@E=7K7!!S^G!!8^G!!8^G!!-OH:F#8XN@@@@@E%=K''!!S^G!!8^G!!8^G"BPH:F#8XN@@@@@E&BKW!!S^G!!8^G!!8^G"BRH:F#8XN
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11210
@@@@@E%=KG!!S^G!!8^G!!8^G"BRH>F#8XN@@@@@E)3J''!!S^G!!8^G!!8^G"BOXZF#8XB@@@@@F=!!JW!!S^G!!8^G!!8^G!!1QX>O#8XN@@@@@@AJ[W!!8^G!!8^G!!8^G!!G
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11211
 8ZF!!(XN@@@@@@ANR''NB!!''!!8^G!!8"59)!!(ZF!!(XN@@BT#W=MO4)"^HJI!!XE6W&(NC 8NC 8C@INQ$G9K@@AOP$%PXE9+^0@@@@@@@@@@$9JP"F]\@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11212
@@@@@@@@@@@@@@@@$)BHZE,@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11213
                colorMapFromArray:#[ 0 0 0 0 0 0 7 66 194 12 59 167 23 89 204 27 95 206 32 101 209 36 106 255 36 107 211 39 109 255 41 113 214 45 115 255 45 119 216 48 118 255 50 87 176 50 125 219 52 90 178 53 127 212 54 123 255 54 131 221 55 95 181 57 127 255 57 149 229 58 137 224 63 132 255 66 113 193 66 135 255 67 149 229 68 157 232 69 117 196 72 122 199 72 141 255 75 144 255 77 163 236 78 131 206 80 149 255 84 153 255 87 145 215 88 157 255 91 168 235 93 161 255 94 154 222 96 157 223 96 165 255 97 159 225 98 160 225 98 162 226 99 163 227 100 165 228 101 166 229 101 170 255 102 167 230 103 169 231 104 170 232 105 172 233 105 174 234 106 175 235 112 180 255 116 116 120 117 186 255 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 132 200 255 139 207 255 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 149 184 255 153 188 255 157 192 255 159 159 192 159 160 192 159 160 207 159 160 208 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 162 196 255 166 200 255 170 204 255 174 208 255 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 181 215 255 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 225 255 192 192 208 192 239 255 192 240 255 207 143 95 207 207 191 207 223 239 207 239 240 207 255 255 208 208 223 208 224 239 208 255 255 212 211 224 217 217 217 223 128 63 223 255 255 237 236 242 239 239 240 239 255 255 240 207 144 245 244 247 247 246 249 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11214
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11215
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11216
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11217
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11218
                                        fromPackedString:'@???@???@???@???@???@???@???@???@???@???A???C???C???C???C???C???C???C???A???A???O???_O<@?@@@>@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11219
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11220
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11221
        ]
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11222
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11223
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11224
windowInspectIcon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11225
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11226
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11227
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11228
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11229
     the ImageEditor may not be able to read the specification."
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11230
    "
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11231
     self windowInspectIcon2 inspect
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11232
     ImageEditor openOnClass:self andSelector:#windowInspectIcon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11233
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11234
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11235
    ^ Icon constantNamed:'GenericToolbarIconLibrary class windowInspectIcon2'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11236
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11237
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11238
                width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11239
                height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11240
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11241
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11242
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11243
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11244
                            fromPackedString:'
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11245
@@@@@@@@@AXVE1LOC@(HA TDA@PDA@PD@@@@@@@@@A0\L" $HA(UCP$IBP$IBP$N@@@@@@@@@BD!!J2X#G1 RB0\GA0\GA0\N@@@@@@@@@B\''Y&U$X5YUUEQT
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11246
UEQTUEPN@@@@@@@@@C 8!!(ZF!!(ZF!!(ZF!!(ZF!!(XN@@@@@@@@@C\7"(*J"(ZJ"(*J"(*J!!(XN@@@@@@@@@CX6!!(ZF!!#*F!!(*F!!(X:!!(XN@@@@@@@@@CT5O#5A
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11247
S5]5!!(*F!!(X:!!(XN@@@@@@@@@DYQ\''1=^V5RSHNF!!(X:!!(XN@@@@@@@@VHQST5MST5M8T4FCN#(:!!(XN@@@@@@AYJW!!8^G!!8^G!!8^F4>!!(ZF!!(XN@@@@@GA,
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11248
JW!!ST5MST5MST81-WS(:#8XN@@@@@E=7JW!!S^G!!8^G!!8^G!!-OH:F#8XN@@@@@E%=JW!!S^G!!8^G!!8^G"BPH:F#8XN@@@@@E&BJW!!S^G!!8^G!!8^G"BRH:F#8XN
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11249
@@@@@E%=JW!!S^G!!8^G!!8^G"BRH>F#8XN@@@@@E)3JW!!S^G!!8^G!!8^G"BOXZF#8XN@@@@@F=!!JW!!8^G!!8^G!!8^G!!1QP8NC 8N@@@@@@AJ[R%8^G!!8^G!!8^G!!G
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11250
@@@@@@@@@@@@@@ANR''L)JR$)JR$)"59)@@@@@@@@@@BT#W=MO4)"^HJI!!XE6W&(@@@@@@@@@@INQ$G9K@@AOP$%PXE9+^0@@@@@@@@@@$9JP"F]\@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11251
@@@@@@@@@@@@@@@@$)BHZE,@@@@@@@@@@@@@@@@@@@@@@@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11252
                colorMapFromArray:#[ 0 0 0 0 0 0 7 66 194 12 59 167 23 89 204 27 95 206 32 101 209 36 106 255 36 107 211 39 109 255 41 113 214 45 115 255 45 119 216 48 118 255 50 87 176 50 125 219 52 90 178 53 127 212 54 123 255 54 131 221 55 95 181 57 127 255 57 149 229 58 137 224 63 132 255 66 113 193 66 135 255 67 149 229 68 157 232 69 117 196 72 122 199 72 141 255 75 144 255 77 163 236 78 131 206 80 149 255 84 153 255 87 145 215 88 157 255 91 168 235 93 161 255 94 154 222 96 157 223 96 165 255 97 159 225 98 160 225 98 162 226 99 163 227 100 165 228 101 166 229 101 170 255 102 167 230 103 169 231 104 170 232 105 172 233 105 174 234 106 175 235 112 180 255 116 116 120 117 186 255 127 127 175 127 128 175 128 128 175 128 143 175 128 143 176 128 143 191 128 144 191 132 200 255 139 207 255 143 143 176 143 143 191 143 144 191 143 159 191 143 159 192 143 159 207 144 143 143 144 144 191 144 159 160 144 159 191 144 159 192 144 160 192 144 160 207 144 160 208 144 191 239 149 184 255 153 188 255 157 192 255 159 159 192 159 160 192 159 160 207 159 160 208 160 128 144 160 144 159 160 160 191 160 175 207 160 175 208 160 176 208 160 191 224 160 192 224 162 196 255 166 200 255 170 204 255 174 208 255 175 111 80 175 111 95 175 160 192 175 175 192 175 175 207 175 191 223 175 208 240 176 176 207 176 176 208 176 191 208 176 208 224 176 208 239 176 223 240 181 215 255 191 191 208 191 207 224 191 223 239 191 224 240 191 224 255 191 225 255 192 192 208 192 239 255 192 240 255 207 143 95 207 207 191 207 223 239 207 239 240 207 255 255 208 208 223 208 224 239 208 255 255 212 211 224 217 217 217 223 128 63 223 255 255 237 236 242 239 239 240 239 255 255 240 207 144 245 244 247 247 246 249 255 175 79 255 191 80 255 191 95 255 207 144 255 208 159 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11253
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11254
                            width:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11255
                            height:24;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11256
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11257
                                        fromPackedString:'@O??@O??@O??@O??@O??@O??@O??@O??@_??@???A???C???C???C???C???C???C???C???A??@A??@O?>@_O<@?@@@>@@@');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11258
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11259
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11260
        ]
4426
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11261
!
Claus Gittinger <cg@exept.de>
parents: 4425
diff changeset
 11262
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11263
workspace24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11264
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11265
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11266
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11267
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11268
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11269
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11270
     self workspace24x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11271
     ImageEditor openOnClass:self andSelector:#workspace24x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11272
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11273
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11274
    ^ Icon constantNamed:'GenericToolbarIconLibrary class workspace24x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11275
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11276
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11277
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11278
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11279
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11280
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11281
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11282
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11283
                            fromPackedString:'
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11284
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A&Y&Y&Y&Y&Y&Y&Y @@@@@@@@@@@@@@@@@QDQDQDQDQDQDQAP@TPDQDQ@Q@PQDQ@ @TPDQDQ@
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11285
P@@QDQ@ @P@D@@Q@Q@PQDQ@ @PPDA@Q@Q@PQDQ@ @P@D@@Q@Q@@QDQ@ @QDQDQDQDQD1DQ@ @QDQDQDQDQD3DQ@ @QDQDQDQDQD3LQ@ @QDQDQDQDQD3DQ@G
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11286
@QDQDQDQDQDQLQ@ @QDQDQDQDQDQLQ@ @QDQDQDQDQDQDQAP@@@@@@@@@@@@@@@@ARH"H"H"H"H"H%AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11287
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11288
                colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 127 127 127 0 127 127 127 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11289
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11290
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11291
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11292
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11293
                                        fromPackedString:'@@@@@@@@????????????????????????????????????????????????????????????????????????????@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11294
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11295
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11296
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11297
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11298
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11299
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11300
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11301
bug28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11302
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11303
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11304
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11305
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11306
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11307
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11308
     self bug28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11309
     ImageEditor openOnClass:self andSelector:#bug28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11310
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11311
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class bug28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11312
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11313
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11314
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11315
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11316
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11317
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11318
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11319
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11320
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11321
UUUUUUUUT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O?0@@@@@@?*+@@@@C3>**,@@@O*N***
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11322
0@@C:#***,@@@N(@@@@@@@O*O***0@@@>3>**<@@@@@O??0@@@@@@C?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11323
@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11324
                colorMapFromArray:#[ 0 0 0 192 192 192 255 0 0 128 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11325
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11326
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11327
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11328
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11329
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11330
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0L@@@#F0@@F_1@@@/>@@A/?0@@??>@G??? BG??8@A??>@G??? @???8@@[?<@@@/>@@@Y?D@@H1,@@@0L@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11331
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11332
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11333
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11334
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11335
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11336
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11337
bugReporter28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11338
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11339
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11340
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11341
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11342
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11343
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11344
     self bugReporter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11345
     ImageEditor openOnClass:self andSelector:#bugReporter28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11346
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11347
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11348
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11349
        constantNamed:#'GenericToolbarIconLibrary class bugReporter28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11350
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11351
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11352
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11353
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11354
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11355
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11356
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11357
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11358
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11359
@@@@@@@@@@@@@@@@@@@@@@@@@@@EUUUUUUUU@@@@@@@@@@@@@@@@@@T@@@@@@@@EUUUUUUUUAP@@@@@@@@@@@@@@@@TE@@@@@@@ADQDQDQDQAPT@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11360
@@@@@@DEAP@@@@@ADQDQDQDQ@PTE@@@@@@@@@@@@@@DAAP@@@@@DQDQDQDQD@PDE@@@@@@@@@@@@@@PA@P@@@@@DQDQDQ@ADA@D@@@@@@@PQDTPDQ@@D@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11361
@@@@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
 11362
H3L@@@@@@@@@@@@@@@H#L0H#L3L3L2@@@@@@@BH2@"H3L3L2H@@@@@@@@@@@H"H"H"@@@@@@@@@@@@@@@"H"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11363
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11364
                colorMapFromArray:#[ 0 0 0 170 170 170 128 0 0 255 0 0 255 255 255 127 127 127 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11365
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11366
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11367
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11368
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11369
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11370
@@??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/
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11371
?0@@B?8@@A''<P@@#F0@@C@0@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11372
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11373
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11374
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11375
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11376
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11377
bugReporterIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 11378
    <resource:#programImage>
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11379
    ^ self bugReporter28x28Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11380
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11381
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11382
changesBrowser28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11383
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11384
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11385
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11386
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11387
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11388
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11389
     self changesBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11390
     ImageEditor openOnClass:self andSelector:#changesBrowser28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11391
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11392
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11393
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11394
        constantNamed:#'GenericToolbarIconLibrary class changesBrowser28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11395
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11396
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11397
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11398
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11399
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11400
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11401
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11402
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11403
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11404
@@@@@@@@@@@@@B****@@@@@@@@@ @@@B****H@@@@@@@@"@@@C????H @@@@@@@2H@@C????L"@@@@@@@3H@@AUUUUL2@@@@@@@SL@@AUUUUD3@@@_=UUQL@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11405
@@EUUUTS@@@A]7UUD@@@@U7]5Q@@@@E7]5T@@@@AUUUU@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@BH@@@@@@@@LB@L@@@@@@@@@@@@@@@@J@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11406
@@@@@@@H@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11407
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11408
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11409
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11410
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11411
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11412
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11413
@@??8@@O?>@@O?? @C??8@C??>@@??? @???8@O??>@O??? C??? C???8@???8@O??>@C??>@@??? @O?? @C??8@@??8@@O?>@@@@@@@@@@@@@Z.$7LH+-
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11414
YDBJ+TQ@#.=WHH*+UABJ*5PPZ*$7X@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11415
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11416
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11417
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11418
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11419
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11420
copy28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11421
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11422
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11423
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11424
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11425
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11426
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11427
     self copy28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11428
     ImageEditor openOnClass:self andSelector:#copy28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11429
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11430
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11431
    ^ Icon constantNamed:'GenericToolbarIconLibrary class copy28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11432
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11433
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11434
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11435
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11436
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11437
                bitsPerSample:(#[ 2 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11438
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11439
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11440
                            fromPackedString:'
4091
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
 11441
@@@@@@@@@@@@@@@@@@@@@@O????8@@@C****)@@@@:****P@@@N****$@@@C****)@@@@:****P@@@@@@**$C????>J*)@:****R**PN****$**$C****)J*
571932a8db50 changed: #copy28x28Icon
Claus Gittinger <cg@exept.de>
parents: 4085
diff changeset
 11442
)@:****R**PN****$**$C****)J*)@:****R**PN****$**$C****)J*)@:****QUUPN****$@@@C****)@@@@:****P@@@N****$@@@C****)@@@@:****Q
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11443
@@@IUUUUT@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11444
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11445
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11446
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11447
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11448
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11449
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11450
@@@@@@@???@@O??0@C??<@@???@@O??0@C??<@@???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_?? @G??
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11451
8@A??>@@_?? @G??8@A??>@@_?? @@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11452
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11453
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11454
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11455
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11456
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11457
cut28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11458
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11459
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11460
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11461
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11462
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11463
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11464
     self cut28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11465
     ImageEditor openOnClass:self andSelector:#cut28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11466
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11467
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class cut28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11468
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11469
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11470
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11471
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11472
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11473
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11474
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11475
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11476
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11477
@@@@@@@@@@@@@@@@@@@@DQDQDQDQDQDS@@@@@@@SL3L3L3L<L3H@@@0@@AL3L3L3L303L @@C@@@D3L3L3L3OLL2@@CL@@@SL3L3L3L303H@@L@@@AL3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11478
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
 11479
@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L3OL0@@@@@D3L3L3L3L3L<3@@@@@@SL3L3L3L3L33L@@@@@AL3L3L3L3L33@3@@@@@L"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11480
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@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11481
@@C@C@@@@@@@@@CL@@@@@@3@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11482
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11483
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11484
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11485
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11486
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11487
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11488
_??8@G??>@A???!!@_??8PG??>LA???"@_??9 G??>PA???,@_??;@G??> A???(@_??>@G???@A???0@_??<@G???@A???0@_??>@G???0A???'' @@R@$@@D
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11489
 I@@AHBP@@R@$@@D I@@@0A @@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11490
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11491
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11492
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11493
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11494
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11495
delete28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11496
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11497
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11498
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11499
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11500
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11501
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11502
     self delete28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11503
     ImageEditor openOnClass:self andSelector:#delete28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11504
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11505
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class delete28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11506
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11507
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11508
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11509
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11510
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11511
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11512
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11513
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11514
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11515
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ADQDQDQDQDQL@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3H@@@@@@@D3L3L3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11516
L3L3L @@@B@@@SL3L3L3L3L2@@@B@@@AL3L3L3L3L3H@@@@@@@D3L3L3L3L3L @@@@@@@SL3L3L3L3L2@@@@@@@AL3L3L3L3L3@@@@@ @@D3L3L3L3L0@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11517
@@@@@SL3L3L3L3@P@@@@H@@AL3L3L3L3LADSL3H @@D3L3L3L3L0DQL3L"@@@SL3L3L3L3@Q@3L0H@@AL3L3L3L3LADC@3@ @@D3L3L3L3L0DPLCLB@@@2H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11518
H"H"H"@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q@0L0H@@@@@@@@@@@@ADC@3@ @@@@@@@@@@@@DPLCLB@@@@@@@@@@@@@Q
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11519
D0L2H@@@@@@@@@@@@ DSL3HB@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11520
                colorMapFromArray:#[ 0 0 0 255 255 255 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11521
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11522
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11523
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11524
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11525
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11526
@@@@@C??>@@??? @O??8PC??>D@???!!@O??8XC??>F@???  O??8HC??>B@????0O?? LC????@????0O???<C????@????0O???<C????@????0@@A?<@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11527
_?@@@G?0@@A?<@@@_?@@@G?0@@@_0@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11528
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11529
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11530
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11531
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11532
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11533
desktop28x28Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11534
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11535
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11536
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11537
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11538
     the ImageEditor may not be able to read the specification."
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11539
    "
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11540
     self desktop28x28Icon inspect
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11541
     ImageEditor openOnClass:self andSelector:#desktop28x28Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11542
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11543
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11544
    ^ Icon constantNamed:'GenericToolbarIconLibrary class desktop28x28Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11545
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11546
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11547
                width:28;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11548
                height:28;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11549
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11550
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11551
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11552
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11553
                            fromPackedString:'
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11554
@@@XFA ]FA XFA4]FA XFA XGQ4]@@@@@@@@@@@@FA XGQ4]FA XFA XFA XGQ4]GQ XFA XF@@@@A XGP,RB!! QFA ]GQ4]GQ4XGQ XFA XFA @@@@XFA D
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11555
A@PDC@LKC!!HQDQ XFA4]GR@]HA X@@@]FA ]C@4DCPPMAA( HB@]GQ XDQ QFB@]F@@@GQ4XF@PDC@PGA@4SHA8^HA8 G"@^HA$ GQ @@A4]FA4MCPPMA@4D
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11556
EA8 HA8 G"@ HA8^HA4X@@@]GQ4XA@PGA@ DB@\^GQ8^GQ8^HA4^GR@XF@@@FA XG!!PMA04HCP MF!!8^G"@^HA8 G"@]GQ @@A XGQ8^CP$MBP4ICQPZGA(\
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11557
F!!8^G!!8 GQ ]@@@XFA4YFPPLBP0DC@$TD1LZD1(YF!!$^GQ4XGP@@GQ4]F!!(MBP0ICP0MCAPWD1(WF!!(WG"@]FA4@@A4XGQLOC@0DC@PLA@0LCAPOEALWE!!8]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11558
GQ ]@@@]FA$LA0PG@00CC@LLA@PLA00LE@<^GQ4XF@@@FA SD@4LA00CC@LL@00LA04GCP0THB@XFA @@A XFA4YA LL@0,CB0LKC@LG@00GEA4 FA4]@@@X
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11559
FA XFA4]FQLK@0LF@ LF@0XCA1L]GQ ]GP@@FA XGQ4]GQ4]GQ4]FQ$K@0,CA0LZGR@XGQ4@@A XFA4XFA4]GQ4]FA XGQ4YFP,KFQ4XGQ4]@@@@FA4]FA X
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11560
FA ]GR@]GQ4]GQ4]GR@]GQ ]GP@@@@@]FA4QFA XFA XGQ XGQ4 GQ4]HA4XFA4@@@@@@A4XGQ4]GQ4]GQ4]FADXFA4]HB@]DQD]@@@@@@@QFA4]FA4]GQ4]
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11561
GQ4]FA4XFADXDQDQ@@@@@@@@GQD]GQ4]HA4 GR@ GR@]GQ4XGQ4QDP@@@@@@@A4XDQ4]GQ4]GR@]GQ4]HA QFA ]DP@@@@@@@@@]@A QFA ]GR@]HB@]FADX
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11562
FA QGQ4@@@@@@@@@GQ4XDQ4QFA QFADQDQD]GQ QDQ4@@@@@@@@@@A4@@@@@@@@@@@@@@@@@@@@XDQD]@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11563
                colorMapFromArray:#[ 0 0 0 0 0 0 0 0 102 0 0 153 0 0 204 0 0 255 0 51 153 0 51 204 0 51 255 51 0 204 51 51 102 51 51 153 51 51 204 51 51 255 51 102 153 51 102 204 51 102 255 102 102 102 102 102 153 102 102 204 102 102 255 102 153 51 102 153 204 102 153 255 153 153 153 153 153 204 153 153 255 153 204 204 153 204 255 204 204 204 204 204 255 204 255 255 255 255 255 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11564
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11565
                            width:28;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11566
                            height:28;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11567
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11568
                                        fromPackedString:'
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11569
G?@@@A??<@@_???@G???8A???>@???? O???8C???>@???? O???8C???>A???? _???8G???<A????@_???0G???<@_???@C???0@G??<@G??>@C??? @??
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11570
?0@O??8@A??<@@O?>@@@?>@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11571
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11572
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 11573
        ]
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11574
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 11575
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11576
dos28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11577
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11578
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11579
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11580
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11581
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11582
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11583
     self dos28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11584
     ImageEditor openOnClass:self andSelector:#dos28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11585
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11586
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class dos28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11587
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11588
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11589
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11590
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11591
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11592
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11593
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11594
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11595
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11596
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H"H"H"H"H"H"H"H"H @#L3L3L3L3L3L3L3L3@BMDQDQDQDQDQDQDQBL@H4QDQDQDQDQDQDQDH0@#QDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11597
QDQDQDQDP#@BMDEDQDQDQDQDQDQBL@H4QAQDQDQDQDQDQDH0@#QDPTQDQDQDQDQDP#@BMDQDEDQDQDQDQDQBL@H4QDEDQDQDQDQDQDH0@#QDEDQDQDQDQDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11598
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
 11599
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11600
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11601
                colorMapFromArray:#[ 0 0 0 0 0 194 222 222 222 125 125 125 194 194 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11602
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11603
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11604
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11605
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11606
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11607
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@@P@@@@D@@@@GLX@@BT
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11608
(@@@%I@@@IRH@@A3L@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11609
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11610
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11611
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11612
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11613
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11614
extract28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11615
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11616
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11617
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11618
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11619
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11620
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11621
     self extract28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11622
     ImageEditor openOnClass:self andSelector:#extract28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11623
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11624
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class extract28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11625
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11626
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11627
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11628
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11629
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11630
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11631
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11632
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11633
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11634
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@MDP4QC@@@@@@UUTE@@@3L3L3L@@B@AAUUPD@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11635
@@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
 11636
@P@@L3L3L3@@@@@@@@@@@@@4QCQDL@@@@@@@@@@@@CL3L3L0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11637
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11638
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11639
                colorMapFromArray:#[ 0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11640
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11641
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11642
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11643
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11644
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11645
@@@@@@@@@@A?<@@@_?A?8G?0_>A?<W? _?G?8G???>A???? _???8G?1?>A?<W? _?A?8G?0O>A?<@@@_?@@@G?0@@@@@@@@@@@@@@@@@@@@D@A@MED3PD*:
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11646
UNA9D%Q@P)ITPCQZL6@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11647
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11648
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11649
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11650
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11651
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11652
fileBrowser28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11653
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11654
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11655
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11656
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11657
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11658
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11659
     self fileBrowser28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11660
     ImageEditor openOnClass:self andSelector:#fileBrowser28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11661
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11662
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11663
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11664
        constantNamed:#'GenericToolbarIconLibrary class fileBrowser28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11665
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11666
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11667
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11668
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11669
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11670
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11671
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11672
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11673
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11674
@@@@@@@@@@@@@@@@@@@@@@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
 11675
; [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
 11676
@@@@@@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
 11677
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11678
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11679
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11680
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11681
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11682
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11683
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11684
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11685
A??<@@_??@@G??0@A??<@@_??8@G??>@A??? @_??8@G??>@A??? @_??8@G??>@A??? @_??@@G??0@A??<@@_??@@G??0@@??<@@G??@@@@@@@G.P=0AAD
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11686
HP@PQBD@GDP8 AADHD@PQBA@DN^=0@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11687
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11688
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11689
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11690
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11691
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11692
fileIn28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11693
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11694
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11695
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11696
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11697
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11698
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11699
     self fileIn28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11700
     ImageEditor openOnClass:self andSelector:#fileIn28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11701
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11702
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class fileIn28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11703
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11704
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11705
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11706
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11707
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11708
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11709
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11710
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11711
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11712
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 11713
@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
 11714
P&@@@@@@@@@@@FY"YDQBX@@@@F@@@@@@Y&H"H"I @@@@@@@@@@A&Y&Y&Y&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11715
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11716
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11717
                colorMapFromArray:#[ 0 0 0 129 129 129 63 63 36 255 0 0 194 194 0 0 127 0 194 194 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11718
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11719
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11720
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11721
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11722
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11723
@@@@@@@@@@@@@_?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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11724
EH@]W!!R@BU@T @%LEH@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11725
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11726
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11727
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11728
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11729
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11730
garbageCollect28x28Icon
5379
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11731
    "This resource specification was automatically generated
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11732
     by the ImageEditor of ST/X."
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11733
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11734
    "Do not manually edit this!! If it is corrupted,
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11735
     the ImageEditor may not be able to read the specification."
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11736
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11737
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11738
     self garbageCollect28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11739
     ImageEditor openOnClass:self andSelector:#garbageCollect28x28Icon
5379
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11740
     Icon flushCachedIcons
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11741
    "
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11742
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11743
    <resource: #image>
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11744
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11745
    ^Icon
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11746
        constantNamed:'GenericToolbarIconLibrary garbageCollect28x28Icon'
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11747
        ifAbsentPut:[(Depth4Image new) width:28; height:28; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11748
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
 11749
@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
 11750
@@@@@@@@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
 11751
C@0QDQD@@@DP@@@ADQD@@@@QD@@@@@@@@ @B@ @B@@HB@ H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@H@@@@@@@@@@@@@@@@@@@@@
5379
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11752
@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@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:((ImageMask new) width:28; height:28; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11753
@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
5379
28ea16ace5ef class: GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 5377
diff changeset
 11754
UDAEUUQ@U7]5\EUUUTAUUUU@]U]W\@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11755
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11756
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11757
help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11758
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11759
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11760
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11761
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11762
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11763
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11764
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11765
     self help28x28Icon1 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11766
     ImageEditor openOnClass:self andSelector:#help28x28Icon1
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11767
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11768
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11769
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11770
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11771
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11772
    ^Icon
5219
9ad63a7c9db5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5212
diff changeset
 11773
        constantNamed:'GenericToolbarIconLibrary help28x28Icon1'
9ad63a7c9db5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5212
diff changeset
 11774
        ifAbsentPut:[(Depth2Image new) width:28; height:28; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11775
@@@@@@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!!
5219
9ad63a7c9db5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5212
diff changeset
 11776
P@@@@@.8!!T@@@@@+.1P@@@@@/.1P@@@@@N.0P@@@@@N>2D@@@@@B:8!!@@@@@@;8(P@@@@@K+HP@@@@@@@BA@@@@@@J*HP@@@@@@@JD@@@@@C/"!!@@@@@@.,(
9ad63a7c9db5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5212
diff changeset
 11777
@@@@@@N>H@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 63 79 96 255 255 0 255 255 255]; mask:((ImageMask new) width:28; height:28; bits:(ByteArray fromPackedString:'
9ad63a7c9db5 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5212
diff changeset
 11778
@@?8@@@??@@@_?8@@O??@@G??8@C??>@@???0@_??<@O???@C>O?0@?C?<@O0?>@C<O? @?G?8@@C?8@@A?<@@@_>@@@O? @@C?8@@@?>@@@O?@@@C?8@@@_
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11779
>@@@O? @@C?8@@@?<@@@O>@@@C?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11780
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11781
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11782
help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11783
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11784
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11785
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11786
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11787
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11788
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11789
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11790
     self help28x28Icon2 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11791
     ImageEditor openOnClass:self andSelector:#help28x28Icon2
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11792
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11793
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11794
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11795
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11796
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11797
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 11798
        constantNamed:#'GenericToolbarIconLibrary class help28x28Icon2'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 11799
        ifAbsentPut:[(Depth4Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11800
@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@@@@@@@@@@@@@@3H@@@@@@@@@@@@@@@@CL2@@@@@@@@@@@@@@@@L3L @@@@@@@@@@@@@@@3L3@@@@@@@@@@@@@BLCL3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11801
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
 11802
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
 11803
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
 11804
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
 11805
@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
 11806
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11807
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11808
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11809
help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11810
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11811
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11812
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11813
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11814
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11815
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11816
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11817
     self help28x28Icon3 inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11818
     ImageEditor openOnClass:self andSelector:#help28x28Icon3
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11819
     Icon flushCachedIcons
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11820
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11821
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11822
    <resource: #image>
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11823
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11824
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 11825
        constantNamed:#'GenericToolbarIconLibrary class help28x28Icon3'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 11826
        ifAbsentPut:[(Depth2Image new) width: 28; height: 28; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11827
@@@@@@@@@@@@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
 11828
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
 11829
 @@@@@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
 11830
@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
 11831
??C????0O???8@_?? @@?? @@A?@@@@a') ; yourself); yourself]
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11832
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11833
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11834
history28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11835
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11836
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11837
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11838
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11839
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11840
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11841
     self history28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11842
     ImageEditor openOnClass:self andSelector:#history28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11843
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11844
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class history28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11845
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11846
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11847
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11848
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11849
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11850
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11851
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11852
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11853
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11854
@@@@@@@@@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
 11855
@@@@@@H @@@@@***H@@@@@@@@B@@@@@@J** @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11856
@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11857
                colorMapFromArray:#[ 0 0 0 0 0 129 194 194 194 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11858
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11859
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11860
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11861
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11862
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11863
@@@@@C?8@@@?>@@@O?8@@C?>@@@??8@@O?>@@C??8@@??>@@O?? @C??8@@??>@@C?? @@??8@@C?>@@@?? @@C?8@@@?>@@@@@@@H@H@@BDB@@@<M3IHITI
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11864
KRBT"R$ %D$)8IVD2B@@@@G @@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11865
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11866
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11867
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11868
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11869
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11870
home28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11871
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11872
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11873
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11874
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11875
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11876
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11877
     self home28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11878
     ImageEditor openOnClass:self andSelector:#home28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11879
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11880
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class home28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11881
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11882
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11883
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11884
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11885
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11886
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11887
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11888
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11889
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11890
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11891
@@@@@@@@@@DA@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@HCA@H@@@@@@@@@@@@@@@@@@@@@@@@@A@D@@@H@@0LD@ @@@@@@@@@@@@@@@@@@@@@@@@HA@@H@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11892
@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
 11893
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
 11894
@@@@@@@@@@HCAPPDAPL@@@@@@@@@@@LEA@PFA@D@@@@@@@@@@ HKA L@@@@LCP8O@@@@APXB@ D@@@@@@@@@@@@@@P\C@@@MDADRD0<@@@LF@ @@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11895
@@@@@@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
 11896
@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
 11897
F2HN@@@CA0H@@@@@@@@@@@@@@@@AA0TC@1<"H"H"C LCARLB@@@@@@@@@@@@@@@@C0DA@PDA@PDA@PDA@PDAC0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11898
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11899
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11900
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11901
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11902
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11903
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11904
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11905
@@@@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?
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11906
?@<C??0O@??<C0@@@@<@@@@O@@@@C0@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11907
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11908
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11909
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11910
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11911
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11912
imageEditor28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11913
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11914
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11915
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11916
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11917
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11918
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11919
     self imageEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11920
     ImageEditor openOnClass:self andSelector:#imageEditor28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11921
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11922
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11923
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11924
        constantNamed:#'GenericToolbarIconLibrary class imageEditor28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11925
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11926
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11927
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11928
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11929
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11930
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11931
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11932
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11933
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11934
@@@@@@@@@@@@@@@@@@@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
 11935
"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
 11936
@@@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
 11937
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@0@0@0L@L@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11938
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11939
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11940
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11941
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11942
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11943
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11944
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11945
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@;[7/@D>%
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11946
J@AJ)P @RK5.@D"%J@AH)R @:JW/@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11947
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11948
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11949
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11950
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11951
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11952
menuEditor28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11953
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11954
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11955
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11956
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11957
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11958
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11959
     self menuEditor28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11960
     ImageEditor openOnClass:self andSelector:#menuEditor28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11961
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11962
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11963
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11964
        constantNamed:#'GenericToolbarIconLibrary class menuEditor28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11965
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11966
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11967
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11968
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11969
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11970
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11971
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11972
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11973
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11974
@@@@@@@@@@@@@@@@@@@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
 11975
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
 11976
@@@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
 11977
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APT@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11978
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@T@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11979
                colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11980
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11981
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11982
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11983
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11984
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11985
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''0???90O??>TC???  ???8HO??>AC??? P???8@O??>@C??? @???8@@@@@@@@@@@@6=D$@O(Y
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11986
I@B*GRP@"9T$@H(WI@BJD2P@"=D<@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11987
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11988
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 11989
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11990
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11991
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11992
paste28x28Icon
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 11993
    "This resource specification was automatically generated
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 11994
     by the ImageEditor of ST/X."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 11995
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 11996
    "Do not manually edit this!! If it is corrupted,
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 11997
     the ImageEditor may not be able to read the specification."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 11998
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 11999
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12000
     self paste28x28Icon inspect
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12001
     ImageEditor openOnClass:self andSelector:#paste28x28Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12002
     Icon flushCachedIcons
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12003
    "
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12004
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12005
    <resource: #image>
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12006
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12007
    ^Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12008
        constantNamed:'GenericToolbarIconLibrary paste28x28Icon'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12009
        ifAbsentPut:[(Depth4Image new) width:28; height:28; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12010
@@@@@@@@@@@!!DR@@@@@@@@@@@@@@@BDQH@@@@@@@@@@@@@@@DQDP@@@@@@@@@@@@@AD"H"D@@@@@@@@@ADQBDQDQDRQDP@@@@@@DQDHQDQDQIDQ@@@@@@@QD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12011
QDQDQDQDQD@@@@@@ADQDQDQDQDQDP@@@@@@@@@@@@@ADQDQ@@DQDQDQDQDQDLDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQD
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12012
QD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12013
L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3L QDQDP@ACL3L3L3L3L2ADQDQ@@DL3L3L3L3L3HDQDQD@@P3L3L3L3L3LJ
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12014
@@@@@@@2H"H"H"H"H"@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 127 127 127 127 170 170 170 255 255 255]; mask:((ImageMask new) width:28; height:28; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12015
@@C8@@@@>@@@@O @@O??<@C???@@???0@O??<@C???A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G????A????0_???<G??
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12016
??A????0_???<G????A???@@_??0@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12017
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12018
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12019
reloadFromFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12020
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12021
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12022
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12023
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12024
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12025
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12026
     self reloadFromFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12027
     ImageEditor openOnClass:self andSelector:#reloadFromFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12028
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12029
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12030
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12031
        constantNamed:#'GenericToolbarIconLibrary class reloadFromFile28x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12032
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12033
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12034
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12035
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12036
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12037
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12038
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12039
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12040
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12041
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12042
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12043
@@@@@@@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
 12044
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
 12045
@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
 12046
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12047
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12048
                colorMapFromArray:#[ 0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12049
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12050
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12051
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12052
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12053
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12054
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12055
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12056
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12057
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12058
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12059
reloadTextFromFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12060
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12061
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12062
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12063
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12064
     the ImageEditor may not be able to read the specification."
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12065
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12066
     self reloadTextFromFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12067
     ImageEditor openOnClass:self andSelector:#reloadTextFromFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12068
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12069
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12070
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12071
        constantNamed:#'GenericToolbarIconLibrary class reloadTextFromFile28x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12072
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12073
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12074
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12075
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12076
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12077
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12078
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12079
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12080
                            fromPackedString:'
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12081
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12082
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@TEAPTEAPTEAP@@@@@@@@LC@0L@@0@@
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12083
@@@@@@@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
 12084
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
 12085
@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
 12086
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12087
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12088
                colorMapFromArray:#[ 0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12089
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12090
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12091
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12092
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12093
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@?>A?8O? _>C?8G?"?>A?8?? _???8G???>A???? _>O?8G?"?>A?8O? O>C?8@@@?>@@@@@@@@@@@@@@@@$@@@@G@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12094
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12095
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12096
        ]
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12097
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12098
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12099
sUnit28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12100
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12101
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12102
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12103
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12104
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12105
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12106
     self sUnit28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12107
     ImageEditor openOnClass:self andSelector:#sUnit28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12108
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12109
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12110
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class sUnit28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12111
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12112
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12113
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12114
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12115
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12116
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12117
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12118
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12119
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12120
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O??C???????C?<O?0@@??<O??????<O?0??@@@@@@@@@@@@@@@@@@@@@BH"H"H"
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12121
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
 12122
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
 12123
L3C???@3L3L3@@@"H#L3L0@@@3L3L3L@@BH#L3L3L3L3L3L3L0@@H#L3L3L3L3L3L3L3@@@#L3L3L3L3L3L3L3L@@CL3L3L3L3L3L3L3L0@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12124
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12125
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12126
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12127
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12128
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12129
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12130
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12131
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12132
?>A???? _???8G???>@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12133
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12134
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12135
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12136
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12137
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12138
saveImage28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12139
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12140
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12141
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12142
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12143
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12144
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12145
     self saveImage28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12146
     ImageEditor openOnClass:self andSelector:#saveImage28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12147
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12148
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12149
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12150
        constantNamed:#'GenericToolbarIconLibrary class saveImage28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12151
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12152
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12153
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12154
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12155
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12156
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12157
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12158
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12159
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12160
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
 12161
@ET?UUUU?PAUO7??6?4@US=T?=+=@ET?ZO?Z?PAUO4C?6/4@U]U**)WU@ET@@@@@@@AUUUUUUUUU%Y%UUUTE%%UUUUTU)UEUUUUEUUUUUUVYUUTEUTUUUUDU
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12162
AUUUUUUQUPUUVUUUUUTU%P@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12163
                colorMapFromArray:#[ 255 255 255 0 0 0 127 127 127 170 170 170 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12164
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12165
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12166
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12167
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12168
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12169
C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C???@@???0@O??<@C??>@@@@@@@@@@@@;*9R<H*(
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12170
W)BJ*E:@S.9R,B)HT)@*REJP:$9R<@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12171
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12172
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12173
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12174
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12175
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12176
saveTextToFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12177
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12178
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12179
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12180
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12181
     the ImageEditor may not be able to read the specification."
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12182
    "
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12183
     self saveTextToFile28x22Icon inspect
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12184
     ImageEditor openOnClass:self andSelector:#saveTextToFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12185
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12186
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12187
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12188
        constantNamed:#'GenericToolbarIconLibrary class saveTextToFile28x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12189
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12190
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12191
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12192
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12193
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12194
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12195
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12196
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12197
                            fromPackedString:'
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12198
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12199
@@@@@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
 12200
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12201
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12202
                colorMapFromArray:#[ 0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12203
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12204
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12205
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12206
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12207
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12208
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12209
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12210
        ]
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12211
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 12212
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12213
saveToFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12214
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12215
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12216
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12217
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12218
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12219
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12220
     self saveToFile28x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12221
     ImageEditor openOnClass:self andSelector:#saveToFile28x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12222
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12223
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12224
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12225
        constantNamed:#'GenericToolbarIconLibrary class saveToFile28x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12226
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12227
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12228
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12229
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12230
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12231
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12232
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12233
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12234
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12235
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@3L3L3L@@@@@@@@@@@@CQDMDP0
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12236
@@@@@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
 12237
@P@@L3L3L3@@@ @Q@ETA@@@4QCQDL@@@@AD@UPD@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12238
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12239
                colorMapFromArray:#[ 0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12240
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12241
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12242
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12243
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12244
                                        fromPackedString:'@@@@@@@@@@@@@@@@@@@@@G?0@@A?<G? _?A?8G?1_>A?<_? _???8G???>A???? _?G?8G?1_>A?<G? _?@?8G?0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12245
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12246
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12247
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12248
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12249
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12250
search28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12251
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12252
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12253
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12254
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12255
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12256
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12257
     self search28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12258
     ImageEditor openOnClass:self andSelector:#search28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12259
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12260
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class search28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12261
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12262
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12263
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12264
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12265
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12266
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12267
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12268
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12269
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12270
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@J @@@@H@@B(@@@@B@@@*@@@@@@@@@@@@@@@@@@@@@@@H@@B@@@@@B@@@ @@@@@ @@H@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12271
@@AT@D@P@@@@U@B@D@@@@EP@ A@@@@AT@H@P@@@@*@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@P@@H@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12272
@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12273
                colorMapFromArray:#[ 40 40 80 212 208 200 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12274
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12275
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12276
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12277
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12278
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12279
@@@@@@@@@@@@@@@@@_A<@@G0_@@A<G0@@_A<@@G0_@@O>?8@C?/>@@?;? @O>?8@G???0O???>C???? ????8O???>C???? ??/?8O?;?>C?>?? ?8@?8O>@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12280
O>C? C? ?8@?8O>@O>@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12281
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12282
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12283
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12284
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12285
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12286
shell28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12287
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12288
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12289
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12290
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12291
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12292
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12293
     self shell28x28Icon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12294
     ImageEditor openOnClass:self andSelector:#shell28x28Icon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12295
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12296
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class shell28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12297
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12298
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12299
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12300
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12301
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12302
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12303
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12304
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12305
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12306
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 12307
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
 12308
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
 12309
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12310
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12311
                colorMapFromArray:#[ 0 0 0 125 125 125 194 194 194 222 222 222 0 0 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12312
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12313
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12314
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12315
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12316
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12317
@@@@@@@@@@A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>A???? _???8G???>@???? @@@@@@A@E@@@PAP@@7&T@@QJ
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12318
U@@BR=P@@T(T@@YI%@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12319
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12320
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12321
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12322
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12323
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12324
systemBrowserClassHistory28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12325
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12326
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12327
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12328
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12329
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12330
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12331
     self systemBrowserClassHistory28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12332
     ImageEditor openOnClass:self andSelector:#systemBrowserClassHistory28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12333
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12334
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12335
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12336
        constantNamed:#'GenericToolbarIconLibrary class systemBrowserClassHistory28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12337
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12338
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12339
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12340
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12341
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12342
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12343
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12344
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12345
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12346
@@@@@@@@@@@@@@@@@@@ADQDQDQG0@@@@@@@@@@D"H"H"H.@@@@@@@@@@@RH"H"H"8@@@@@@@@@@O;.;.;.; @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12347
@@@@@@@@@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@SL@@CL>@@@@@@@@@@@O; @@;.8@@@@@8@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12348
@@@@@@C @@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@@@@@@@@@DQ@@@QG0@@@@@P;.;.@VX@@FY.@@@@@@@@@@@O8@@@C.8@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12349
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C @@@@8@8@@N@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@N@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12350
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8@@@8@8@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12351
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12352
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12353
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12354
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12355
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12356
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12357
??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
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12358
JUBUBR%P=H$/TIQIJRBTRR$ %\'')P@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12359
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12360
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12361
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12362
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12363
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12364
uiPainter28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12365
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12366
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12367
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12368
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12369
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12370
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12371
     self uiPainter28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12372
     ImageEditor openOnClass:self andSelector:#uiPainter28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12373
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12374
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12375
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12376
        constantNamed:#'GenericToolbarIconLibrary class uiPainter28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12377
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12378
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12379
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12380
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12381
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12382
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12383
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12384
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12385
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12386
@@@@@@@@@@@@@@@@@@@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
 12387
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
 12388
@@@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
 12389
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@T@AP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12390
@@@@@@@@@@@@@@@@@@@@@@@@T@@@AP@E@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12391
                colorMapFromArray:#[ 0 0 0 255 255 255 170 170 170 255 255 0 0 127 127 127 127 127 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12392
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12393
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12394
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12395
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12396
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12397
???8@O??>@C??? @???8@O??>PC???&@???90O??>^C???''8???90O??>TC???  ???8HO??>A#??? X???8@O??>@C??? @???8@@@@@@@@@@@@>QN@@H$Q
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12398
@@BADP@@.QD@@H$Q@@BIDP@@>_N@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12399
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12400
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12401
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12402
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12403
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12404
workspace28x28Icon
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12405
    "This resource specification was automatically generated
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12406
     by the ImageEditor of ST/X."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12407
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12408
    "Do not manually edit this!! If it is corrupted,
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12409
     the ImageEditor may not be able to read the specification."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12410
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12411
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12412
     self workspace28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12413
     ImageEditor openOnClass:self andSelector:#workspace28x28Icon
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12414
     Icon flushCachedIcons
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12415
    "
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12416
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12417
    <resource: #image>
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12418
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12419
    ^Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12420
        constantNamed:'GenericToolbarIconLibrary workspace28x28Icon'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12421
        ifAbsentPut:[(Depth4Image new) width:28; height:28; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12422
@@@@@@@@@@@@@@@@@@@M7]7]7]7]7]7]7]@@@@@@@@@@@@@@@@@@@@@@@QDQDQDQDQDQDQ@0@@@AUPUUUUAUAQDQDB@@@@EUAUUUTE@@DQDPH@@@@P@E@@UP
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12423
UPTQDQ@ @@@AAPTEAUAUAQDQDB@@@@D@AP@ETET@DQDPH@@@@QDQDQDQDQEADQ@ @@@ADQDQDQDQDTPQDB@@@@DQDQDQDQDQQDDPH@@@@QDQDQDQDQEDDQ@J
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12424
@@@ADQDQDQDQDQEADB@@@@DQDQDQDQDQDTDPH@@@@QDQDQDQDQDQDQ@0@@@@@@@@@@@@@@@@@@@@@@L"H"H"H"H"H"H0L@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12425
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@L@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12426
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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:((ImageMask new) width:28; height:28; bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12427
????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@O???0C???<@????@@@@@@@@@@@@ //R@HJJ
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12428
T BB"%P@$(/X@IJJU@BR"%H@[O)R@@@a') ; yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12429
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12430
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12431
!GenericToolbarIconLibrary class methodsFor:'image specs-28x28-XP'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12432
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12433
eraseXP28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12434
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12435
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12436
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12437
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12438
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12439
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12440
     self eraseXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12441
     ImageEditor openOnClass:self andSelector:#eraseXP28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12442
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12443
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12444
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class eraseXP28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12445
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12446
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12447
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12448
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12449
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12450
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12451
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12452
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12453
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12454
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12455
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@GNB!!GL@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A="H"F[0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@^(VE!!XM/@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12456
@@@@@@@@@@@@@@@@@@@@@@@@@@A8^7-;_F<@@@@@@@@@@@@@ H%3@@@@@@@@@@@@@GQ5]WU6ZP@@@@@@@@A%_8^B@@@@@@@@@@@@@@@@[WA0\GE)@@@@@@A)
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12457
_(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
 12458
@@@@@@@@@@@@@@@@@@ALLB</K3)J@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C\(JB *SP@@@@@@@@@@@@@@@@@@@@@@@@@@S2,%IRD!!HRX?@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12459
@@@@@@@@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
 12460
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
 12461
@@@@@@@@K XCA#X@@@@@@@@@NR$9@@@@@@@@@@@@@@@@@@@8APDH@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@CXLFP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12462
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12463
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12464
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12465
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12466
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12467
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12468
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12469
@@@@@@@@@@@@@@@@@@@@@A8@@@@_@@@@G8@@@@?@C @G8C0@@?A8@@G8<@@@?^@@@G?@@@@? @@@G8@@@G?@@@C?8@@A>_@@@?C8@@_ _@@O0C8@G8@_@@<@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12470
C8@N@@^@@@@C @@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12471
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12472
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12473
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12474
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12475
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12476
redoXP28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12477
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12478
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12479
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12480
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12481
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12482
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12483
     self redoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12484
     ImageEditor openOnClass:self andSelector:#redoXP28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12485
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12486
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12487
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class redoXP28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12488
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12489
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12490
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12491
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12492
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12493
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12494
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12495
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12496
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12497
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12498
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@[E1QR5Q][P@@@@@@@@@@@@@@@@@@@@@@@@@@WC8RG2<!!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12499
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
 12500
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
 12501
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
 12502
@@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
 12503
F1,BV @@@@@@@@@@@@@@@@@@@@@@@@@@@@A+OQX[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@BFA,X@%(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@V HXF05P
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12504
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!!EHZ0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E(<Z0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12505
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12506
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12507
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12508
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12509
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12510
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12511
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12512
@@@@@@@@@@@@@@@@@@@@@@@@@@@A?@@@@?<G @_?!!8@O?<^@C??'' @>G=8@_@?>@G0G? A<@?8@O!!?>@C8?? @?O?8@G3?>@A>@@@@O0@@@C>@@@@_0@@@C<
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12513
@@@@_@@@@C @@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12514
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12515
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12516
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12517
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12518
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12519
undoXP28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12520
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12521
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12522
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12523
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12524
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12525
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12526
     self undoXP28x28Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12527
     ImageEditor openOnClass:self andSelector:#undoXP28x28Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12528
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12529
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12530
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class undoXP28x28Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12531
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12532
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12533
                width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12534
                height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12535
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12536
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12537
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12538
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12539
                            fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12540
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12541
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F5]UD-QWF0@@@@@@@@@@@@@X4YBV@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12542
[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
 12543
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
 12544
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
 12545
@D(#G!!,[F1,[F1,[DUX@@F(AF1,GV0@@@@@@@@AJD1LSD1LSD1LSD0Q_@@AKD1,VP0@@@@@@@@@@@@@@@@@@@@@@@@@@@@AUBQ,[AU8@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12546
@@@@@@@@@@AZ@!!,[DT(@@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [E#5+@@@@@@@@@@@@@@@@@@@@@@@@@@AZ@!! [F@I @@@@@@@@@@@@@@@@@@@@@@@@@@@@
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12547
T@4[F@IZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F-HDPIZ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Z31Z@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12548
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12549
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12550
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12551
                            width:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12552
                            height:28;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12553
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12554
                                        fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12555
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@? @G ?<@A8_? @^O?<@G''??@A;>G0@_?@>@G? O A?0C8@_?!!<@G?<_@A??O0@_?38@@@A>@@@@?@@@@_0@@@O8@@@C
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12556
<@@@@>@@@@G@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12557
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12558
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12559
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12560
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12561
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12562
!GenericToolbarIconLibrary class methodsFor:'image specs-32x32'!
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12563
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12564
desktop32x32Icon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 12565
    <resource:#programImage>
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12566
    ^ self desktop32x32Icon2
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12567
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12568
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12569
desktop32x32Icon1
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12570
    "This resource specification was automatically generated
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12571
     by the ImageEditor of ST/X."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12572
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12573
    "Do not manually edit this!! If it is corrupted,
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12574
     the ImageEditor may not be able to read the specification."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12575
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12576
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12577
     self desktop32x32Icon1 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12578
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon1
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12579
     Icon flushCachedIcons
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12580
    "
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12581
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12582
    <resource: #image>
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12583
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12584
    ^Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12585
        constantNamed:'GenericToolbarIconLibrary desktop32x32Icon1'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12586
        ifAbsentPut:[(Depth8Image new) width:32; height:32; bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12587
.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*7 G>W@@B3.+*:.+*:.+*:.+*:.+*:.+*:DHA?%89"##VTAY$"
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12588
#3F3.+*:.+*:.+*:.(@O%6T@#$1LAP.YNZ(B"V\$IBROP'':&.+*:&I\[@JQ#SIPK&P5PBQ$Y$W&T,QXV*S\7M8=U_)>:.#J,B9$9NR@FFSBQ+IR1E+*:.+*:
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12589
.+(V]#P7#5U>'';*:R3$7MCP]$[F:.+*:.+*:.+*:.+*:.+(P\#Q7UW:_.+*LHA4]GU._!!8^G!!8^G!!8^G!!39PMB^G!!8\P\#AVNI>:.(07W5>F+(^G!!8^G-KDJ
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12590
RE=HHC$ $Y2G!!8^VJ1P8'';*:#BB"F)FG!!8^GW4 7TC::.''@VE 6Q''H^G!!8\+!!BF2@K*$HA)2&8NC 8M_.+*:.+)0E!!X*CYF\ 8NCT3= $ \:@JQ''[8BC 8NC
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12591
 5>:.+*:\AXVJ"*A$Y2[%+!!Y[PN''*0QS#F]I 8NC 8NCW;*:.''@VE"(*I8FQWE2QCT9>G)N((G:PM:2C 8NC 8M_.+)0E!!X*J"^/]#A(O" $LF2ZZ+U8,9A''
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12592
^8NC 8NC 5>:\AXVJ"(''XS@(O(E(LDT5"C,.NKL@^&]; 8NC 8NCW7@VE"(*I7D<ZHF-.K!!=&8NHDW"3.+):_A^C 8NC 8M_E!!X*J"]D(6&8.DEQ 8NC 7J]
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12593
R+N:.''*)]BT%IRT%IU<VJ"(''I2A_+)ZA$P %IRT%]@98,;*:^*$WIRT%IRT%W2(*I2\SO%=_Y06QBBT%IRU\C''"3.+)?#4&\''I2\''I1_J"\''D38>TA47Y9DH
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12594
''I2\Y(TN^KN:.)!!7E92\''I2\''E<''I1L>O#8MY3]P$P"\''HH+!!P98,;*:C268''I2\''I2\W2\SO#8>CP6ATEBQBI2\L8VEC''"3.+(OKR.\''I2\''I1_O#8>O 4J
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12595
M55FK8(#''FZH"H N^KN:. <-.I2\''I2\''E=_W5>K\2<XYBLL''I2BQV9.[ 98,;*:."5ERXJ\''I2\,A0ASP #T)2\''I1QS8=WV$AXZ7"3.+*:P2-WWEQRT%IR
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12596
CEIRT%ITY#V%U5]@C!!D)&"18_ B:.+*MEU]WJ9URT%IR%T<3.U]ZD!!DTJ[T.^CX8O[L@.+*:.%)5V%)Z(W,5)U]ZPE QZ9(,W'' 6_%N3@@B:.+*:.+*:P7U@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12597
PDA@PAHN!!BZ5KE8_NC5S,0@@@K*:.+*:.+*:.+*LU1IXDXR6(B98M )S,;N_.+*:.+*:.+*:.+*:.+*:.)9DQ21^^C!!>T;L@@K*:.+*:.+*:.+*:.+*:.+*:
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12598
.+*:@KM>[UN3@JZ:.+*:.+*:.+*:.+*:.+*:.+*:. @@@@@a') ; colorMapFromArray:#[80 128 180 208 192 110 96 176 220 144 32 30 144 96 100 144 208 220 96 176 240 176 32 20 255 224 140 128 192 240 192 192 180 160 208 240 255 240 180 176 224 255 16 64 130 192 192 220 208 224 240 32 64 130 0 48 140 208 224 255 48 64 130 16 96 190 240 240 255 80 160 210 240 208 100 80 160 220 48 160 255 96 128 180 176 208 180 80 176 255 160 128 130 160 144 140 128 208 255 160 80 100 176 240 255 255 224 160 144 192 255 255 255 210 64 80 100 208 240 255 176 208 255 64 80 110 224 240 255 16 112 210 112 112 110 32 96 190 112 112 130 192 192 130 64 144 220 128 144 160 80 112 180 80 144 210 96 192 255 112 160 210 160 160 160 112 192 255 176 176 180 160 224 255 192 176 180 32 64 110 80 112 110 192 192 210 192 224 255 80 112 130 0 64 160 48 128 190 80 96 130 16 80 180 112 128 140 32 112 210 144 192 180 96 96 130 80 192 255 96 160 210 160 160 140 80 112 190 96 144 210 240 208 130 144 160 190 144 176 210 144 208 255 192 208 210 255 240 190 208 208 210 224 224 210 80 96 110 48 80 130 0 80 180 16 48 140 80 128 160 0 64 180 32 128 220 48 128 210 112 192 210 128 128 130 64 176 255 144 48 50 112 160 190 96 128 190 80 128 210 255 224 130 112 128 190 176 208 210 128 192 255 128 176 240 128 112 60 80 80 80 48 80 110 64 112 140 208 192 210 0 96 190 16 128 220 240 255 255 144 128 100 48 144 220 144 176 160 64 144 210 16 96 210 48 128 220 48 112 210 144 144 140 112 176 220 112 144 190 128 176 210 96 144 220 160 192 210 192 192 190 144 160 210 192 208 220 160 208 255 240 240 210 255 255 220 48 64 110 0 112 210 32 144 220 255 255 240 0 96 210 64 160 220 224 208 110 128 192 190 48 96 180 16 64 180 80 128 190 64 128 210 64 96 180 96 160 220 208 80 30 160 16 20 144 192 220 192 208 190 160 192 220 128 144 210 176 192 220 192 240 255 80 96 100 240 240 220 255 240 210 16 64 140 208 208 220 240 240 240 112 96 100 0 80 190 48 176 255 16 16 0 64 112 180 64 128 190 255 240 255 208 96 30 144 16 20 80 144 220 128 208 240 192 48 20 128 176 220 112 176 240 176 208 220 144 192 240 224 240 210 192 224 240 208 176 180 224 224 220 224 240 240 96 96 100 80 80 100 224 224 240 32 128 210 32 112 190 255 255 255]; mask:((ImageMask new) width:32; height:32; bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12599
@@@@@@@@A?@@@??8@_??>G????#????8????>O????#????8?????O????;????????????????????>?????O????3????<?????O????3????<?????O??
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12600
??3????<_????G????!!????0_???@G??<@A??8@@_>@@@C8@@@@b') ; yourself); yourself]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12601
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12602
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12603
desktop32x32Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12604
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12605
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12606
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12607
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12608
     the ImageEditor may not be able to read the specification."
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12609
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12610
     self desktop32x32Icon2 inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12611
     ImageEditor openOnClass:self andSelector:#desktop32x32Icon2
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12612
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12613
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12614
    ^ Icon constantNamed:'GenericToolbarIconLibrary class desktop32x32Icon2'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12615
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12616
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12617
                width:32;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12618
                height:32;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12619
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12620
                bitsPerSample:(#[ 8 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12621
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12622
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12623
                            fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12624
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N@@BN#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12625
#(:N#(8@@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N# @@-;^7-;^7VJB (BX*PTD&(GH-Q@@.@DRHI!!LNMVL9@@@2L ];^18[F6^._:-PTI.[ 8LO
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12626
,6,=UI>G[6>"(#T@@CJ$)WZSSI\JB&@FRYA5#X6M]WU4^G DAE:(*J!!0NP@@A4^PA)\JB (J%G18$YF''$S@0^J**_G%$ST46XW@9@@A;FT&TH"H"H!!<H+D)J
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12627
L4(\AYV)$)I=_VUNS#\KV3$@@G.P+9 " HA(TYT\GA0\AR@IBZ6VN&U>Y&X#S4=[C @@^4&TH+J@,%DLHC !!NB@ BP&0,G9>Y&ZY XFAZQXN@@@^A)P" HA(
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12628
+R@8HS  HEIR,KA:_#.Y&XFAIF%)VP8@@A- %2J2ZJ4LNBD!!HB@MT%J0,G9>&Y&Y XE)ZV&LC @@F6@JH&!!QCC !!HRD H@5RT+B0_'':Y&XFA V%)''H0N@@A''
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12629
S@("T[D8HRD!!HR@ T%J0,G)>N9&Y XFAZV&\E08@@J9L%1>RHBD!!HRD!!HBART+B0_'':Z&Y&A V%)ZXQ]C @@_42W )T!!HV(!!HR@ CUIR,KA>_)&YT8FAZV%)
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12630
!!K),@@A?XIPHGC1*X"D!!HBART%J0^''8;&Y&A XE)ZY2D@F0@@J- +:0%R6)"HRD HEIR,KA>_)*Y&XFAZV%)!!HPA[@@@TFA<URUKZ"D!!O"@MT%J0,G9>&Y%S
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12631
 XE)ZV&D!!@E,@@APA''",IT-*HRD HEIRT+B0_'':Y&XFA V%)''HRD@ 8@@I-II1@P-FH!!HR@ T%J0,G9>&)&Y XE)ZV&D!!HPBC @@&96&#4U7!!V5-U%X?O3<?
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12632
JHVE!!XVE!!QDQDQDQDPHN@@@R-TZ^P(*]W5=_W5=HRCP4MCP4LSD]GQ4]GQ4]K08@@HNFQZLXJ5=.EAPTEK"!!(ZF!!(ZF!!(X.K"X&I"X$ZC @@ 0M1U4@)\;Z6
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12633
-+YZV$MCP4MCP20UEV9.[&9.[!!(N@@A+Z6,=UI>G[6>"(''A0V1YY#A]]W[(@@PHB@!!(ZF 8@@KV5NP:9(E1D@@B:KWH&D08NC 8NC 8NC 8NC 8NC @@#(:N
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12634
#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N@@BN#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(8@@H:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N#(:N
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12635
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12636
                colorMapFromArray:#[ 239 239 240 239 239 255 240 240 255 111 112 128 64 112 191 48 112 208 79 112 191 95 111 176 64 112 208 63 127 223 95 128 207 95 144 223 63 112 223 48 112 224 175 176 191 144 160 207 112 159 208 159 175 191 143 144 207 191 191 207 47 63 95 47 48 80 208 208 224 223 224 240 255 208 64 48 95 176 255 255 255 96 127 176 48 111 208 127 143 160 96 112 176 80 127 208 48 112 223 47 111 223 95 128 208 95 144 224 95 160 240 47 96 208 192 207 208 111 144 208 144 160 176 16 143 191 192 192 208 15 127 191 32 48 80 223 223 224 239 240 240 240 255 255 48 111 191 112 143 160 80 111 176 47 111 207 112 128 160 160 175 176 80 128 207 80 144 223 48 111 223 160 175 191 79 128 223 79 143 240 47 96 223 160 175 208 47 112 223 143 159 176 0 175 224 192 192 207 96 176 31 32 48 64 224 224 224 47 128 191 63 143 191 32 80 175 112 128 144 64 111 191 48 111 207 32 96 208 95 127 191 79 128 207 80 143 223 95 159 224 127 143 191 79 127 223 63 127 224 80 159 240 160 176 208 48 96 207 143 159 191 15 159 208 207 208 208 208 223 224 32 47 64 207 208 224 223 223 223 224 224 240 64 127 191 111 127 144 80 127 191 80 143 207 32 111 223 159 175 176 79 127 207 79 143 223 80 144 224 111 127 191 80 128 223 96 160 240 32 96 223 159 175 208 176 176 191 128 159 191 47 63 80 176 191 223 192 207 224 48 111 144 208 208 223 64 80 111 48 111 176 48 96 176 64 111 176 79 128 176 63 111 191 64 127 207 64 143 224 95 112 176 64 112 207 79 128 208 79 143 224 112 128 191 95 143 223 95 159 240 79 127 208 143 159 207 111 175 255 144 160 191 144 144 175 175 191 223 208 223 223 63 79 95 31 112 175 63 64 95 223 223 240 47 96 176 0 0 0 63 144 208 63 96 176 48 96 191 64 127 208 80 112 191 80 127 207 63 112 208 64 128 223 95 127 207 95 127 208 80 144 240 79 144 240 128 144 207 96 160 255 144 159 176 224 48 0 175 176 208 207 207 208 48 64 95 191 192 223 15 160 240 31 79 160 47 95 175 96 144 176 47 96 191 79 127 191 63 127 208 63 112 207 112 143 191 63 111 207 64 127 223 111 128 191 79 112 207 64 128 224 64 112 223 95 128 223 144 160 208 95 143 224 159 160 176 31 47 64 208 208 208 48 63 95 191 192 207 224 239 240 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12637
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12638
                            width:32;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12639
                            height:32;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12640
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12641
                                        fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12642
@@@@@@@@@@@@@@@@@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12643
??9????>_????''????9????>_???? @@@@@@@@@@@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12644
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12645
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12646
        ]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12647
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12648
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12649
error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12650
    "This resource specification was automatically generated
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12651
     by the ImageEditor of ST/X."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12652
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12653
    "Do not manually edit this!! If it is corrupted,
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12654
     the ImageEditor may not be able to read the specification."
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12655
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12656
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12657
     self error32x32Icon inspect
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12658
     ImageEditor openOnClass:self andSelector:#error32x32Icon
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12659
     Icon flushCachedIcons
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12660
    "
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12661
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12662
    <resource: #image>
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12663
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12664
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 12665
        constantNamed:#'GenericToolbarIconLibrary class error32x32Icon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 12666
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3666
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12667
@@@@@@@@@@@@@@@A@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@P@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12668
@@@@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12669
@PDA@PDA@P@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12670
@PDA@PDA@PDA@PDA@PDA@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@@DA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12671
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HA@PDA@@DA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12672
@PDB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ DA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ HA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12673
@PDA@@DA@PDB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@ DA@PD@@PDA@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB@PDA@P@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12674
@PDA@PDA@PDA@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@DA@PDA@PDA@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12675
@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@PDA@PDA
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12676
@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12677
@@@@@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PD@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@PDA@PDA@PD@@@@@@@@@@@@@
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12678
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 0 0 255 255 255]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12679
@A?0@@A??@@A??<@@??? @_??<@O??? G???<C???? ????8_????G????3????>?????/????;????>?????/????;????>?????/????9????<_????C??
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12680
?? ????8G???<@???>@G???@@??? @G??0@@_?0@@A?0@@@@@@@b') ; yourself); yourself]
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12681
! !
0d6418dc8692 warn and error icons
Claus Gittinger <cg@exept.de>
parents: 3628
diff changeset
 12682
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12683
!GenericToolbarIconLibrary class methodsFor:'image specs-misc'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12684
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12685
DirectoryUp22x22Icon
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12686
    "This resource specification was automatically generated
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12687
     by the ImageEditor of ST/X."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12688
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12689
    "Do not manually edit this!! If it is corrupted,
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12690
     the ImageEditor may not be able to read the specification."
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12691
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12692
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12693
     self DirectoryUp22x22Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12694
     ImageEditor openOnClass:self andSelector:#DirectoryUp22x22Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12695
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12696
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12697
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12698
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12699
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12700
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12701
        constantNamed:'GenericToolbarIconLibrary DirectoryUp22x22Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12702
        ifAbsentPut:[(Depth4Image width:28 height:28) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12703
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@P@@@@@@@@@@@@@@@@@QD@@@@@@@@@@@@@@@@QDQ@@@@@@@@@@@@@@@QDQ
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12704
DP@@@@@@@@@@@@@QDQDQD@@@@@@@@@@@@@@ADQ@@@@@@@@@@@@@"H DQD@@@@@@@@@@@@@@@@QDP@@@@@@@@@@@@@@@ADQ@@@@@@@@@@@@@"H DQD@H"H"H"
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12705
H@@@@BH"@QDP@"H"H"H @@@@H"HADQ@@@@@@@B@@@@@"H DQDQDQDQD@H@@@@BH"@QDQDQDQDP@ @@@@H"HADQDQDQDQ@B@@@@@"H DQDQDQDQD@H@@@@BH"
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12706
@@@@@@@@@@@ @@@@H"H@@@@@@@@@@B@@@@@"H"H"H"H"H"H"H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12707
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') colorMapFromArray:#[0 0 0 255 0 0 255 255 0] mask:((ImageMask width:28 height:28) bits:(ByteArray fromPackedString:'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12708
@@@@@@@0@@@@^@@@@O0@@@G>@@@C?0@@A?>@@@??0@@_?>@@G?8@@C???>@???? O???8C???>@???? O???8C???>@???? O???8C???>@???? O???8C??
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 12709
?>@???? @@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12710
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12711
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12712
desktop30x30Icon
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12713
    "This resource specification was automatically generated
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12714
     by the ImageEditor of ST/X."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12715
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12716
    "Do not manually edit this!! If it is corrupted,
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12717
     the ImageEditor may not be able to read the specification."
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12718
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12719
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12720
     self desktop30x30Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12721
     ImageEditor openOnClass:self andSelector:#desktop30x30Icon
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12722
     Icon flushCachedIcons
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12723
    "
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12724
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12725
    <resource: #image>
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12726
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12727
    ^Icon
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12728
        constantNamed:'GenericToolbarIconLibrary desktop30x30Icon'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12729
        ifAbsentPut:[(Depth8Image new) width:30; height:30; bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12730
.+*:.+*:.+*:.+*:.+*:.+*3T788,5MST5N^.+*:.+*:.+*:.+*:.+*_,;MSB#Z3T788,5MST5MS@K*:.+*:.+*: @>3T34@,;MSB#Z3T788^E8,Q4QS@JZ:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12731
&I\[@KMS_#X@T348,;MSB#Y8K*B6!!AEXD%^L@@B:+C48M AS_#Y8T348G58,-RZDC!!I@PDA@PGUC@@B:^C48M''!!S_#Y8W"2ZZ1EXPE)W)SU;%YVU%WUZ@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12732
^C4=NG .-R$TDQIZU;$3S9URT%IRT%IRT!!VM@@B:^G ,&!!DNPE]W)SU&UEIRT%HLT%IRT%IRT"-C@I>:U5]WPH>OS5F\T%IRT%HH""@ $YF\!!8^G!!2.DH[H@
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12733
U5^O 8NC 8MRT%HH"%APO#8VCYF\ 8NCT3= $ \:U5]/ 8NC 8M_RC]PO+)0E!!X*CYF\&9Z8VV4C):,DU5^O 8NC 8M_.+*:\AXVJ"('' YE\WIDMS''8^$:"J
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12734
U5^O 8NC 8M_.+)0E!!X*J"^/]#A(O" $LF2ZZ+T@U5^O 8NC 8M_.''@VE"(*I6D0JC:AZCAEMX ;@@@@U5^O 8NC 8M_\AXVJ"(''\S1( Z68.G6[ 8 Q@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12735
U5^O 8NC 8M_E!!X*J"]D(6&8.DEQ 8NC 7J]@@B:U5^OIRT%IRU_E"(*I2\ W::V YDHIRT%IWPN@@B:U5^OIRT%IRU_J"(''I1L>W5=''CYDHIRVCIU0N@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12736
U5^O''I2\''I1_J"\''D38>TA47Y9DH''I2C 8TN@@B:U5^O''I2\''I1_I1L>O#8MCXEPTIDH''I2B 8TN@@B:U5^8''I2\''I1_O#8>O 5_M5=FK8(#''I2C 8TN@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12737
KR4+''I2\''I1_O#9_"7L/FFP#CI2\ %EQ[&8N@@B:KR68T%J\''I1_W5=MBBMRT%IRCEEO#5]ZPE!!+@@B:P4L+T%IRT%IRCEIRT%ITY#V%U5]@C!!D)&"18@@B:
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12738
#X4UT%IRT%IRT)UOL;%WV!!HQEB&5K'' 6NC58@@B:V%)5%YVU^3V%U5)@VAE+&"1^^CY>T;L6NC4@@K*:P4M5PDA@PAHN!!BZ5KE8_NC5S,3Y>T;L@@K*:.+*:
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12739
#H1WD!!FD-*@.^CXJT;N3''35S,0@@@K*:.+*:.+*:'')9DQ598NG9S,3XJT;N3'';*:.+*:.+*:.+*:.+*:''+N3_%N3NG9S,0@@.+*:.+*:.+*:.+*:.+*:@@@@
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12740
') ; colorMapFromArray:#[80 128 180 208 192 110 96 176 220 144 32 30 144 96 100 144 208 220 96 176 240 176 32 20 255 224 140 128 192 240 192 192 180 160 208 240 255 240 180 176 224 255 16 64 130 192 192 220 208 224 240 32 64 130 0 48 140 208 224 255 48 64 130 16 96 190 240 240 255 80 160 210 240 208 100 80 160 220 48 160 255 96 128 180 176 208 180 80 176 255 160 128 130 160 144 140 128 208 255 160 80 100 176 240 255 255 224 160 144 192 255 255 255 210 64 80 100 208 240 255 176 208 255 64 80 110 224 240 255 16 112 210 112 112 110 32 96 190 112 112 130 192 192 130 64 144 220 128 144 160 80 112 180 80 144 210 96 192 255 112 160 210 160 160 160 112 192 255 176 176 180 160 224 255 192 176 180 32 64 110 80 112 110 192 192 210 192 224 255 80 112 130 0 64 160 48 128 190 80 96 130 16 80 180 112 128 140 32 112 210 144 192 180 96 96 130 80 192 255 96 160 210 160 160 140 80 112 190 96 144 210 240 208 130 144 160 190 144 176 210 144 208 255 192 208 210 255 240 190 208 208 210 224 224 210 80 96 110 48 80 130 0 80 180 16 48 140 80 128 160 0 64 180 32 128 220 48 128 210 112 192 210 128 128 130 64 176 255 144 48 50 112 160 190 96 128 190 80 128 210 255 224 130 112 128 190 176 208 210 128 192 255 128 176 240 128 112 60 80 80 80 48 80 110 64 112 140 208 192 210 0 96 190 16 128 220 240 255 255 144 128 100 48 144 220 144 176 160 64 144 210 16 96 210 48 128 220 48 112 210 144 144 140 112 176 220 112 144 190 128 176 210 96 144 220 160 192 210 192 192 190 144 160 210 192 208 220 160 208 255 240 240 210 255 255 220 48 64 110 0 112 210 32 144 220 255 255 240 0 96 210 64 160 220 224 208 110 128 192 190 48 96 180 16 64 180 80 128 190 64 128 210 64 96 180 96 160 220 208 80 30 160 16 20 144 192 220 192 208 190 160 192 220 128 144 210 176 192 220 192 240 255 80 96 100 240 240 220 255 240 210 16 64 140 208 208 220 240 240 240 112 96 100 0 80 190 48 176 255 16 16 0 64 112 180 64 128 190 255 240 255 208 96 30 144 16 20 80 144 220 128 208 240 192 48 20 128 176 220 112 176 240 176 208 220 144 192 240 224 240 210 192 224 240 208 176 180 224 224 220 224 240 240 96 96 100 80 80 100 224 224 240 32 128 210 32 112 190 255 255 255]; mask:((ImageMask new) width:30; height:30; bits:(ByteArray fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12741
@@@@@@@@A>@@@G? @@??8@A??>@G??? O???8G???>A????8_????G????1????<_???>G???>A???? _???8G???>A???? _???8G???>A???? _???8G??
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 12742
?>A???? _???0G??? A??>@@_?<@@G?@@@@<@@@@') ; yourself); yourself]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12743
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 12744
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12745
documents26x26Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12746
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12747
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12748
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12749
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12750
     the ImageEditor may not be able to read the specification."
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12751
    "
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12752
     self documents26x26Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12753
     ImageEditor openOnClass:self andSelector:#documents26x26Icon
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12754
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12755
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12756
    ^ Icon constantNamed:'GenericToolbarIconLibrary class documents26x26Icon'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12757
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12758
            (Depth8Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12759
                width:26;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12760
                height:26;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12761
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12762
                bitsPerSample:(#( 8 ));
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12763
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12764
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12765
                            fromPackedString:'
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12766
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E)ZQ!!0IBP).
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12767
G)^WWX]PTA4@@@@@@@@@@@@@QDPPX#T5I6U@ZF!!<E38>TP@@@@@@@@@@@@ADQAA"MST''YTA(ZG0WO#9Q@@@@@@@@@@@@@E!!XJ7.Q$S>HA)RT%SFA YP0L3L@
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12768
@@@@@@@@[F1''E%IRP#^DHB@<OC0<OC2S$0@@@@@@@@B@ B):@ H-\9AUUXJB (JBOF-+@@@@@@@@@HB@J''(B@"53$EUU (JB (H<Z6,@@@@@@@@@B@"M@#4=
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12769
K@=Y%YT#G2D!!&VPZF @@@@@@@@@/K2$(@PDDM)AUUT]> 8LXYEYV@@@@@@@@@A,[^X0;N1U^VYVUR 1\WF5$Z&(@@@@@@@@@F1-8]0@@S''JPUUVB (JB #1A
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12770
PP@@@@@@@@@[F7!!7@@AN\)AUUXJB (JBODEA@@@@@@@@@E]W"0BJ"$4NVYVUW5=_W5<<_W4@@@@@@@@@_7<S''VE!!DXVPUUVB (JB #0EAP@@@@@@@@@GA2VI
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12771
NC!!4&E&U%U=_W5=_OEQT@@@@@@@@@@\GIX$8NGRXVYVUW5=_W5<<UEP@@@@@@@@@K"95II.[R06PUUVB (JB #2O#0@@@@@@@@@.K&AL&)("RCHKB1HRNS$9
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12772
I!!$Y@@@@@@@@@IJRQYY0\D$4X4=O@89ST6$Y[6<@@@@@@@@@$)IE%''A0RSQ#S4<C#%MSZQ%/[0@@@@@@@@B\''E-CY&Y6!!''D:N @@@@@@@@@@@@@@@@@@@@@@
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12773
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12774
                colorMapFromArray:#[ 121 174 168 117 164 171 112 155 176 142 153 154 145 184 186 154 154 154 161 162 162 87 181 134 86 176 134 84 167 135 83 160 137 200 200 200 159 207 255 73 134 146 70 129 149 67 122 152 94 152 159 124 183 164 238 238 238 122 175 167 252 252 252 136 182 178 108 147 180 145 185 187 93 194 255 160 160 160 168 168 168 87 178 134 85 170 136 163 185 209 78 147 140 154 198 251 213 213 213 202 230 247 126 194 164 199 225 255 125 185 164 122 179 166 242 242 242 105 152 170 115 161 174 113 157 175 109 148 180 106 142 183 147 184 190 148 181 193 87 182 134 86 177 134 179 179 179 187 187 187 197 197 197 207 207 207 74 137 145 86 147 151 68 123 151 66 119 153 124 184 164 237 237 237 241 241 241 119 169 170 255 255 255 114 159 174 136 177 182 130 168 185 141 177 188 159 159 159 149 179 197 183 217 203 85 172 135 96 180 141 99 176 145 137 189 255 73 136 145 116 185 158 205 237 255 125 191 164 125 189 164 123 180 165 122 177 167 120 131 130 88 131 169 85 127 171 110 150 178 141 149 153 151 151 151 162 161 158 166 166 166 87 179 134 86 173 135 186 186 186 101 179 146 211 234 223 194 239 255 71 130 148 69 125 150 227 227 227 125 186 164 123 181 165 117 171 166 120 132 130 254 254 254 114 149 164 151 197 183 107 144 181 144 181 188 153 157 160 163 163 163 170 170 170 86 174 135 146 215 254 81 154 138 201 201 201 108 181 153 217 217 217 70 126 149 66 120 152 125 187 164 124 183 165 120 174 165 119 170 169 118 166 171 116 161 173 110 151 178 106 144 182 145 183 188 156 156 156 27 119 255 87 180 134 86 175 135 185 185 185 194 193 189 173 227 255 209 209 209 71 131 148 85 143 148 67 121 152 65 117 154 123 182 165 122 177 166 119 171 169 117 165 171 111 152 177 140 150 153 149 149 149 159 158 155 140 172 193 88 183 134 174 174 174 182 182 182 190 190 190 102 178 147 75 139 144 72 132 147 216 244 248 125 192 164 125 188 164 238 246 242 122 178 166 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12775
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12776
                            width:26;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12777
                            height:26;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12778
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12779
                                        fromPackedString:'
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12780
@@@@@@@@@@@@@@@@C??0@@??<@@O??@@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??? @O??8@C??>@@??
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12781
? @O? @@@@@@@@@@@@@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12782
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12783
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 12784
        ]
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12785
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 12786
3196
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
 12787
fileOpenIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
 12788
    <resource: #programImage>
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
 12789
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
 12790
    ^ self loadFromFileIcon
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
 12791
!
56e05b5796af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3186
diff changeset
 12792
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12793
greenThumbUnknownSmallIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12794
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12795
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12796
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12797
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12798
     the ImageEditor may not be able to read the specification."
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12799
    "
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12800
     self greenThumbUnknownSmallIcon inspect
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12801
     ImageEditor openOnClass:self andSelector:#greenThumbUnknownSmallIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12802
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12803
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12804
    ^ Icon 
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12805
        constantNamed:'GenericToolbarIconLibrary greenThumbUnknownSmallIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12806
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12807
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12808
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12809
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12810
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12811
                bitsPerSample:(#[ 2 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12812
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12813
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12814
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@B @@@@(U@@@!!E@@@*IP@@J)P@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12815
                colorMapFromArray:#[ 0 0 0 76 76 76 153 153 153 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12816
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12817
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12818
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12819
                            bits:(ByteArray fromPackedString:'@@@@@@@@C @_8A?0O?@?8C?@O8@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12820
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12821
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12822
        ]
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12823
!
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12824
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12825
greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12826
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12827
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12828
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12829
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12830
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12831
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12832
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12833
     self greenThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12834
     ImageEditor openOnClass:self andSelector:#greenThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12835
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12836
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12837
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12838
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12839
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12840
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 12841
        constantNamed:'GenericToolbarIconLibrary class greenThumbUpIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 12842
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12843
@@@@@@@@@@@@A)<@@@@@@@@G( @@@@@@@@^/@@@@@@@@A9@@@@@@@@C)$@@@@@@@A)+<>]BM]0BZ(->&E''3&@I**J&DN];@@VZ*''G^DV] C%&Y8AY7,@@MQU
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 12844
P]8QY6@@@MSPE''XP@@@@@CL0!!''X@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 0 64 0 77 242 77 0 128 0 0 160 32 8 215 50 50 173 50 45 210 45 0 32 0 40 247 40 77 242 118 0 64 32 22 105 22 18 141 18 13 178 13 45 210 86]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G@@>@C8@O @<@G?<??;??/?>??;??O?<?? ?>@?0') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12845
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12846
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12847
greenThumbUpSmallIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12848
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12849
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12850
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12851
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12852
     the ImageEditor may not be able to read the specification."
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12853
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12854
     self greenThumbUpSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12855
     ImageEditor openOnClass:self andSelector:#greenThumbUpSmallIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12856
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12857
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12858
    ^ Icon 
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 12859
        constantNamed:'GenericToolbarIconLibrary class greenThumbUpSmallIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12860
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12861
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12862
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12863
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12864
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12865
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12866
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12867
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12868
                            fromPackedString:'@@@@@@@P@@@@D@@@@A@@L@@P@B@@U*@@@UZ@@@UV @@EV @@@@@@B@@@@B@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12869
                colorMapFromArray:#[ 0 0 0 0 255 0 0 127 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12870
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12871
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12872
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12873
                            bits:(ByteArray fromPackedString:'C@@N@@8@C @_8A?0O?@?8C?@O8@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12874
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12875
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12876
        ]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12877
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12878
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12879
greyThumbRightIcon
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12880
    "This resource specification was automatically generated
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12881
     by the ImageEditor of ST/X."
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12882
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12883
    "Do not manually edit this!! If it is corrupted,
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12884
     the ImageEditor may not be able to read the specification."
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12885
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12886
    "
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12887
     self greyThumbRightIcon inspect
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12888
     ImageEditor openOnClass:self andSelector:#greyThumbRightIcon
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12889
     Icon flushCachedIcons
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12890
    "
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12891
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12892
    <resource: #image>
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12893
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12894
    ^Icon
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12895
        constantNamed:'GenericToolbarIconLibrary greyThumbRightIcon'
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12896
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12897
@@@@@@@@@@@@@@LC\@@@@@@CA2M0@@@@@0\#]&@@@@@GH7I7T@@@@@L2\#L@@@@@AWH3@&@@@@@@L2X#P@@@@@IV@#E0@@@@@ T7E2@GQ0@BY''EF]DDT@@A''
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12898
\QPT]7L@@F]1DTL@@@@@A''PQL@@@@@@FM4P@@@@@') ; colorMapFromArray:#[0 0 0 224 224 224 64 64 64 128 128 128 192 192 192 32 32 32 96 96 96 160 160 160]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A8@_0G?@?<C?0O?@?<C?0O?\??;??''?>_?0?0C>@') ; yourself); yourself]
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12899
!
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 12900
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12901
greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12902
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12903
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12904
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12905
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12906
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12907
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12908
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12909
     self greyThumbUpIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12910
     ImageEditor openOnClass:self andSelector:#greyThumbUpIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12911
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12912
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12913
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12914
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12915
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12916
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 12917
        constantNamed:'GenericToolbarIconLibrary class greyThumbUpIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 12918
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12919
@@@@@@@@@@ @@4\@@@@@@@@GE@@@@@@@@@\W@@@@@@@@A4@@@@@@@@@4P@@@@@@H@4E2]FAV]0AAEF\SH7X3@DDQPSHC]2@@]ADWI#H#\0@7]7LBM7H@@FY7
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 12920
YVL"M3@@@FY T7L @@@@@BH T7L@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 224 224 224 64 64 64 128 128 128 192 192 192 32 32 32 96 96 96 160 160 160]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'G@@>@C8@O @<@G?<??;??/?>??;??O?<?? ?>@?0') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12921
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 12922
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12923
hideToolBarIcon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12924
    <resource: #programImage>
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12925
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12926
    ^ self hideToolbar8x24Icon
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12927
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12928
    "Created: / 18-02-2007 / 14:52:15 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12929
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 12930
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12931
hideToolbar24x8Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12932
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12933
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12934
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12935
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12936
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12937
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12938
     self hideToolbar24x8Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12939
     ImageEditor openOnClass:self andSelector:#hideToolbar24x8Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12940
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12941
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12942
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12943
        constantNamed:#'GenericToolbarIconLibrary class hideToolbar24x8Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12944
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12945
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12946
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12947
                height:8;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12948
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12949
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12950
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12951
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12952
                            fromPackedString:'@@@@@@@@J@B(@* @HPB%@"D@AP@U@ET@@@@@ @J@@B$@*PH)@BT@IPA%@@T@AP@E');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12953
                colorMapFromArray:#[ 0 0 0 68 68 68 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12954
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12955
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12956
                            height:8;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12957
                            bits:(ByteArray fromPackedString:'@@@@XFA TEAPLC@0@@@@A XFAPTE@0LC');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12958
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12959
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12960
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12961
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12962
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12963
hideToolbar8x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12964
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12965
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12966
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12967
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12968
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12969
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12970
     self hideToolbar8x24Icon inspect
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12971
     ImageEditor openOnClass:self andSelector:#hideToolbar8x24Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12972
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12973
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12974
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12975
        constantNamed:#'GenericToolbarIconLibrary class hideToolbar8x24Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12976
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12977
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12978
                width:8;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12979
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12980
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12981
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12982
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12983
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12984
                            fromPackedString:'@@@(@BD@AP@@@@@)@BT(AR$@JP@%J@T)@BT(JR$!!IPTEJB )HRT%AR$@IR EJP@%');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12985
                colorMapFromArray:#[ 0 0 0 68 68 68 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12986
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12987
                            width:8;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12988
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12989
                            bits:(ByteArray fromPackedString:'@FAPL@@FAPL@XE@0@@XE@0A TC@@A TC');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12990
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12991
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12992
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12993
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12994
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 12995
hideToolbarIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12996
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12997
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12998
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 12999
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13000
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13001
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13002
     self hideToolbarIcon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13003
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13004
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13005
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13006
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13007
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13008
                width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13009
                height:26;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13010
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13011
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13012
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13013
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13014
                            fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13015
                colorMapFromArray:#[ 0 0 0 68 68 68 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13016
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13017
                            width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13018
                            height:26;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13019
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13020
                                        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');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13021
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13022
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13023
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13024
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13025
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 13026
hideToolbarIcon10x26
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13027
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13028
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13029
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13030
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13031
     the ImageEditor may not be able to read the specification."
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 13032
    "
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 13033
     self hideToolbarIcon inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13034
     ImageEditor openOnClass:self andSelector:#hideToolbarIcon"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13035
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13036
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13037
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIcon10x26'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13038
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13039
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13040
                width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13041
                height:26;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13042
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13043
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13044
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13045
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13046
                            fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13047
                colorMapFromArray:#[ 0 0 0 68 68 68 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13048
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13049
                            width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13050
                            height:26;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13051
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13052
                                        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');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13053
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13054
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13055
        ]
3449
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 13056
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 13057
    "Created: / 18-02-2007 / 14:52:07 / cg"
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 13058
!
a50bfdb00380 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3448
diff changeset
 13059
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13060
hideToolbarIconH14
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13061
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13062
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13063
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13064
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13065
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13066
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13067
     self hideToolbarIconH14 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13068
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH14"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13069
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13070
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13071
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH14'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13072
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13073
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13074
                width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13075
                height:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13076
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13077
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13078
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13079
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13080
                            fromPackedString:'@@@@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13081
                colorMapFromArray:#[ 0 0 0 68 68 68 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13082
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13083
                            width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13084
                            height:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13085
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13086
                                        fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13087
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13088
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13089
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13090
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13091
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13092
hideToolbarIconH20
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13093
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13094
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13095
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13096
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13097
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13098
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13099
     self hideToolbarIconH20 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13100
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH20"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13101
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13102
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13103
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH20'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13104
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13105
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13106
                width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13107
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13108
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13109
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13110
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13111
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13112
                            fromPackedString:'@@@@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@B @@BD@@@T@@@@(@@@!!@@@E@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13113
                colorMapFromArray:#[ 0 0 0 68 68 68 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13114
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13115
                            width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13116
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13117
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13118
                                        fromPackedString:'@@@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@0@B @F@@C@@J@@X@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13119
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13120
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13121
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13122
!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13123
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13124
hideToolbarIconH26
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13125
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13126
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13127
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13128
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13129
     the ImageEditor may not be able to read the specification."
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13130
    "
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13131
     self hideToolbarIconH26 inspect
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13132
     ImageEditor openOnClass:self andSelector:#hideToolbarIconH26"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13133
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13134
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13135
        constantNamed:#'GenericToolbarIconLibrary class hideToolbarIconH26'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13136
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13137
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13138
                width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13139
                height:26;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13140
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13141
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13142
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13143
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13144
                            fromPackedString:'@@@HB @HBD@D@T@@@@(@@@!!@@@ELB @HBD@A@T@@@@(B@@!!@@@ELB @@BD@@@T@H@@(@@@!!@@@EHB @HBD@N@T@@@@(B@@!!@@@EB@@@C');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13145
                colorMapFromArray:#[ 0 0 0 68 68 68 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13146
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13147
                            width:10;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13148
                            height:26;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13149
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13150
                                        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');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13151
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13152
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13153
        ]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13154
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13155
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13156
languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13157
    "This resource specification was automatically generated
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13158
     by the ImageEditor of ST/X."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13159
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13160
    "Do not manually edit this!! If it is corrupted,
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13161
     the ImageEditor may not be able to read the specification."
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13162
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13163
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13164
     self languages20x12Icon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13165
     ImageEditor openOnClass:self andSelector:#languages20x12Icon
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13166
     Icon flushCachedIcons
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13167
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13168
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13169
    <resource: #image>
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13170
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13171
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 13172
        constantNamed:'GenericToolbarIconLibrary languages20x12Icon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 13173
        ifAbsentPut:[(Depth4Image width:20 height:12) bits:(ByteArray fromPackedString:'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 13174
PDL3L4@DL3L4PEP@P3M@ACL3Q D3Q@P3P@P3Q@DQL3U@AT@DU@@QDTQDQDQ@ADQ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQDQDQ@@@@@@@@3M@A2H"H"H"H"
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 13175
M@ABH"H"H"H"H$A"H"H"H"H"H"HBH"H"H"H"H"H"') colorMapFromArray:#[255 0 0 0 0 0 255 204 0 0 0 99 255 255 255 167 167 205 255 63 63 168 208 173]; yourself]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13176
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13177
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13178
loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13179
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13180
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13181
    ^ self load22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13182
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13183
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13184
loadImageFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13185
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13186
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13187
    ^ self loadFromFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13188
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13189
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13190
redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13191
    "This resource specification was automatically generated
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13192
     by the ImageEditor of ST/X."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13193
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13194
    "Do not manually edit this!! If it is corrupted,
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13195
     the ImageEditor may not be able to read the specification."
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13196
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13197
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13198
     self redThumbDownIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13199
     ImageEditor openOnClass:self andSelector:#redThumbDownIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13200
     Icon flushCachedIcons
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13201
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13202
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13203
    <resource: #image>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13204
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13205
    ^Icon
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 13206
        constantNamed:'GenericToolbarIconLibrary class redThumbDownIcon'
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 13207
        ifAbsentPut:[(Depth4Image new) width: 15; height: 15; photometric:(#palette); bitsPerSample:(#(4)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13208
@@@@@@@@@@@@@L3@!!;\@@@C6<J^7(@@H=-5*<Z);\@@]UUDJ^;(@@MH3N:<Z);\@H3MC^ F;(@@#MO$7);8WB@\#'')K0#;,@@AH @@@@@@@@B2@@@@@@@@@K
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 13209
NP@@@@@L@@,4@@@@@@T@A2$@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 191 20 1 255 44 33 255 131 65 255 84 65 255 88 33 160 40 0 184 67 40 32 27 0 223 99 33 64 22 0 223 52 33 128 13 0 224 56 0 112 16 31 152 35 8]; mask:((ImageMask new) width: 15; height: 15; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@?>O?8??3??O?>??;??/?>_?0<@C8@O @>@A0@') ; yourself); yourself]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13210
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13211
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13212
redThumbDownSmallIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13213
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13214
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13215
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13216
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13217
     the ImageEditor may not be able to read the specification."
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13218
    "
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13219
     self redThumbDownSmallIcon inspect
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13220
     ImageEditor openOnClass:self andSelector:#redThumbDownSmallIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13221
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13222
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13223
    ^ Icon 
4290
24384a47b9ba changed:5 methods
Claus Gittinger <cg@exept.de>
parents: 4283
diff changeset
 13224
        constantNamed:'GenericToolbarIconLibrary class redThumbDownSmallIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13225
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13226
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13227
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13228
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13229
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13230
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13231
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13232
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13233
                            fromPackedString:'@@@@B@@@@@@EV @@AUZ@@@EV C@@U*@@@A@@@@@P@@@@D@@@@A@@@@@@@@ b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13234
                colorMapFromArray:#[ 0 0 0 255 0 0 127 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13235
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13236
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13237
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13238
                            bits:(ByteArray fromPackedString:'@@@? C?@O>@?<A?0G>@N@@8@C @L@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13239
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13240
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13241
        ]
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13242
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 13243
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13244
redoIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13245
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13246
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13247
    View styleSheet name = #winXP ifTrue:[
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 13248
        ^ self redoXP28x28Icon
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13249
    ].
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13250
    ^ self redo20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13251
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13252
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13253
saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13254
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13255
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13256
    ^ self save22x22Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13257
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13258
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13259
saveToFileIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13260
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13261
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13262
    ^ self save22x22Icon
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13263
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13264
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13265
smallBugIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13266
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13267
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13268
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13269
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13270
     the ImageEditor may not be able to read the specification."
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13271
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13272
     self smallBugIcon inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13273
     ImageEditor openOnClass:self andSelector:#smallBugIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13274
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13275
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13276
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class smallBugIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13277
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13278
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13279
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13280
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13281
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13282
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13283
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13284
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13285
                            fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13286
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A@@@@@@@@@@@3@@@@@@@@@@@3LS@@@@@@@@@@LSL2@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13287
@@@@@@@3LSL @@@@@@@@D3L2@@@@@@@@@CLSH @@@@@@@@@BH @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13288
@@@@@@@@@@@@@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13289
                colorMapFromArray:#[ 0 0 0 255 255 255 128 0 0 248 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13290
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13291
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13292
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13293
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13294
                                        fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13295
@@@@@@@@@@@@@@@@@@#@@B_ @A? @O?@@C?@@G?@@G> @G>@@C=@@A4@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13296
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13297
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13298
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13299
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13300
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13301
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 13302
        ]
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13303
!
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13304
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13305
smiley_veryAngry
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13306
    <resource: #image>
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13307
    "This resource specification was automatically generated
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13308
     by the ImageEditor of ST/X."
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13309
    "Do not manually edit this!! If it is corrupted,
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13310
     the ImageEditor may not be able to read the specification."
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13311
    "
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13312
     self smiley_veryAngry inspect
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13313
     ImageEditor openOnClass:self andSelector:#smiley_veryAngry
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13314
     Icon flushCachedIcons"
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13315
    
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13316
    ^ Icon constantNamed:#'GenericToolbarIconLibrary class smiley_veryAngry'
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13317
        ifAbsentPut:[
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13318
            (Depth4Image new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13319
                width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13320
                height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13321
                photometric:(#palette);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13322
                bitsPerSample:(#[ 4 ]);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13323
                samplesPerPixel:(1);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13324
                bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13325
                            fromPackedString:'
3882
74ff0f8bed0a grid icons
Claus Gittinger <cg@exept.de>
parents: 3865
diff changeset
 13326
3L3L3L3L3L3K/L2;.;3L.<,[.9X36;,[27(&H$QM6''/K(+IDQDR=*<V3HDQDPD6526I@ADP@SZ/KL  @P@ M><,4BHQD"@7;22Q@ADP@S_/K5DQDQDS-*<2=
5034
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13327
Q@@@AM6<3K7PQDS 6+3L2=7]7]6+3L3L.???*;3L3L3L.;.<3L0b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13328
                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 ];
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13329
                mask:((ImageMask new)
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13330
                            width:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13331
                            height:16;
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13332
                            bits:(ByteArray 
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13333
                                        fromPackedString:'@@A#87??_?=??7??_?=??7??_?=??3?>O?8_?@?8@>@b');
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13334
                            yourself);
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13335
                yourself
f0ba904ff6f4 Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents: 5018
diff changeset
 13336
        ]
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13337
! !
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 13338
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 13339
!GenericToolbarIconLibrary class methodsFor:'image specs-tools'!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 13340
3075
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
 13341
addBufferIcon
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
 13342
    <resource: #programImage>
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
 13343
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
 13344
    ^ self addBuffer16x16Icon2
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
 13345
!
baf05f5420ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3074
diff changeset
 13346
5345
8f8008839eb2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5344
diff changeset
 13347
addTabIcon
8f8008839eb2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5344
diff changeset
 13348
    <resource: #programImage>
8f8008839eb2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5344
diff changeset
 13349
8f8008839eb2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5344
diff changeset
 13350
    ^ self addTab22x22Icon
8f8008839eb2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5344
diff changeset
 13351
!
8f8008839eb2 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5344
diff changeset
 13352
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13353
browseItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13354
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13355
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13356
    ^ self browseIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13357
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13358
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13359
bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13360
    "This resource specification was automatically generated
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13361
     by the ImageEditor of ST/X."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13362
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13363
    "Do not manually edit this!! If it is corrupted,
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13364
     the ImageEditor may not be able to read the specification."
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13365
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13366
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13367
     self bug2_25x25Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13368
     ImageEditor openOnClass:self andSelector:#bug2_25x25Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13369
     Icon flushCachedIcons
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13370
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13371
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13372
    <resource: #image>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13373
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13374
    ^Icon
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 13375
        constantNamed:'GenericToolbarIconLibrary bug2_25x25Icon'
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 13376
        ifAbsentPut:[(Depth4Image new) width:25; height:25; bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13377
@@@@@@@@@@@@@@@@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
 13378
@@@@@@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
 13379
@@@ATAP"QRH"]@DQB@@@@@@TIDH"H''P@TX@@@@@@"4P"H"]@F@@@@@D@@@"WH"I4@P@@@@@@@@@@"4QDP@D@@@@@C0@@@@!!UEUTH@@@@@@@@@@@@@@@UB@@@
5382
e83b0a8a17ba class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5381
diff changeset
 13380
@@@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; 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(@@@AJ
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13381
@@@@@@@@@@@@@@@a') ; yourself); yourself]
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13382
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13383
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13384
bugIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13385
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13386
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13387
    ^ self bug28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13388
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13389
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13390
copyIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13391
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13392
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13393
    ^ self copy20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13394
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13395
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13396
cutIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13397
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13398
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13399
    ^ self cut20x20Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13400
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13401
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13402
debugItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13403
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13404
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13405
    ^ self debugIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13406
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13407
    "Created: / 20-02-2007 / 15:46:24 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13408
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13409
3949
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
 13410
deleteIcon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
 13411
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
 13412
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
 13413
    ^ self delete16x16Icon
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
 13414
!
Claus Gittinger <cg@exept.de>
parents: 3948
diff changeset
 13415
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13416
doItIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13417
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13418
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13419
    ^ self doIt20x20Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13420
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 13421
6017
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
 13422
doItMultipleIcon
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
 13423
    <resource: #programImage>
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
 13424
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
 13425
    ^ self doItMultiple20x20Icon
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
 13426
!
7fb8d6a0fd2c #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6014
diff changeset
 13427
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13428
downIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 13429
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13430
    ^ self down22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13431
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13432
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13433
downRightIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 13434
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13435
    ^ self downRight22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13436
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13437
3450
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13438
inspectItIcon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13439
    <resource: #programImage>
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13440
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13441
    ^ self inspectIt20x20Icon
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13442
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13443
    "Created: / 20-02-2007 / 15:44:34 / cg"
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13444
!
7a5047c5260c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3449
diff changeset
 13445
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13446
leftDownIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 13447
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13448
    ^ self leftDown22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13449
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13450
3690
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13451
printItIcon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13452
    <resource: #programImage>
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13453
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13454
    ^ self printIt20x20Icon
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13455
!
b83198e506f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3666
diff changeset
 13456
4928
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
 13457
profileItIcon
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
 13458
    <resource: #programImage>
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
 13459
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
 13460
    ^ self profileIt20x20Icon
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
 13461
!
edb6c69ff635 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4927
diff changeset
 13462
3558
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
 13463
removeTabEnteredIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
 13464
    <resource: #programImage>
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
 13465
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
 13466
    ^ self removeTabIcon
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
 13467
!
584be1dc7973 do NOT (I repeat NOT) access XPToolbarIconLibrary directly.
Claus Gittinger <cg@exept.de>
parents: 3554
diff changeset
 13468
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13469
removeTabIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13470
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13471
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13472
    ^ self removeTab22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13473
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13474
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13475
undoIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13476
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13477
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13478
    ^ self undo16x16Icon2
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13479
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13480
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13481
upIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 13482
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13483
    ^ self up22x22Icon
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13484
!
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13485
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13486
upRightIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 13487
    <resource:#programImage>
3554
a59302240e32 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3545
diff changeset
 13488
    ^ self upRight22x22Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13489
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 13490
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13491
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-ChangeSetDiffTool & TextDiffTool'!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13492
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13493
mergeDiff3AToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13494
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeDiff3AToMergedArrow30x30.xpm"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13495
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13496
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13497
     self mergeDiff3AToMergedArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13498
     ImageEditor openOnClass:self andSelector:#mergeDiff3AToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13499
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13500
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13501
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13502
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13503
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13504
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13505
        constantNamed:'GenericToolbarIconLibrary mergeDiff3AToMergedArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13506
        ifAbsentPut:[(Depth8Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13507
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13508
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13509
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13510
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13511
@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13512
@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13513
@PDA@PD@@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@@@@PDA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13514
@PDA@PDA@PDA@@@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@@DA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@@@@@@@DA@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13515
@PDA@PDA@PDA@PD@@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13516
@PDA@PDA@PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@P@@@@@@@PDA@PDA@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13517
') ; colorMapFromArray:#[0 0 0 0 0 0]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13518
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@O0@@@C?@@@@?<@@@O? @@C?>@@@A? @@@G<@@@@? @@@G<@@@@?
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13519
@@@@G0@@@A>@@@@O @@@C8@@@@>@@@@G0@@@A<@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13520
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13521
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13522
mergeDiff3BToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13523
    "This resource specification was automatically generated
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13524
     by the ImageEditor of ST/X."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13525
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13526
    "Do not manually edit this!! If it is corrupted,
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13527
     the ImageEditor may not be able to read the specification."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13528
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13529
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13530
     self mergeDiff3BToMergedArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13531
     ImageEditor openOnClass:self andSelector:#mergeDiff3BToMergedArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13532
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13533
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13534
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13535
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13536
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13537
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13538
        constantNamed:'GenericToolbarIconLibrary mergeDiff3BToMergedArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13539
        ifAbsentPut:[(Depth1Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13540
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13541
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@H@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13542
@@_@@@@G0@@@A<@@@@_@@@@G0@@@A<@@@@_@@@@G0@@@A<@@@@_@@@@G0@@@A<@@@@_@@O0G0@C?!!<@@?>_@@O??0@C??<@@@??@@@C?0@@@_<@@@C?@@@@_
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13543
0@@@G<@@@@?@@@@O0@@@C<@@@@?@@@@O0@@@@@@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13544
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13545
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13546
mergeDiff3BaseToAArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13547
    "This resource specification was automatically generated
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13548
     by the ImageEditor of ST/X."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13549
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13550
    "Do not manually edit this!! If it is corrupted,
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13551
     the ImageEditor may not be able to read the specification."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13552
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13553
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13554
     self mergeDiff3BaseToAArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13555
     ImageEditor openOnClass:self andSelector:#mergeDiff3BaseToAArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13556
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13557
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13558
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13559
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13560
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13561
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13562
        constantNamed:'GenericToolbarIconLibrary mergeDiff3BaseToAArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13563
        ifAbsentPut:[(Depth1Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13564
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13565
@@@@@@@@@@@@@@@@@@L@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13566
@@@@@@@G @@@C<@@@@?@@@@O0@@@C<@@@@?@@@@O8@@@C?@@@@?8@@@O?@@@C?<@@@??<@@O??0@C=?<@@?G?@@O0_0@C<@\@@?@@@@O0@@@C<@@@@?@@@@O
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13567
0@@@C<@@@@?@@@@O0@@@C<@@@@?@@@@O0@@@C<@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13568
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13569
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13570
mergeDiff3BaseToBArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13571
    "This resource specification was automatically generated
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13572
     by the ImageEditor of ST/X."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13573
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13574
    "Do not manually edit this!! If it is corrupted,
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13575
     the ImageEditor may not be able to read the specification."
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13576
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13577
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13578
     self mergeDiff3BaseToBArrow30x30 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13579
     ImageEditor openOnClass:self andSelector:#mergeDiff3BaseToBArrow30x30
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13580
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13581
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13582
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13583
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13584
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13585
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13586
        constantNamed:'GenericToolbarIconLibrary mergeDiff3BaseToBArrow30x30'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13587
        ifAbsentPut:[(Depth1Image new) width: 30; height: 30; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13588
@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@C@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13589
@@D@@@@A@@@@@@@@@@@@@@@@@@@@@@@@@@L@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width: 30; height: 30; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13590
@@?@@@@O0@@@C<@@@@?@@@@G0@@@A<@@@@_ @@@C<@@@@?@@@@G8@@@@? @@@O<@@@A?<@@@O?0@@@?<@@@G?@@@@O0@@@@\@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13591
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13592
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13593
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13594
mergeMerge24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13595
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMerge24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13596
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13597
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13598
     self mergeMerge24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13599
     ImageEditor openOnClass:self andSelector:#mergeMerge24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13600
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13601
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13602
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13603
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13604
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13605
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13606
        constantNamed:'GenericToolbarIconLibrary mergeMerge24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13607
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13608
RD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HE0-HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HJ$T&RD!!HRD!!HRD!!HRD!!H
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13609
RD!!HRD!!HRD!!HK$YFPA=HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HK$]FQ4\<E$!!HRD!!HRD!!HRD!!HRD!!HRD!!HNT]GQ4]GQ2 HRD!!HRD!!HRD!!HRD!!HRD!!HN$]GQ4]GQ4]D
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13610
I$!!HRD!!HRD!!HRD!!HRD!!HN4]GQ4]GQ4]GO %HRD!!HRD!!H@D!!HRD!!HK$]GQ4]GQ4L]RD!!HRD!!HR@T1ED!!HRD!!HK$]GQ4]GI0MHRD!!HRD AH$EBFD!!HRD!!HK$]G
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13611
Q34JRD!!HRD!!HRAD4P$IBF4!!HRD!!HJ4]@ET!!HRD!!HRD PL4IBP$IBHD!!HRD!!HJQ9HRD!!HRD!!HCCEBP$IBP$IBF4!!HRD!!H@$!!HRD!!HRD [M$IBP$IBP$IBF4!!H
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13612
RD!!HRD!!HRD!!HRD DH4EBP$IBP$IBHD!!HRD!!HRD!!HRD!!HRD!!HR@<2P$IBP$IBF4!!HRD!!HRD!!HRD!!HRD!!HRD!!HD#UBP$IBF4!!HRD!!HRD!!HRD!!HRD!!HRD!!HR@T!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13613
PTIBF4!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HA2QBFD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD MC$!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!H
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13614
RD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!H') ; colorMapFromArray:#[46 37 13 60 47 16 38 49 22 47 60 27 75 59 19 72 57 20 72 58 20 79 63 22 56 72 33 57 73 33 62 79 35 63 81 36 84 66 23 84 68 23 85 68 23 91 73 24 98 78 27 107 86 30 110 89 30 115 92 31 115 93 31 66 85 38 69 86 39 72 93 42 115 93 32 117 94 32 117 95 32 118 94 32 118 95 32 79 101 46 84 107 49 84 109 48 117 96 32 140 112 38 147 118 41 148 119 40 154 124 43 100 128 57 101 129 58 103 132 60 116 149 67 117 150 67 123 158 71 124 158 71 125 160 72 124 160 73 127 162 72 126 162 73 170 137 47 171 138 47 189 152 52 200 161 54 217 174 58 220 177 60 226 181 62 231 186 63 232 187 63 128 163 74 128 164 73 130 165 74 133 170 77 138 176 79 147 189 85 149 191 86 150 190 86 233 187 64 234 188 64 157 201 91 161 206 93 162 207 93 164 210 95 165 211 95 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@F@@@G@@@G0@@G<@@G?@@G? @G?0DG?@\G>A<G8C<G O<F@?<DA?<@A?<@@_<@@G<@@C<@@@<@@@L@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13615
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13616
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13617
mergeMerge32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13618
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMerge32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13619
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13620
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13621
     self mergeMerge32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13622
     ImageEditor openOnClass:self andSelector:#mergeMerge32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13623
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13624
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13625
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13626
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13627
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13628
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13629
        constantNamed:'GenericToolbarIconLibrary mergeMerge32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13630
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13631
X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&HAX&I"X&I"X&I"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13632
X&I"X&I"X&I"X#P*@&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"OFEWE&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&H>XVE!!PQQ"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13633
X&I"X&I"X&I"X&I"X&I"X#9!!XVE!!WSHNX&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"P&E!!XVE!!XU01CFI"X&I"X&I"X&I"X&I"X&I"X&I"X&IBXVE!!XVE!!XVEY
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13634
GVI"X&I"X&I"X&I"X&I"X&I"X&I"X$U!!XVE!!XVE!!XVE!!PQQ"X&I"X&I"X&I"X&I"X&I"X&I"Q6E!!XVE!!XVE!!XVE!!WSDLX&I"X&I"X&I"X&I"X&I"X&IGXVE!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13635
XVE!!XVE!!XVE[G&I"X&I"X&I"X&H@X&I"X&I"X$U!!XVE!!XVE!!XVE_LP1"X&I"X&I"X&HYRRM"X&I"X&I"P&E!!XVE!!XVE!!P ="X&I"X&I"X&HIN5YZH6I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13636
X&IBXVE!!XVE!!VAY"X&I"X&I"X&HDKEIZV%(+X&I"X&I"X$E!!XVE!!W28CX&I"X&I"X&I"F45ZV%)ZV"1"X&I"X&I"OVE!!XSLLX&I"X&I"X&I"FT!!ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13637
JVI"X&I"X&H=XTHTX&I"X&I"X&I"AC%TV%)ZV%)ZV%(5X&I"X&I"X#L\X&I"X&I"X&I"X"IPV%)ZV%)ZV%)ZV#]"X&I"X&I"@VI"X&I"X&I"X UJV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13638
V%)ZV%)ZM6I"X&I"X&I"X&I"X&I"X&I"X!!)MU%)ZV%)ZV%)ZV%(7X&I"X&I"X&I"X&I"X&I"X&I"X&H TE)ZV%)ZV%)ZV#]"X&I"X&I"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13639
X&HGN%QZV%)ZV%)ZKFI"X&I"X&I"X&I"X&I"X&I"X&I"X&I"FT-ZV%)ZV%()X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X!!=NV%)ZV"Y"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13640
X&I"X&I"X&I"X&I"X X!!TU)VIVI"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&HIM5P#X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"DAE"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13641
X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13642
X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X&I"X @a') ; colorMapFromArray:#[29 23 8 22 28 13 26 34 14 29 35 17 43 35 11 41 33 12 49 40 13 55 43 15 56 45 15 56 46 15 32 41 18 33 40 19 32 42 18 33 42 19 36 45 21 37 47 21 57 46 16 59 47 16 38 48 21 38 49 22 39 49 23 45 58 25 46 58 27 63 51 18 64 53 18 65 53 18 72 57 20 75 60 20 52 67 30 57 72 33 62 81 35 88 71 24 91 73 25 99 80 27 105 85 29 110 88 29 111 88 30 112 90 30 113 92 31 116 92 31 116 93 31 117 93 31 68 87 40 113 91 32 115 93 32 117 95 32 75 96 43 76 97 44 77 97 44 77 98 45 78 100 44 88 112 51 93 121 55 120 96 32 121 96 32 121 98 33 122 99 33 126 101 35 128 102 34 144 115 39 109 139 62 109 140 63 110 141 64 111 142 64 111 143 64 113 144 64 112 144 65 114 145 65 114 146 66 116 148 66 116 148 67 116 150 68 170 136 46 171 137 46 175 140 47 184 148 50 191 153 52 194 156 53 208 167 57 216 173 59 217 174 59 219 176 60 223 179 61 228 184 62 229 184 63 231 186 63 232 187 63 133 170 76 138 177 80 139 178 80 234 188 64 153 195 88 155 198 89 157 201 91 158 202 91 160 205 92 163 209 94 165 211 95 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13643
@@@@@@@@@@@H@@@@C @@@@<@@@@O0@@@C?@@@@?<@@@O? @@C?>@@@??8@@O?<@HC?>@N@?>@O O>@O8C?@G>@?@G? O@G?8C@C?>@ C?? @@_?8@@A?>@@@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13644
O? @@@?8@@@C>@@@@_ @@@A8@@@@F@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13645
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13646
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13647
mergeMergeExternal24x24
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13648
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMergeExternal24x24.xpm"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13649
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13650
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13651
     self mergeMergeExternal24x24 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13652
     ImageEditor openOnClass:self andSelector:#mergeMergeExternal24x24
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13653
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13654
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13655
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13656
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13657
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13658
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13659
        constantNamed:'GenericToolbarIconLibrary mergeMergeExternal24x24'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13660
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13661
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUT@@@@A@@@@@@@A@@@@@@@A@@@@@EUUUPLIBP$IBP$IBP$IBP$IBP$IBP$IBPEUUPLIBP$IBP$IBP$JB $IBP(I
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13662
BP$IBPEUUPLFA XFA XFA XFA XFA XFA XFA QUUP]TUD%LUEQTUEQTUEQTUEQTUEQTU@!!UUP]TUC0YJ45TUEQTUEQTUEQTUEQTU@!!UUP]TUC0*J!!\/UEQT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13663
UEQTUEQTUEQTU@!!UUP]TUC0*J"(&GDUTUEQTUEQTUEQTU@!!UUP]TUCD*J"(*J!! ]R%QTUEQTUEQTU@!!UUP]TUCD*J"(*J"(*B4ATUEQTST1TU@!!UUP]TUCD*
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13664
J"(*J" ^PUQTUED.ECYTU@!!UUP]TUCD*J"(*H3%QUEQTO!!TOISQTU@!!UUP]TUCD*J!!(,SEQTUD [CBT%ISQTU@!!UUP]TUC0&G4]TUEQNH"PQDRT%ISQTU@!!U
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13665
UP]TUD@=UEQTUDPRDRT%DRT%ISMTU@!!UUP]TUEQTUEQTUEP4D!!D%IRT%ISQTU@!!UUP]TUEQTUEQTUEQTS24VIRT%ISQTU@!!UUP]TUEQTUEQTUEQTUEQFH@4%
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13666
ISQTU@!!UUP]TUEQTUEQTUEQTUEQTUDH!!C3QTU@!!UUP]TUEQTUEQTUEQTUEQTUEQQL3=TU@!!UUP]QUEQQTUEQUEEQTUEQUEEQTUQTTP!!UUUTEAPTEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13667
APTEAPTEAPTEAUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU') ; colorMapFromArray:#[31 31 31 37 37 37 44 44 44 46 46 46 48 48 48 70 70 70 77 77 77 93 93 93 98 98 98 101 101 101 102 102 102 117 141 80 208 168 62 214 174 62 226 181 62 226 182 63 229 184 63 231 186 63 157 134 70 153 132 74 166 140 70 163 140 78 187 154 65 134 161 93 145 183 87 144 178 92 149 187 91 158 142 101 131 148 103 133 147 110 134 154 104 140 157 115 161 144 98 166 148 96 160 149 120 143 173 98 192 159 68 234 188 64 153 194 90 155 197 90 160 204 93 164 210 95 165 211 95 151 164 132 153 167 130 172 161 129 175 166 144 162 170 151 168 175 158 168 175 159 177 170 151 180 172 150 177 171 152 178 171 153 177 171 154 178 172 154 178 172 155 172 181 159 169 175 160 170 175 160 170 175 161 171 177 161 181 176 161 189 186 175 190 193 187 191 194 186 197 194 183 192 196 186 200 198 192 201 204 196 210 208 200 214 216 210 221 219 216 219 220 216 221 223 220 226 225 222 229 230 227 240 241 240 242 242 241 244 244 243 250 250 250 251 251 251 252 252 252 254 254 254 255 255 255 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@O??<_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>O??<@@@@') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13668
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13669
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13670
mergeMergeExternal32x32
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13671
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeMergeExternal32x32.xpm"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13672
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13673
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13674
     self mergeMergeExternal32x32 inspect
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13675
     ImageEditor openOnClass:self andSelector:#mergeMergeExternal32x32
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13676
     Icon flushCachedIcons
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13677
    "
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13678
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13679
    <resource: #image>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13680
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13681
    ^Icon
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13682
        constantNamed:'GenericToolbarIconLibrary mergeMergeExternal32x32'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13683
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13684
\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2@PHB@ HB@ HB@ HB@ HB@ HB@ HB@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13685
@ HB@GI2\''HEC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0<E\''I2\ TOC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0<OC0U2\''I2@ \GA0\GA0\GA0\GA0\GA0\G
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13686
A0\GA0\GA0\G@''I2\''HHVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU$O\''I2\!!I1\WEUY7E1\WE1\WE1\WE1\WE1\WE1\WE1\UA2\''I2TF51\RX]TV-1\WE1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13687
\WE1\WE1\WE1\WE1\WE1TGI2\''HR\WE1I4=LGE]1\WE1\WE1\WE1\WE1\WE1\WEP\''I2\!!I1\WD%S4=OP2A!!\WE1\WE1\WE1\WE1\WE1\UA2\''I2D''E1\RUO
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13688
S4=OS18+Y7E1\WE1\WE1\WE1\WE1TGI2\''HR\WE1H$=OS4=OS44[TV51\WE1\WE1\WE1\WEP\''I2\!!I1\WD!!S4=OS4=OS4=DCE51\WE1\WE1\WE1\UA2\''I2
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13689
D''E1\REOS4=OS4=OS4=@DV51\WE1\V@Q\WE1TGI2\''HR\WE1HT=OS4=OS4=AG6I1\WE1\VPWKS=1\WEP\''I2\!!I1\WD!!S4=OS4=KB511\WE1\V%GKD%IO7E1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13690
\UA2\''I2D''E1\RUOS4=OFR))\WE1\WEXESEIR$$?\WE1TGI2\''HR\WE1HT=OF!!A%\WE1\WE^E#AJR$)JR#-1\WEP\''I2\!!I1\WD%PP)_\WE1\WE&FB9IRT)J
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13691
R$)JO7E1\UA2\''I2D''E1\P%T[''E1\WE-T1P2RT)JR$)JR$$7\WE1TGI2\''HR\WE1\WE1\WE1\WEXO3MIRT%JR$)JRS]1\WEP\''I2\!!I1\WE1\WE1\WE1\WE+
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13692
RCYIRT)JR$)IN7E1\UA2\''I2D''E1\WE1\WE1\WE1\WE1X4T/R$)JR#P;\WE1TGI2\''HR\WE1\WE1\WE1\WE1\WE1\U,ULT%IR#=1\WEP\''I2\!!I1\WE1\WE1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13693
\WE1\WE1\WE1\V5VD3H4O7E1\UA2\''I2D''E1\WE1\WE1\WE1\WE1\WE1\WE''Q20=\WE1TGI2\''HR\WE1\WE1\WE1\WE1\WE1\WE1\WE1XA!!1\WEP\''I2\!!I1
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13694
\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UA2\''I2AP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MA''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13695
\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\''I2\ @a') ; colorMapFromArray:#[24 24 24 26 26 26 41 41 41 42 42 42 53 53 53 55 55 55 60 60 60 75 75 75 90 90 90 100 107 89 105 116 87 105 120 81 109 126 85 97 97 97 101 101 101 102 102 102 115 124 101 126 121 106 127 127 127 139 118 64 142 122 66 141 123 77 139 124 84 128 118 90 134 123 97 113 138 75 123 153 77 116 139 81 120 139 91 124 149 86 125 154 80 118 129 101 119 130 100 122 139 97 123 139 97 123 139 98 123 140 99 124 140 99 123 139 100 124 141 100 125 141 100 121 128 110 126 133 115 127 137 112 156 130 59 175 144 57 178 147 62 194 158 62 208 168 61 219 176 61 227 182 62 228 183 62 232 187 63 159 133 64 159 133 65 147 129 82 147 129 83 147 130 84 147 131 85 148 131 84 148 131 85 148 131 86 151 132 84 148 132 86 130 160 84 139 175 84 139 176 82 142 178 87 149 191 87 143 131 100 141 133 113 145 136 114 151 144 124 233 187 64 234 188 64 151 194 88 158 202 92 162 208 94 164 209 94 165 211 95 138 138 138 139 145 128 139 145 130 158 153 138 154 159 146 156 159 151 162 157 141 162 165 156 175 171 162 175 175 175 176 171 162 177 172 163 175 178 170 179 182 174 198 196 191 199 200 196 207 206 201 211 212 210 216 217 215 221 220 218 223 222 221 226 227 226 232 231 230 238 238 238 239 239 238 242 242 242 246 246 246 247 247 247 249 249 249 250 250 250 252 252 252 253 253 253 254 254 254 255 255 255 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13696
@@@@@@@@@@@????<O????C????0????<O????C????0????<O????C????0????<O????C????0????<O????C????0????<O????C????0????<O????C??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13697
??0????<O????C????0????<O????C????0????<@@@@@@@@@@@b') ; yourself); yourself]
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13698
!
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13699
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13700
mergeNext24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13701
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNext24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13702
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13703
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13704
     self mergeNext24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13705
     ImageEditor openOnClass:self andSelector:#mergeNext24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13706
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13707
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13708
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13709
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13710
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13711
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13712
        constantNamed:'GenericToolbarIconLibrary mergeNext24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13713
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13714
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13715
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQA \GA0\GA0\GA0\FDQDQDQDQDQDQDQDQBQ@PDA@P
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13716
DA@PDA@IDQDQDQDQDQDQDQDQDP8PDA@PDA@PD@8QDQDQDQDQDQDQDQDQDPTPDA@PDA@PD@TQDQDQDQDQDQDQDQDQDQDKDA@PDA@PB1DQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13717
DQDBDA@PDA@P@!!DQDQDQDQDQDQDQDQDQDQDQB!!@PDA@JDQDQDQDQDQDQDQDQDQDQDQDQ@P<PD@<ADQDQDQDQDQDQDQDQDQDQDQDQDP PD@ QDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13718
DQDQDQDQDQDQDQDLCADQDQDQDQDQDQDQDQDQDQDQDQDQDQDC@1DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13719
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13720
DQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQDQ') ; colorMapFromArray:#[0 41 72 0 43 72 0 52 88 0 60 101 0 63 108 0 63 109 0 67 115 0 71 120 0 75 129 0 76 129 0 98 167 0 112 190 0 121 207 0 124 214 0 125 214 0 132 226 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@??@@??@@_>@@_>@@O<@@O<@@G8@@G8@@C0@@A @@A @@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13721
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13722
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13723
mergeNext32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13724
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNext32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13725
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13726
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13727
     self mergeNext32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13728
     ImageEditor openOnClass:self andSelector:#mergeNext32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13729
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13730
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13731
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13732
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13733
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13734
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13735
        constantNamed:'GenericToolbarIconLibrary mergeNext32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13736
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13737
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13738
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13739
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8@@0LC@0LC
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13740
@0LC@0LC@0LC@0@^G!!8^G!!8^G!!8^G!!8^G!!8RGQ4]GQ4]GQ4]GQ4]GQ4RG!!8^G!!8^G!!8^G!!8^G!!8^G T\GQ4]GQ4]GQ4]GQ4]G@T^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13741
G!!@]GQ4]GQ4]GQ4]GQ4OG!!8^G!!8^G!!8^G!!8^G!!8^G!!8^@Q(]GQ4]GQ4]GQ4]F H^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^B14]GQ4]GQ4]GQ4LG!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13742
G!!8^G!!8^G!!8^E14]GQ4]GQ4]E18^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8HGQ4]GQ4]GQ4HG!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8TGQ4]GQ4]D!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13743
G!!8^G!!8^G!!8^G!!8^G!!8^G T\GQ4]GQ0EG!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G <\GQ4]C18^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^@Q(]GQ AG!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13744
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^B!!4]B!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^E!!X^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8G
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13745
A18^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13746
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13747
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13748
G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G!!8^G @a') ; colorMapFromArray:#[0 20 32 0 27 47 0 27 48 0 30 52 0 33 56 0 33 57 0 34 57 0 38 65 0 41 69 0 51 87 0 52 87 0 54 91 0 53 92 0 68 115 0 68 116 0 70 119 0 71 121 0 89 152 0 90 153 0 94 160 0 94 161 0 102 174 0 103 174 0 111 189 0 119 205 0 121 208 0 123 210 0 132 225 0 132 226 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13749
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A??>@@O??@@C??0@@_?8@@G?>@@@??@@@G? @@A?8@@@O<@@@C?@@@@_ @@@G8@@@@<@@@@F@@@@A
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13750
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13751
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13752
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13753
mergeNextConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13754
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflict24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13755
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13756
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13757
     self mergeNextConflict24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13758
     ImageEditor openOnClass:self andSelector:#mergeNextConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13759
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13760
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13761
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13762
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13763
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13764
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13765
        constantNamed:'GenericToolbarIconLibrary mergeNextConflict24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13766
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13767
KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,DADQDQDQDQDQDQ@P
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13768
KB0,KB0,KB0,KB0,I",+J2,+J2,+J2,UKB0,KB0,KB0,KB0,@B(+J2,+J2,+J2$,KB0,KB0,KB0,KB0,KAP+J2,+J2,+J1H,KB0,KB0,KB0,KB0,KB0(J2,+
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13769
J2,+I20,KB0,KB0,KB0,KB0,KB0PJ2,+J2,+C"0,KB0,KB0,KB0,KB0,B!!\KCQLSD1LLBQ\VKB0,KB0,KB0,KB0,FBT%IRT%IRT%IRTYKB0,KB0,KB0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13770
KBD%IRT%IRT%IRH,KB0,KB0,KB0,KB0,K@X%IRT%IRT%IP(,KB0,KB0,KB0,KB0,KB0^IRT%IRT%G"0,KB0,KB0,KB0,KB0,KB0CIRT%IRT%AB0,KB0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13771
KB0,KB0,KB0,F2T%IRT\KB0,KB0,KB0,KB0,KB0,KB0,@RL%IRPBKB0,KB0,KB0,KB0,KB0,KB0,KA$%IQ(,KB0,KB0,KB0,KB0,KB0,KB0,KB0!!HR0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13772
KB0,KB0,KB0,KB0,KB0,KB0EA"0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13773
KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,KB0,') ; colorMapFromArray:#[0 37 62 87 14 0 92 14 0 104 16 0 108 17 0 118 18 0 120 18 0 123 19 0 125 19 0 121 20 3 125 20 0 120 20 4 94 42 48 93 44 50 0 51 87 0 52 89 0 54 91 0 56 96 0 62 107 91 56 72 0 65 111 0 74 127 128 20 0 132 20 0 143 22 0 146 23 0 149 24 0 184 29 0 189 29 0 208 33 0 210 33 0 228 36 0 230 36 0 231 36 0 236 37 0 247 39 0 250 39 0 255 40 0 0 79 136 0 111 189 0 114 195 0 123 210 0 125 215 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@??@@??@@?>@@_>@@O<@@O<@@??@@??@@_>@@_>@@O<@@O<@@G8@@G8@@C0@@A @@A @@@@@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13774
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13775
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13776
mergeNextConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13777
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflict32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13778
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13779
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13780
     self mergeNextConflict32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13781
     ImageEditor openOnClass:self andSelector:#mergeNextConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13782
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13783
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13784
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13785
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13786
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13787
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13788
        constantNamed:'GenericToolbarIconLibrary mergeNextConflict32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13789
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13790
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13791
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQ4]GQ4]GQ4]GQ4]GQ4]GQ5APTEAPTEAPTEAPTEAPTEANTA@PDA@PDA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13792
PDA@NDEAPTEAPTEAPTEAPTEAPTDQO4A@PDA@PDA@PDA@PC8OPTEAPTEAPTEAPTEAPTEAPTD7PDA@PDA@PDA@PDA@H4EAPTEAPTEAPTEAPTEAPTEAPP<=PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13793
PDA@PDA@PC0NPTEAPTEAPTEAPTEAPTEAPTEAPRI@PDA@PDA@PDA@HTEAPTEAPTEAPTEAPTEAPTEAPTEACS-@PDA@PDA@PC-APTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13794
PTEAG4A@PDA@PDA@G$EAPTEAPTEAPTEAPTEAPTEAPTDHB@ GD2@ HB@ HAHGB@ H@DEAPTEAPTEAPTEAPTEAPR\6M#X6M#X6M#X6M#X6M"%APTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13795
PTEAPTEACCP6M#X6M#X6M#X6M#X5CDEAPTEAPTEAPTEAPTEAPTEAICX6M#X6M#X6M#X6M"YAPTEAPTEAPTEAPTEAPTEAPTDDLCX6M#X6M#X6M#X2ADEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13796
PTEAPTEAPTEAPTEAPTDZM#X6M#X6M#X6M!!-APTEAPTEAPTEAPTEAPTEAPTEAPTD-M#X6M#X6M#X.@TEAPTEAPTEAPTEAPTEAPTEAPTEAPQX6M#X6M#X6M!!]A
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13797
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPR 6M#X6M#X*PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEABCP6M#X6M@1APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAGCX6
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13798
M#X$PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDAK3X6L@QAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDXM#XYPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13799
PTEAPTD+KDEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQPUPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13800
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13801
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPP@a') ; colorMapFromArray:#[35 6 0 45 6 0 47 7 0 50 8 0 52 8 0 53 8 0 50 10 5 50 11 6 58 9 0 58 10 0 61 9 0 62 9 0 62 10 0 0 26 47 0 29 50 0 32 53 0 33 55 0 35 60 41 36 50 40 37 53 65 11 0 69 10 0 73 11 0 78 12 0 88 13 0 94 14 0 98 15 0 104 16 0 124 19 0 0 37 64 0 45 77 0 48 82 40 49 72 0 58 99 0 61 104 0 73 124 128 20 0 130 20 0 135 21 0 164 26 0 171 28 0 174 28 0 180 28 0 189 29 0 198 31 0 202 32 0 209 33 0 224 35 0 229 36 0 230 36 0 235 37 0 245 38 0 247 39 0 248 39 0 255 40 0 0 78 133 0 92 156 0 96 165 0 112 191 0 116 198 0 125 214 0 128 218 0 132 226 0 134 228 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13802
@@@@@@@@@@@@@@@@@@@@@@C??0@@??<@@O??@@A?? @@_?8@@C?<@@@?>@@@G? @@O?? @C??0@@??<@@G?>@@A?? @@O?0@@A?<@@@_>@@@C?@@@@?0@@@G
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13803
8@@@A>@@@@O@@@@A @@@@X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13804
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13805
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13806
mergeNextConflictAutoAdvance24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13807
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflictAutoAdvance24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13808
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13809
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13810
     self mergeNextConflictAutoAdvance24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13811
     ImageEditor openOnClass:self andSelector:#mergeNextConflictAutoAdvance24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13812
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13813
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13814
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13815
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13816
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13817
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13818
        constantNamed:'GenericToolbarIconLibrary mergeNextConflictAutoAdvance24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13819
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13820
PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@LS(:N#(:N#(:N#(1PDA@PDA@PDA@PDA@D3<?O3<?O3<?O38QPDA@PDA@PDA@PDA@PCD?O3<?O3<?O2=@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13821
PDA@PDA@PDA@PDA@P@8;O3<?O3<?N09@PDA@PDA@PDA@PDA@PD@WN#(:N#(:E$A@PDA@PDA@PDA@PDA@KCP4MSX6M#X5MCP*PDA@PDA@PDA@PDA@ES<?O#<?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13822
O3<?O#<TPDA@PDA@PDA@PDA@PC\?O3<?O3<?O3Q@PDA@PDA@PDA@PDA@PAD>O3<?O3<?N1A@PDA@PDA@PDA@PDA@PD@-O#<?O38?KDA@PDA@PDA@PDA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13823
PD@ANS(:N#(9@DA@PDA@PDA@PDA@PDA@F"H"HR@ HB@!!H"H[PDA@PDA@PDA@PDA@BR$)JR$)JR$)JR$KPDA@PDA@PDA@PDA@PA8)JR$)JR$)JQ=@PDA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13824
PDA@PDA@P@\(JR$)JR$)J@]@PDA@PDA@PDA@PDA@PD@XJR$)JR$)FTA@PDA@PDA@PDA@PDA@PD@BIR$)JR$%ADA@PDA@PDA@PDA@PDA@PDA@CB$)JR$MPDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13825
PDA@PDA@PDA@PDA@PDA@PBL)JRQ@PDA@PDA@PDA@PDA@PDA@PDA@P@$)JP)@PDA@PDA@PDA@PDA@PDA@PDA@PD@\GTA@PDA@PDA@PDA@PDA@PDA@PDA@PD@C
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13826
ATA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@') ; colorMapFromArray:#[0 31 55 0 33 57 69 11 0 71 12 0 73 11 0 78 12 0 82 12 0 82 13 0 95 14 0 95 15 0 96 15 0 105 16 0 119 19 0 126 20 0 0 44 74 0 44 75 0 45 78 0 47 81 0 47 82 0 49 85 0 56 95 0 61 103 0 65 110 0 66 112 147 24 0 153 24 0 158 25 0 163 26 0 169 27 0 174 27 0 178 27 0 182 28 0 190 37 12 192 33 5 201 32 0 207 33 0 213 33 0 240 38 0 243 38 0 250 39 0 251 39 0 255 40 0 0 78 133 0 81 138 0 81 139 0 85 144 0 90 155 0 92 155 0 91 156 0 91 157 0 97 165 0 97 166 0 98 167 0 99 169 0 100 170 0 101 172 0 111 189 0 113 192 0 118 201 0 132 226 0 133 227 0 134 229 0 135 231 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@??@@??@@_>@@_>@@O<@@??@@??@@_>@@_>@@O<@@O<@@??@@??@@_>@@_>@@O<@@O<@@G8@@C0@@C0@@A @@A @@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13827
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13828
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13829
mergeNextConflictAutoAdvance32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13830
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeNextConflictAutoAdvance32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13831
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13832
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13833
     self mergeNextConflictAutoAdvance32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13834
     ImageEditor openOnClass:self andSelector:#mergeNextConflictAutoAdvance32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13835
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13836
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13837
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13838
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13839
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13840
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13841
        constantNamed:'GenericToolbarIconLibrary mergeNextConflictAutoAdvance32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13842
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13843
V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)Z@RT)JR$)JR$)JR$)JR$)JRTAV%)ZV%)ZV%)ZV%)ZV%)ZI5!!YVU%YVU%YVU%YVU%YJE)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13844
V%)ZV%)ZV%)ZV%)ZV%(OUE%YVU%YVU%YVU%YVUHOV%)ZV%)ZV%)ZV%)ZV%)ZV%(#VU%YVU%YVU%YVU%YH5)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)NVU%YVU%YVU%Y
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13845
VT5ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV!!MXVU%YVU%YVU%XD5)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV"5TUEQTUEQTUB1ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(LQT!!HQ$-K
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13846
R4-KR4-KQ$!!HK@1ZV%)ZV%)ZV%)ZV%)ZV%(%VU%YVU%YVU%YVU%YVU$$V%)ZV%)ZV%)ZV%)ZV%)ZV%)PVU%YVU%YVU%YVU%YS5)ZV%)ZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13847
V"EYVU%YVU%YVU%YVU$SV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV$-YVU%YVU%YVU%YRE)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZDUYYVU%YVU%YVUTQV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13848
V%)ZV%)ZV%)ZJ5%YVU%YVU%YJ%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(NSUAPTEAPTD0LV%)ZV%)ZV%)ZV%)ZV%)ZV%)Z@"86M#X5MCP4MCP4MSX6M#@CV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13849
V%)ZV%)ZV%)ZV%)ZF$MCP4MCP4MDQDQDP4MCGE)ZV%)ZV%)ZV%)ZV%)ZV%)ZNTMCP4MCP4QDQDQCP3)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(XP4MCP4MCQDQDQDMC
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13850
FE)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(2P4MCP4MDQDQDQCMZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV $?P4MCP4QDQDQ@BU)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV!!=CP4MC
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13851
QDQDQBAZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZAC-CP4MDQDP<A%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZFTMCP4MCP11ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13852
V%)ZM4MCP4L9V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(UP$MCP1!!ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%(0P4L1V%)ZV%)ZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13853
V%)ZV%)ZV%)ZV X=O %ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV!!4^V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV QZV%)ZV%)ZV%)ZV%)Z
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13854
V%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV @a') ; colorMapFromArray:#[0 17 27 0 17 29 41 7 0 42 6 0 51 8 0 51 9 0 53 8 0 54 10 0 57 9 0 59 9 0 59 10 0 0 20 33 0 20 34 0 20 35 0 21 36 0 23 41 0 32 53 0 32 55 0 36 61 0 36 62 0 37 63 67 11 0 68 10 0 70 10 0 71 11 0 86 13 0 89 15 0 93 14 0 94 14 0 106 16 0 111 18 0 114 18 0 123 19 0 0 40 68 0 45 78 0 46 78 0 52 87 0 54 93 0 55 94 0 59 99 0 58 100 0 62 106 0 65 111 0 70 120 0 72 122 0 72 123 134 21 0 139 22 0 140 22 0 148 23 0 151 24 0 158 25 0 159 31 10 160 27 3 166 26 0 182 29 0 189 30 0 191 30 0 193 30 0 226 35 0 230 36 0 235 37 0 239 37 0 241 38 0 244 38 0 250 39 0 252 40 0 254 40 0 255 40 0 0 75 128 0 83 141 0 85 145 0 87 147 0 90 154 0 91 154 0 91 155 0 98 167 0 101 172 0 102 175 0 104 177 0 109 185 0 109 186 0 116 198 0 116 199 0 118 201 0 130 222 0 132 226 0 135 230 0 135 231 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13855
@@@@@@G??8@@??<@@O??@@A?? @@O?0@@C?<@@@_>@@A??>@@O??@@A?? @@_?8@@C?<@@@??@@@G? @@A?8@@G??8@@??<@@G?>@@A?? @@O?0@@C?<@@@_
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13856
>@@@G? @@@?0@@@G8@@@A>@@@@O@@@@C0@@@@X@@@@B@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13857
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13858
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13859
mergePrev24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13860
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrev24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13861
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13862
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13863
     self mergePrev24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13864
     ImageEditor openOnClass:self andSelector:#mergePrev24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13865
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13866
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13867
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13868
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13869
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13870
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13871
        constantNamed:'GenericToolbarIconLibrary mergePrev24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13872
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13873
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13874
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTH
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13875
BATUEQTUEQTUEQTUEQTUEQTUEQTUEQTPDATUEQTUEQTUEQTUEQTUEQTUEQTUEP4TE@4UEQTUEQTUEQTUEQTUEQTUEQTU@!!LTEALCEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13876
EQTUC!!PTEAPNEQTUEQTUEQTUEQTUEQTUEQTFEAPTEAPTAQTUEQTUEQTUEQTUEQTUEQTOEAPTEAPTC1TUEQTUEQTUEQTUEQTUEP(TEAPTEAPTE@(UEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13877
EQTUEQTU@QHTEAPTEAPTEADAEQTUEQTUEQTUEQTUB1PTEAPTEAPTEAPKEQTUEQTUEQTUEQTUAP\GA0\GA0\GA0\EEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13878
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13879
EQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTUEQTU') ; colorMapFromArray:#[0 38 64 0 38 65 0 46 78 0 46 80 0 54 91 0 55 91 0 54 92 0 56 96 0 61 104 0 65 110 0 66 111 0 78 134 0 79 134 0 80 136 0 98 167 0 117 201 0 126 216 0 128 218 0 129 220 0 134 229 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@A @@A @@C0@@G8@@G8@@O<@@O<@@_>@@??@@??@@??@@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13880
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13881
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13882
mergePrev32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13883
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrev32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13884
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13885
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13886
     self mergePrev32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13887
     ImageEditor openOnClass:self andSelector:#mergePrev32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13888
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13889
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13890
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13891
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13892
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13893
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13894
        constantNamed:'GenericToolbarIconLibrary mergePrev32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13895
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13896
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13897
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13898
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13899
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!B (!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRDYFRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13900
HRD!!HRD!!C"@ CRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HPP\HB@[@2D!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!D"@ HB@RHRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13901
HRD!!HRD!!HRD!!HP ^HB@ HA8FHRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!E"@ HB@ HAT!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HP, HB@ HB@ H@,!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13902
HRD!!HRD!!HRD!!HRD!!HRD@F"@ HB@ HB@ F @!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HP< HB@ HB@ HB@ C2D!!HRD!!HRD!!HRD!!HRD!!HRD!!HRDCGR@ HB@ HB@ HB@\
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13903
@2D!!HRD!!HRD!!HRD!!HRD!!HRD!!HQP HB@ HB@ HB@ HB@THRD!!HRD!!HRD!!HRD!!HRD!!HRDHG"@ HB@ HB@ HB@ HA8HHRD!!HRD!!HRD!!HRD!!HRD!!HQ  HB@ HB@ 
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13904
HB@ HB@ HA\!!HRD!!HRD!!HRD!!HRD!!HRD!!BP$IBP$IBP$HBP$IBP$IBRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13905
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13906
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13907
HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HP@a') ; colorMapFromArray:#[0 26 45 0 30 52 0 30 53 0 30 54 0 32 54 0 34 58 0 35 58 0 34 59 0 35 60 0 37 64 0 39 69 0 43 72 0 43 73 0 53 90 0 54 92 0 57 96 0 57 97 0 73 124 0 73 125 0 75 129 0 76 130 0 94 160 0 94 161 0 95 162 0 99 168 0 109 187 0 117 200 0 125 213 0 126 216 0 127 217 0 134 228 0 134 229 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13908
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@F@@@@A @@@@<@@@@_ @@@G8@@@C?@@@@?0@@@_>@@@O?0@@C?<@@A?? @@_?8@@O??@@C?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13909
?0@@??<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13910
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13911
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13912
mergePrevConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13913
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrevConflict24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13914
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13915
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13916
     self mergePrevConflict24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13917
     ImageEditor openOnClass:self andSelector:#mergePrevConflict24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13918
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13919
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13920
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13921
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13922
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13923
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13924
        constantNamed:'GenericToolbarIconLibrary mergePrevConflict24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13925
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13926
LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13927
LC@0LC@0LC@0LC@0LC@0LC@MB#@0LC@0LC@0LC@0LC@0LC@0LC@0LC@$H3@0LC@0LC@0LC@0LC@0LC@0LC@0LA8(JA00LC@0LC@0LC@0LC@0LC@0LC@0@2 (
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13928
JBXBLC@0LC@0LC@0LC@0LC@0LC@0HB (JB _LC@0LC@0LC@0LC@0LC@0LC@GJB (JB (AC@0LC@0LC@0LC@0LC@0LC@"JB (JB (HS@0LC@0LC@0LC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13929
LA((JB (JB (J@40LC@0LC@0LC@0LC@0@BT(JB (JB (JBPALC@0LC@0LC@0LC@0GB (JB (JB (JB [LC@0LC@0LC@0LC@0B 4EC!!\WE1\OAP0JLC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13930
LC@0LC@0LC@SK2</K2</ES@0LC@0LC@0LC@0LC@0LC@,K2</K2</KC@0LC@0LC@0LC@0LC@0LA /K2</K2</K1$0LC@0LC@0LC@0LC@0DB4/K2</K2</K28Q
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13931
LC@0LC@0LC@0LC@0JR</K2</K2</K2<*LC@0LC@0LC@0LC@0D1PVE!!XVE!!XVE!!XSLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13932
LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0') ; colorMapFromArray:#[74 11 0 75 12 0 96 15 0 100 15 0 108 17 0 109 21 4 110 20 4 112 18 0 117 18 0 118 18 0 119 18 0 124 19 0 123 20 0 126 20 0 82 44 55 81 46 57 0 38 66 0 41 70 0 52 89 0 53 91 0 54 91 0 55 96 0 56 96 79 61 83 0 65 111 0 66 112 128 20 0 147 23 0 152 24 0 153 24 0 157 24 0 184 29 0 190 30 0 219 35 0 222 35 0 234 37 0 238 37 0 242 38 0 251 39 0 253 40 0 255 40 0 0 79 133 0 83 141 0 117 199 0 118 202 0 127 217 0 129 220 0 136 232 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@A @@A @@C0@@G8@@G8@@O<@@O<@@_>@@??@@??@@??@@O<@@O<@@_>@@??@@??@@??@@@@@@@@@@@@@') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13933
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13934
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13935
mergePrevConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13936
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergePrevConflict32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13937
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13938
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13939
     self mergePrevConflict32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13940
     ImageEditor openOnClass:self andSelector:#mergePrevConflict32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13941
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13942
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13943
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13944
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13945
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13946
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13947
        constantNamed:'GenericToolbarIconLibrary mergePrevConflict32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13948
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13949
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13950
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQ\VPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13951
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAKB-APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPQ,5MQ)APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDH
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13952
LCT5K0MAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPRT5MST5H4EAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDUMST5MST2BTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13953
PTEAPR$5MST5MST''PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTDYMST5MST5MSTXPTEAPTEAPTEAPTEAPTEAPTEAPTEA@R85MST5MST5MR4BPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13954
PTEAPTEAPTD]MST5MST5MST5MQ1APTEAPTEAPTEAPTEAPTEAPTEABCD5MST5MST5MST5L@!!APTEAPTEAPTEAPTEAPTEAPTD&MST5MST5MST5MST5IDEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13955
PTEAPTEAPTEAPTEAESH5MST5MST5MST5MST2BTEAPTEAPTEAPTEAPTEAPTD*MST5MST5MST5MST5MST(PTEAPTEAPTEAPTEAPTEA@@ HB@TQHB@ HB@ D TH
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13956
B@!!APTEAPTEAPTEAPTEAPTEAPTEAG$A@PDA@PDA@G4EAPTEAPTEAPTEAPTEAPTEAPTEAPP(:PDA@PDA@PD@;CDEAPTEAPTEAPTEAPTEAPTEAPTEAHTA@PDA@
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13957
PDA@PD@"PTEAPTEAPTEAPTEAPTEAPTEAPP0<PDA@PDA@PDA@PC4NPTEAPTEAPTEAPTEAPTEAPTEAM$A@PDA@PDA@PDA@PC]APTEAPTEAPTEAPTEAPTEAPQ@?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13958
PDA@PDA@PDA@PDA@O1AAPTEAPTEAPTEAPTEAPTEANDA@PDA@PDA@PDA@PDA@NTEAPTEAPTEAPTEAPTEAPTDKB0,KB0,KB0,KB0,KB00LPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13959
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEA
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13960
PTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPP@a') ; colorMapFromArray:#[36 6 0 52 7 0 50 8 0 54 8 0 50 10 5 50 11 6 56 9 0 58 9 0 59 9 0 62 9 0 0 30 50 0 31 54 0 32 53 0 32 55 0 34 57 0 36 61 0 36 62 41 36 50 40 36 53 64 11 0 66 10 0 67 11 0 69 10 0 74 11 0 76 12 0 83 13 0 92 14 0 100 15 0 102 16 0 112 18 0 0 46 81 0 49 85 40 49 72 0 60 102 0 65 110 131 20 0 135 21 0 140 22 0 145 23 0 170 27 0 174 27 0 182 28 0 187 29 0 202 31 0 211 33 0 214 33 0 221 35 0 232 36 0 238 37 0 242 38 0 249 39 0 250 39 0 252 40 0 255 40 0 0 78 133 0 82 141 0 100 171 0 104 178 0 118 201 0 120 207 0 129 220 0 131 224 0 135 230 0 135 231 0 136 232 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13961
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@X@@@@F@@@@C0@@@A>@@@@_ @@@O<@@@C?@@@A?8@@@??@@@O?0@@G?>@@A?? @@??<@@O??@@G??0@@G? @@C?<@@@?
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13962
?@@@_?8@@G?>@@C??0@@??<@@O??@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13963
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13964
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13965
mergeUsingA24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13966
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingA24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13967
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13968
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13969
     self mergeUsingA24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13970
     ImageEditor openOnClass:self andSelector:#mergeUsingA24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13971
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13972
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13973
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13974
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13975
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13976
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13977
        constantNamed:'GenericToolbarIconLibrary mergeUsingA24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13978
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13979
APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13980
APTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAP@@@@TEAPTEAPTEAPTEAPPDA@PDAPTEAP@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13981
@@TEAPTEAPTEAPTEAPPDA@PDAPTEAP@@@@@EAPTEAPTEAPTEAPPDA@PDAPTE@@@E@@@EAPTEAPTEAPTEAPPDA@PDAPTE@@@EAP@EAPTEAPTEAPTEAPPDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13982
APTE@@TEAP@@APTEAPTEAPTEAPPDA@PDAPT@@@TEAP@@APTEAPTEAPTEAPPDA@PDAPT@@@TEAPT@@@TEAPTEAPTEAPPDA@PDAP@@@@@@@@@@@@TEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13983
APPDA@PDAP@@APTEAPT@@@TEAPTEAPTEAPPDA@PD@ @@APTEAPTE@@@EAPTEAPTEAPPDA@PD@P@EAPTEAPTE@@@EAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13984
APTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTEAPTEAPTEAPTEAPTEAPPDA@PDAPTEAPTE
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 13985
APTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTE') ; colorMapFromArray:#[0 0 0 18 23 10 70 90 40 165 211 94 165 211 95 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_@@@_@@@_@@@_@@@_@@@_C @_C @_C0@_F0@_FP@_DX@_LX@_LL@__<@_XL@_8F@_0F@_@@@_@@@_@@@_@@@_@@@@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13986
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13987
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13988
mergeUsingA32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13989
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingA32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13990
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13991
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13992
     self mergeUsingA32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13993
     ImageEditor openOnClass:self andSelector:#mergeUsingA32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13994
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13995
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13996
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13997
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13998
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 13999
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14000
        constantNamed:'GenericToolbarIconLibrary mergeUsingA32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14001
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14002
A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@LC@0LC@0PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PDA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14003
A@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14004
A@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14005
A@@@@@PDA@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PD@@@@A@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PDA@@@@@@@A@PDA@PDA@PDA@PDA@PC@ HB@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14006
A@PDA@PD@@@D@@@DA@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@@@@@P@@@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PDA@PD@@@DA@P@@@PDA@PDA@PDA@PDA@PC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14007
@ HB@ HBA@PDA@P@@@PDA@@@A@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PD@@@@A@PD@@@@A@PDA@PDA@PDA@PD@0HB@ HB@ PDA@P@@@PDA@PD@@@DA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14008
A@PDA@PC@ HB@ HBA@PD@@@@A@PDA@P@@@PDA@PDA@PDA@PDA@LB@ HB@ HDA@P@@@@@@@@@@@@@@@PDA@PDA@PDA@PD@0HB@ HB@ PDA@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14009
A@PDA@PDA@PDA@PC@ HB@ HBA@P@@@@DA@PDA@PD@@@@A@PDA@PDA@PDA@LB@ HB@ HDA@@@A@PDA@PDA@PD@@@DA@PDA@PDA@PD@0HB@ HB@ PD@@@DA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14010
A@PDA@P@@@PDA@PDA@PDA@PC@ HB@ HB@P@@@@PDA@PDA@PDA@@@@@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB@ HB@ PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14011
A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@LB@ HB@ HDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PD@0HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14012
@ HB@ PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@ HB@ HBA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PC@0LC@0LDA@PDA@PDA@PDA@PDA@PDA@PDA@PD
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14013
A@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@PDA@@a') ; colorMapFromArray:#[0 0 0 96 122 55 165 211 95 165 211 96 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14014
@@@@@C<@@@A?@@@@_0@@@G<@@@A?@@@@_0@@@G<@@@A?@\@@_0G@@G<C8@A?@6@@_0] @G<FL@A?A#@@_088@G<LF@A?GA @_1?<@G<_?@A?N@8@_3@F@G<0
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14015
A A?<@\@_0@@@G<@@@A?@@@@_0@@@G<@@@A?@@@@O0@@@@@@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14016
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14017
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14018
mergeUsingAAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14019
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingAAll24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14020
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14021
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14022
     self mergeUsingAAll24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14023
     ImageEditor openOnClass:self andSelector:#mergeUsingAAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14024
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14025
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14026
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14027
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14028
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14029
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14030
        constantNamed:'GenericToolbarIconLibrary mergeUsingAAll24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14031
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14032
*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*1L8MC,;N34=OS5@PDAHPD!!HRD!!IRQZ+*2>O#9NS%Y"X(I"!!(ZF!!)*V&)*&**T*+*3RN#8>S$9VX&I"!!&JF!!(ZV%
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14033
)*Z&*T&+*3RI#8>O$9NU%Y"X(ZB!!(ZF&)*Z&*T"+*2:I"X&O#9VU&9"U&9. (JF!!(ZZ&)$^+*2:G"X>O#8>U%SPAEF*[&:B!!(ZF&)$&+*3RF!!8&I"X>O#00F
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14034
@U"[(JB!!(ZF&(T&+*2:F!!H&I#8&OVPD8@RBX&JB (JB!!(TB+*2:F!!(ZG!!8>NF !!\D05%&IV (JB!!(TB+*2>F_XZF"X%.AQ1$R0ET&I2X&:B!!(TB+*2U=_G2F
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14035
!!H%N@T>O^@T[^Y"X%ZB!!(DB+*295_G6D!!HPOB%6I#1 HVYVX&I" &36+*29<_G5=!!FDAGFE+Z44APIRU%Y"U&36+*2Y7]71=_Q<A@PDA@PDADV^U%YV[&36+
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14036
*2Y5]7]=]P$NSD=PT5LY@UZU%YVU%S6+*2Y5]WU7UPD/[XZD!!H%]@Q:G$9NU%S.+*2U1]WE7E0UW_W6D!!HRIC0- #8>S%S.+*2E1\WU7X%-(_W2F!!(RDZVA&
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14037
"X>O$3.+*2Y1\WE1]W]<_G5=!!''6D!!H&O#8:O#3.+*2U/[7E1]WU7_G1<_G2F!!HZI#8&O#3&+*2E,[611\WE5]7U<_XY<_XZF!!8&O#3.+*1@!!IRH&H2X&I"X.
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14038
K"8/K"8.MB8/MAF+*:.+*:.+*:.+*:.+*:.+*:.+*:.+*:.+') ; colorMapFromArray:#[0 0 0 1 1 0 1 2 1 4 5 2 5 6 3 6 6 3 7 8 4 7 9 4 9 11 5 13 16 7 15 18 8 18 21 10 20 23 11 24 28 13 29 35 16 31 37 17 31 41 18 37 43 20 36 44 20 37 44 20 38 45 21 39 45 21 43 47 22 44 54 24 46 55 26 48 57 27 54 65 30 59 69 32 64 76 35 64 77 35 69 81 37 69 84 40 77 89 42 74 95 43 76 96 43 76 96 44 77 96 44 77 97 44 78 97 45 80 99 44 80 98 45 81 98 45 81 99 45 80 99 46 80 100 46 81 100 46 82 100 46 83 102 47 84 100 46 84 100 47 84 102 46 86 102 47 87 102 47 86 101 48 85 102 48 87 102 48 86 103 48 88 102 48 88 103 48 89 103 48 89 104 48 90 105 49 91 105 49 90 106 49 92 105 49 92 106 49 93 106 49 93 106 50 94 106 50 94 107 51 95 107 51 95 108 51 96 108 51 97 109 52 98 109 52 98 115 54 99 119 55 102 119 56 102 122 56 107 128 59 108 129 59 109 130 59 109 131 59 110 131 60 112 131 61 118 145 66 125 147 69 129 158 72 134 156 73 139 165 78 143 168 78 139 172 78 145 171 80 145 172 80 146 174 81 147 175 81 148 175 82 151 181 83 149 183 83 152 182 84 158 186 87 157 184 88 159 190 88 164 194 90 160 196 89 167 200 92 173 201 95 173 206 96 167 213 96 173 209 97 175 208 97 168 212 96 169 213 96 171 214 97 172 214 97 173 215 98 174 215 98 175 215 98 175 216 98 175 216 99 178 210 98 180 210 98 176 216 99 176 217 99 177 217 99 178 217 100 178 218 100 179 218 100 180 218 100 180 219 101 181 219 101 182 219 101 182 220 101 183 220 101 183 220 102 185 219 102 185 220 102 185 221 102 185 221 103 186 221 103 186 222 103 187 222 103 188 222 103 188 223 104 189 223 104 190 223 104 190 224 104 191 224 104 191 224 105 192 225 105 193 225 105 193 225 107 194 225 107 194 226 107 195 226 107 196 226 107 196 227 107 197 227 107 198 227 107 198 228 107 199 228 108 200 229 108 201 229 108 201 229 109 202 230 109 203 230 109 204 231 110 205 231 110 206 232 111 207 232 111 209 233 111 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14039
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14040
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14041
mergeUsingAAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14042
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingAAll32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14043
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14044
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14045
     self mergeUsingAAll32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14046
     ImageEditor openOnClass:self andSelector:#mergeUsingAAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14047
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14048
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14049
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14050
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14051
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14052
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14053
        constantNamed:'GenericToolbarIconLibrary mergeUsingAAll32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14054
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14055
+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+J0@"H"K#X:N%9^N%9^W%9:"%:J")JR$)J"(
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14056
*J"+*0B,+@BF"H.M#X:N#)^W%)^W'')Z"''JJ")JR$*J"(*J"+@J2,@HVE!!X"H#X6M#)^V%)ZV''):Y''*R$(*R((*"(*J @+J0@^(VE"8"H#X6N#(:V%)ZV%):Y
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14057
''):")I:((*"(*@B,+@BE!!XZF"H"K"8:N#)"V%)^V''):Y():$(:N"*J"(@J2,@G&E!!XZF"H.M#(:N#'')LSHJV&Y:Y''):#(:J"*J @+J0@^XU9"H"H"H"H"H:N
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14058
PP8@CIZW%*JW():#)JJ(*@B,+@A9]8!!9]8"E"H"J"(H/@@@@OIZV%92\''):")I:(@J2,@G]9^XE9"HZF"H"HQBD@FP@\#)^W%92W''):"(*P@+J0@]W]7]8U9
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14059
!!XZF"HX8@@T5A U*%)^V''I:^''):"( B,+@A7]7]7^XU:!!XVESR(@G$X$@B:U%YVU'')Z^''*J"@J2,@F95]7]9^W):!!XUBD0@:!!"<@D)VU%Y2V'')Z^'')8@+J0@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14060
]V9.]7]9^''*F!!#@@B8ZMO@<@RX:N%)ZW'')Z"%0B,+@A.]WU.]7]:^'')FI @%"HYJI0@%#)VV%)^W%)Z"@J2,@F9.]V97]7]9^S I@D^E#XX1@@%:#)"U%YVX
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14061
&I0@+J0@[F9.]V9.]7%]J0@Q!!XVE!!S(W@CRJ%)JU%YVX&@B,+@A)[&9.[''U5]4@[@@$WE1\WE00@F(6N#)"U%Y"X@J2,@FY&[F9.]V95L0@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14062
SX6J#)VU%Y @+J0@Y&Y)ZV9.]T,(@A!!USUUUUUX:H@@)#X6N#)VU%PB,+@A&Y&Y)[&9)M1D@L'']9^XVE]7T,@ABH#X6N#)VU@J2,@FI&X&Y)[&X-@@U]]WU9
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14063
]7&E!!S(G@DNM"86M#)T@+J0@X&I&Y&Y)O2@@GV95]W%7^W^EQRH@HH.H#X6N# B,+@A"X&I"Y&Y[S$9)[''].^W]7^'')7UUU+!!XZH"H:N@J2,@E%"X&Y"Y&Y)
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14064
ZV%.[''].]7]:]7):!!W*E!!X"H#X8@+J0@X&I"X&I"ZVY)ZV%.[''].^W]7^''*E!!XVE!!XVF#PB,+@AYWE9"X&Y$X&Y)[&%.[''].]7]:^'')9!!XVE!!X6H@J2,@E%"
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14065
W%1"X&I&Y&Y)ZV%.[''U.]7]7^XU9!!XVE!!XT@+J0@VU1\W%1]X&I"ZVY)[&9.[&97]W]7^W)9!!XVE!!PB,+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14066
@J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+J2,+@@a') ; colorMapFromArray:#[0 0 0 1 1 0 1 1 1 3 3 2 3 4 1 5 7 3 7 8 4 9 11 5 10 11 5 11 13 6 11 14 6 12 15 7 14 17 8 16 19 8 17 19 9 17 20 9 20 23 11 22 27 12 26 30 14 30 36 16 30 36 17 31 36 17 30 37 17 31 37 17 34 42 19 38 44 21 39 46 22 46 55 25 48 56 26 49 60 27 50 59 28 51 62 28 52 61 29 56 67 31 58 69 32 62 73 34 65 76 35 67 79 36 70 83 39 73 86 39 75 92 42 84 99 47 85 101 47 90 108 50 93 111 51 94 117 53 98 114 54 101 118 55 105 126 58 109 128 60 110 132 61 115 138 64 119 140 66 125 146 68 127 149 69 127 156 72 130 154 72 132 157 73 135 158 72 133 157 74 135 157 74 134 159 74 136 159 74 131 160 73 133 160 74 138 163 75 136 163 76 140 166 78 146 171 80 146 175 80 148 173 82 148 177 81 149 178 82 154 181 85 159 186 87 154 188 86 168 196 92 168 199 94 164 201 92 164 202 92 169 200 92 169 204 94 170 204 94 171 204 94 171 205 94 171 205 95 172 205 95 172 206 95 172 207 95 166 211 95 167 213 95 170 210 95 167 213 96 172 209 96 168 212 96 168 213 96 169 213 96 170 213 97 171 214 97 172 214 97 172 215 98 173 215 98 174 215 98 175 215 98 175 216 98 175 216 99 179 210 98 181 215 100 176 216 99 176 217 99 177 217 99 178 217 99 178 217 100 178 218 100 179 218 100 181 217 101 180 218 100 180 219 101 181 219 101 182 219 101 182 220 101 183 220 101 183 220 102 185 216 102 187 218 102 188 217 102 185 220 102 185 221 102 185 220 103 185 221 103 187 220 103 186 221 103 186 222 103 187 222 103 188 222 103 189 222 103 188 223 104 189 223 104 190 223 104 190 224 104 191 224 104 191 224 105 192 224 105 192 225 105 193 225 105 193 225 107 194 224 106 194 225 107 194 226 107 195 226 107 196 226 107 196 227 107 197 227 107 198 227 107 198 228 107 198 228 108 199 228 108 200 228 108 200 229 108 201 229 108 201 229 109 202 229 109 202 230 109 203 230 109 204 230 109 204 231 110 205 231 110 206 232 110 207 232 111 208 233 111 209 233 112 210 234 112 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14067
@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14068
??9????>_????''????9????>_????''????9????>_???? @@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14069
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14070
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14071
mergeUsingB24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14072
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingB24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14073
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14074
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14075
     self mergeUsingB24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14076
     ImageEditor openOnClass:self andSelector:#mergeUsingB24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14077
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14078
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14079
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14080
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14081
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14082
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14083
        constantNamed:'GenericToolbarIconLibrary mergeUsingB24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14084
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14085
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14086
@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0L@@@@@@@@C@0LC@0LC@0LC@0HB@ HB@0L@@@LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14087
@@@@@0LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@0LC@0@@@0LC@0LC@0LC@0HB@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14088
@0L@@@@@@@@@@0LC@0LC@0LC@0HB@ HB@0L@@@LC@0@@@0LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14089
@0HB@ HB@0L@@0LC@0L@@@LC@0LC@0LC@0HB@ HB@0L@@@LC@@@@@@LC@0LC@0LC@0HB@ HB@0L@@@@@@@@C@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14090
@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14091
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC') ; colorMapFromArray:#[0 0 0 242 181 13 243 181 13 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_@@@_@@@_@@@_@@@_@@@_O0@_L8@_HL@_HL@_HX@_O8@_LX@_HL@_HL@_HL@_L<@_O0@_@@@_@@@_@@@_@@@_@@@@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14092
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14093
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14094
mergeUsingB32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14095
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingB32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14096
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14097
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14098
     self mergeUsingB32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14099
     ImageEditor openOnClass:self andSelector:#mergeUsingB32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14100
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14101
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14102
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14103
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14104
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14105
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14106
        constantNamed:'GenericToolbarIconLibrary mergeUsingB32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14107
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14108
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ HB@ LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ DA@PHB@0LC@0LC@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14109
@0LC@0LC@0HB@ DA@PHC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@PDA@PDA@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14110
@0LC@0LC@0LC@0LC@0HA@PDA@PDC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ HA@PDA@0LC@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14111
@@@@@@@@@0LC@0LC@0LC@0LC@0HA@ DA@PDC@0L@@@@@@@@@@@@@@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@0LC@0LC@@@@@0LC@0LC@0LC@0LB@PDA@PDA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14112
@0LC@@@C@0LC@0L@@@@C@0LC@0LC@0LC@0HA@PDA@PDC@0L@@@LC@0LC@0@@@@LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@0LC@0LC@@@@@0LC@0LC@0LC@0LB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14113
@ DA@PDA@0LC@@@C@0LC@0@@@@LC@0LC@0LC@0LC@0HB@ DA@PDC@0L@@@@@@@@@@@@C@0LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@@@@@@@@@@@C@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14114
@0LC@0LB@PDA@PDA@0LC@@@C@0LC@0L@@@@C@0LC@0LC@0LC@0HA@PDA@PDC@0L@@@LC@0LC@0L@@@LC@0LC@0LC@0LC@ DA@PDA@PLC@0@@@0LC@0LC@0@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14115
@0LC@0LC@0LC@0LB@ HA@PDA@0LC@@@C@0LC@0LC@@@C@0LC@0LC@0LC@0HA@ DA@PDC@0L@@@LC@0LC@0@@@@LC@0LC@0LC@0LC@ DA@PDB@ LC@0@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14116
@@@@@@@@@0LC@0LC@0LC@0LB@PDA@PDB@0LC@@@@@@@@@@@@@0LC@0LC@0LC@0LC@0HA@PDA@PDC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ DA@PDA@PLC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14117
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ DA@PDA@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0HB@ DA@PDC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@ HB
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14118
@PDA@PLC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@PHA@PDA@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LB@ HB@ HC@0LC@0LC@0LC@0LC@0LC@0LC@0LC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14119
@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0@a') ; colorMapFromArray:#[0 0 0 243 181 13 243 181 14 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14120
@@@@@C<@@@A?@@@@_0@@@G<@@@A?@@@@_0@@@G<@@@A?G?@@_1?8@G<XG@A?FA0@_1 \@G<XG@A?FC @_1?0@G<_>@A?FA0@_1 L@G<XC@A?F@0@_1 \@G<_
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14121
?@A?G?@@_0@@@G<@@@A?@@@@_0@@@G<@@@A?@@@@O0@@@@@@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14122
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14123
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14124
mergeUsingBAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14125
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBAll24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14126
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14127
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14128
     self mergeUsingBAll24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14129
     ImageEditor openOnClass:self andSelector:#mergeUsingBAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14130
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14131
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14132
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14133
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14134
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14135
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14136
        constantNamed:'GenericToolbarIconLibrary mergeUsingBAll24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14137
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14138
6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6 89NS$?O3<?RD!!GQ4]MST5MTEAPT ?Z6#N.,[F7-;;A0\SH2,3N4MKU5]_X6EKZ6">.++F7-;^>/,GD2L+L3,?R
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14139
4-_W6EKZ6#N&+*:.,;^:.+;A1L#J3L/O5]WU55CZ6">$)*".++N7.+*>1LSH2,/K4MCU5UCZ6">^)J".+&D@@@@@A!!A.2L3L3\?O5UCZ6">Y(ZF&*E0@MVI#
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14140
O0$A[\#L2<7O347Z6".X(:N#)%0@Z;F7-74@H+?H2</N34/Z6""U&I&#)%0@Z;F1-9,@H[WH2L#K3$/Z6""R$)"#(5\@YI*\ AHA[K2?1L#H24_Z6""R#9JY
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14141
(5\@@@@@@@P9!![*</;?H24_Z6""K#9JU&E\@OF%)XADAW;":/K?D2D_Z6!!:K"8>R%U\@Y:N$+*$JA7:8.+2>1D_Z6!!:F"8*O%UP@Y:N#(*8S@F>7-;:>/#?Z
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14142
6!!:C!!(*O#5P@YI"#(:HH@721-;^7/#?Z6!!:C 8ZK"5L@G59^OP4@HG>.,;N;/$CZ6!!]4 8ZF"5L@@@@@AP0>^Z".++N3-3?Z6!!]4]GVF!!8E0]7Y:^G.](:"&
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14143
+*:1-3''Z6!!]3]GU5!!H^K"8>R%I&Y(ZF$*J*1,S''Z6!!Q2\7Q5 8ND"8.K$)JY&Y&#)*Z.+#_Z6!!Q2\''M4]WVC 8.K"9JR&Y&#(:Z(*S''Z6 ,TE1\WFQ8^G!!8%
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14144
IR (J",/J3L3L0;Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z6-+Z') ; colorMapFromArray:#[0 0 0 5 5 1 6 5 2 9 8 2 13 11 3 16 14 3 18 15 5 26 23 7 33 29 7 32 29 9 38 33 9 49 36 3 51 43 10 53 45 11 50 44 12 51 50 20 57 51 17 65 57 16 71 63 18 73 63 17 113 85 7 113 86 9 113 86 10 114 87 10 114 88 11 114 88 12 114 89 12 114 89 13 114 90 13 114 90 14 114 91 15 100 83 17 103 89 23 98 88 27 99 89 29 114 91 16 115 92 16 115 92 17 115 94 17 115 94 18 115 94 19 115 95 19 115 95 20 115 96 20 115 96 21 115 97 21 115 97 22 115 98 23 116 98 23 116 98 24 116 99 24 116 99 26 116 100 27 113 99 28 115 101 30 116 101 28 116 101 29 116 102 29 116 103 30 117 103 31 121 103 26 123 104 25 126 106 26 117 104 32 117 105 32 117 105 33 117 105 34 117 106 34 117 106 35 117 107 35 117 107 36 117 108 36 117 108 37 117 109 37 117 109 38 117 109 39 117 111 40 118 112 41 118 113 43 118 113 44 118 114 45 118 115 46 118 116 47 134 108 20 134 109 21 134 110 22 134 111 23 134 112 25 134 113 26 134 114 27 135 114 29 135 115 30 135 116 30 135 117 31 138 116 26 134 118 34 136 118 32 137 120 33 140 123 36 140 124 38 147 127 33 153 128 28 153 128 29 153 130 30 152 130 33 152 131 34 154 134 36 154 135 37 159 142 43 156 141 46 158 144 47 188 166 47 194 157 29 243 185 18 243 186 20 244 188 22 244 190 24 244 191 26 197 162 33 205 168 33 205 170 37 201 171 43 214 177 37 214 179 41 197 172 48 194 173 53 205 181 53 215 186 50 211 186 53 236 190 34 245 193 28 245 194 30 245 194 31 222 197 58 245 196 32 245 196 33 245 197 35 245 198 35 246 198 35 246 199 36 246 199 37 246 200 37 246 200 38 246 201 39 246 201 40 246 202 41 246 203 41 246 203 42 246 204 43 247 204 43 247 205 44 247 205 45 247 206 46 247 207 47 237 206 55 229 204 61 236 206 57 240 203 48 247 208 48 247 208 49 247 209 49 247 209 50 245 210 52 248 210 51 248 211 52 248 212 53 248 212 54 248 213 54 248 213 55 246 213 58 248 214 56 248 214 57 248 215 57 249 216 58 249 216 59 249 217 59 249 217 60 249 218 61 249 218 62 249 219 62 249 219 63 241 219 70 249 220 64 249 221 65 250 222 66 250 222 67 250 223 68 250 224 69 250 225 70 250 225 71 250 226 71 250 226 72 250 227 73 251 227 73 250 227 75 251 228 74 251 228 75 251 229 75 250 229 77 251 230 76 251 230 77 251 231 79 251 232 79 252 233 81 252 234 81 252 235 83 252 235 84 252 236 85 252 237 85 252 238 87 252 238 88 253 240 89 253 240 90 253 241 91 253 241 92 253 243 94 253 244 96 254 246 98 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14145
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14146
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14147
mergeUsingBAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14148
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBAll32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14149
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14150
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14151
     self mergeUsingBAll32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14152
     ImageEditor openOnClass:self andSelector:#mergeUsingBAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14153
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14154
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14155
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14156
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14157
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14158
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14159
        constantNamed:'GenericToolbarIconLibrary mergeUsingBAll32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14160
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14161
8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8.H@*J&,-KR4.+2<0,GA1,''I3-CR4=[X6-+Z
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14162
7=?!!8PC"8 B%*J&)-KR4.+*<0,GF1,''N3-CS4=[X6-+Z7=?!!@NK"@JN#*J")-KR8/K2<0LKD1L''I3,?R4-#Z6-+Z6-<@8.H@(JN(*J&)+KR4-K2<0LCD1L''I
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14163
3,?R4-WU6-+]7PC"8 B[(JB%*J&)-KR4-K2<0LKB1L''K4MCR4-WX6-+Z@NK"@I. (JB(*J&)%WU7]7%9^:?D2\SK3,;R4-WX6-(@8.H@&9.\''9>%)Z!!VEP@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14164
@@@@BQ8/.\''I2]CR4-#X6@C"8 BR&92Z'':V%*EXZ@A(''JBDM@@@Q,L''I3-CR4-OX@NK"@IJR&)*\''I2%U!!(@Q:&5.''06B0@11\''N3,;R4= @8.H@#)JX&I2\
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14165
''JUPF AF-KR5.'',2@BGB2\SK3,;S4 C"8 BN$)JR&I*\''EHX@DZ)-J25,3P@HLKB1L''I3,?R@NK"@H.N$)JX&I2\TA @Q*&)+KQ$K @+/LKB0,''I2<<@8.H@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14166
"8.K$)JR&I!!PF@@7Y&]#O#@CAVV</\KB1L''D3 C"8 BH"8.K$)JX&D,U@@@@@@@@@BAX.+*</\KD1L/K@NK"@HRH"8.N#)JRR1(@D2X&JA(J@B&T.+2</LGA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14167
1\$@8.H@ ("H"H.N$)IHE AB''9>_($X-@A*4-K*</[7A2PC"8 A?_8RH"H:K$$ Z@C>_''9>_)T8I@EF1-K*</LCA@NK"@GM? 8"H"H.KRAX@PY*Z''9>%T1(@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14168
M[F4.+*<0L@@8.H@\(M?_8"H"8-HD0@?&)*_''9=OBP@>(+R4-K"<0@C"8 A/\''Q?_8"H"C0S@C&P&).XP"0@@6"(*[R4.KR<@NK"@FE/\7M? 8"DN1L@DBL#
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14169
H1@I@@@3*J")*[R4-K0@8.H@XF=/\7M? 8P:D@@@@@@@AP0*P9>_*J&)*[R4-@C"8 A"X&I/\''I?_75)ZV%,[&9>$I*\''I2''*J&)*[R4@NK"@E=_W6=/\''=?
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14170
 (ZF#8*K#9BZ&I*\''I>%)Z"),:$@8.H@WU= XV=/_7=?_8RF"H>O#9BX$I*Z''92%)ZV)-@C"8 A\WVA XVE"X''=?_8ZF"H&O$IBP&)*Z''I>%)Z")@NK"@E%\
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14171
WFA XFI"\''=2 8RD!!(>O#9BP&)*\''I2%)ZT@8.H@VU1\WFA X&I"\''JC 8RF!!("K#9BP&)*\''I>%)PC"8 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14172
@NK"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8.K"8 @a') ; colorMapFromArray:#[0 0 0 1 1 0 3 3 1 4 3 1 5 5 1 7 6 2 9 8 2 10 9 2 11 9 2 10 10 3 13 11 3 17 15 5 23 19 4 30 27 8 31 28 9 33 27 5 33 27 6 34 29 7 35 30 7 38 31 6 38 31 7 35 31 9 38 32 7 37 32 9 38 32 8 38 33 8 38 33 9 39 34 9 36 32 10 37 33 10 38 35 12 42 37 11 40 37 12 44 40 13 46 41 12 48 40 9 48 40 10 51 43 11 51 44 12 50 44 13 52 46 14 54 48 14 62 53 13 73 66 20 81 69 18 83 73 20 93 83 25 101 92 30 106 93 27 105 95 31 109 98 30 123 106 28 117 105 32 130 114 32 140 126 40 147 127 34 144 127 36 170 141 31 178 144 27 184 151 29 184 151 31 184 152 31 158 138 40 170 142 32 170 143 33 170 143 34 170 145 36 175 149 38 171 148 40 171 149 41 171 150 42 171 150 43 185 154 33 185 154 34 185 155 35 185 156 37 185 157 37 186 158 39 177 155 42 180 155 40 186 159 40 181 160 46 186 160 41 186 160 43 186 161 43 187 162 43 187 163 45 184 161 46 191 169 51 243 183 15 243 184 17 243 185 18 243 185 19 243 186 20 244 187 21 244 188 22 244 189 23 244 190 25 244 191 26 204 178 50 203 180 54 203 183 57 216 187 50 216 188 51 219 190 52 230 187 35 230 188 36 230 189 37 230 189 39 231 190 40 231 191 42 245 192 28 245 193 28 245 193 29 245 194 30 245 194 31 245 195 31 216 192 56 217 192 57 217 193 59 217 194 60 217 195 62 219 196 60 217 196 62 220 197 61 238 192 35 236 198 45 245 196 32 245 196 33 245 197 34 245 197 35 246 198 35 246 198 36 246 199 36 246 199 37 246 200 37 246 200 38 246 201 39 246 201 40 246 202 40 246 202 41 246 203 42 246 204 43 247 204 43 247 205 44 247 205 45 247 206 46 247 207 47 228 203 60 233 205 59 243 206 50 247 208 48 247 208 49 247 209 49 247 209 50 248 210 51 248 211 52 248 211 53 248 212 53 248 212 54 248 213 54 248 213 55 243 211 57 248 214 56 248 214 57 248 215 57 248 215 58 249 216 58 249 216 59 249 217 60 249 218 61 249 218 62 249 219 62 249 219 63 249 220 63 235 214 69 237 217 73 246 219 66 249 220 64 248 220 65 249 221 65 250 222 66 250 222 67 250 223 67 250 223 68 240 220 74 250 224 69 250 225 70 250 225 71 250 226 71 250 226 72 250 227 73 251 227 73 251 228 74 251 228 75 251 229 75 251 229 76 251 230 76 251 230 77 251 231 78 251 231 79 251 232 79 251 232 80 251 233 80 252 233 81 252 234 81 252 234 82 252 235 83 252 235 84 252 236 84 252 236 85 252 237 86 252 238 87 252 238 88 252 239 88 253 240 89 253 240 90 253 241 91 253 242 92 253 242 93 253 243 94 253 244 96 254 245 96 254 246 97 254 247 99 254 248 101 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14173
@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14174
??9????>_????''????9????>_????''????9????>_???? @@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14175
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14176
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14177
mergeUsingBase24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14178
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBase24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14179
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14180
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14181
     self mergeUsingBase24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14182
     ImageEditor openOnClass:self andSelector:#mergeUsingBase24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14183
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14184
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14185
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14186
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14187
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14188
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14189
        constantNamed:'GenericToolbarIconLibrary mergeUsingBase24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14190
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14191
EAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!LREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14192
EAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEALRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEALH@@@@@@@@EAPTEAPTEAPTEAPTEAPTEALG@@TI@ @@@APT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14193
EAPTEAPTEAPTEAPTEAHG@@0REAPT@@@TEAPTEAPTEAPTEAPTEAHG@@0REAPT@@@TEAP@@@@@@APTEAPTEAHG@@,QEAP@@APTEAP@EAPT@@@TEAPTEALG@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14194
@@@@@APTEAPTEAPTE@@@EAPTEALG@@XK@1P@@APTEAPT@@@@@@@@EAPTEALG@@0REAPT@@@TE@@@@APTE@@@EAPTEALG@@0REAPT@@@TE@@@EAPTE@@@EAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14195
EALG@@0REAPT@@@TE@@@EAPTE@@@EAPTEALG@@TI@ @@@@@TE@@@EAPT@@@@EAPTEALG@@@@@@@@@APTEAP@@@@@E@@@EAPTEALPC <NEAPTEAPTEAPTEAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14196
EAPTEAPTEALRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEALRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPTEAPTEAPTEAPTEAPTEAHRD!!HREAPTEAPT
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14197
EAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPTEAPT') ; colorMapFromArray:#[0 0 0 25 48 63 25 49 63 30 57 72 33 63 81 37 70 91 40 76 98 41 79 101 42 81 104 46 90 116 50 95 122 50 98 126 51 99 128 66 128 165 67 129 166 70 134 173 77 149 191 79 152 196 83 160 206 83 161 206 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_@@@_@@@_@@@_@@@_@@@_8@@_<@@_F@@_FO _LH0_<@X_,G8_F\X_FXX_FXX_>X8_<OX_@@@_@@@_@@@_@@@_@@@@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14198
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14199
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14200
mergeUsingBase32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14201
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBase32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14202
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14203
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14204
     self mergeUsingBase32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14205
     ImageEditor openOnClass:self andSelector:#mergeUsingBase32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14206
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14207
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14208
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14209
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14210
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14211
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14212
        constantNamed:'GenericToolbarIconLibrary mergeUsingBase32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14213
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14214
E1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1TUEQTUEQ\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\WE1\WE1\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14215
E1\WE1\WE1TVE!!XVE!!XWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXVE!!XVE!!\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14216
E1\WE1\WE1\WE1\WE1TVE!!XVE!!XWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXSDQDQDQ@WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!@H@@@@@@@@@@@W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14217
E1\WE1\WE1\WE1\WE1\WE1\WE1TVD@$@B@0C@@@@@@@WE1\WE1\WE1\WE1\WE1\WE1\WEQXPBP@NE!!\WE1\@@@@WE1\WE1\WE1\WE1\WE1\WE1\UE!!@I@@8V
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14218
E1\WE0@@@A\WE1\WE1\WE1\WE1\WE1\WE1TVD@$@C!!XWE1\W@@@@E1\WE1\@@@@@@@@WE1\WE1\WEQXPBP@NE!!\WE1\@@@@WE1\W@@@@@@@@@@@WE1\WE1\U
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14219
E!!@I@@4QDA\W@@@@E1\WE1\@E1\WE1\@@@@WE1\WE1TVD@$@@@@@@@@@@A\WE1\WE1\WE1\WE1\@@A\WE1\WEQXPBP@EC@L@@@@@@A\WE1\WE1\W@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14220
@A\WE1\VE!!@I@@8VE1\WE0@@@A\WE1\@@@@@@@@@@@@@E1\WE1TVD@$@C!!XWE1\WE0@@E1\WE0@@@A\WE1\@@@@WE1\WEQXPBP@NE!!\WE1\W@@@@E1\@@@@W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14221
E1\WE0@@@A\WE1\UE!!@I@@8VE1\WE1\@@@@WE0@@E1\WE1\W@@@@E1\WE1TVD@$@C!!XWE1\W@@@@E1\W@@@@E1\WE0@@@@@WE1\WEQXPBP@DB L@@@@@@@@W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14222
E1\W@@@@@@@@@@@@@A\WE1\UE <E@@@@@@@@@@@WE1\WE1\W@@@@@@@W@@@@E1\WE1TVEAHRD!!HWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXVE!!XVE!!\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14223
E1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1TVE!!XVE!!XWE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WEQXV
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14224
E!!XVE!!\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UE!!XVE!!XVE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\UEQTUEQTWE1\WE1\WE1\WE1\WE1\WE1\WE1\W
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14225
E1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE1\WE0@a') ; colorMapFromArray:#[0 0 0 8 16 20 9 17 21 9 17 22 11 21 27 11 21 28 11 22 29 12 23 29 12 22 30 13 24 32 16 31 40 17 32 42 17 33 42 43 83 107 50 96 123 62 119 153 62 120 154 72 139 179 77 149 192 80 154 198 81 157 202 84 159 205 83 160 206 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14226
@@@@@C<@@@A?@@@@_0@@@G<@@@A?@@@@_0@@@G>@@@A?>@@@_?0@@G<N@@A?C @@_08O0G<NG>A?''AA0_? @LG?<@?!!?C!!?8_0X\NG<GNC!!?A3@8_088^G?>
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14227
G?!!?>@>8_0@@@G<@@@A?@@@@_0@@@G<@@@A?@@@@O0@@@@@@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14228
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14229
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14230
mergeUsingBaseAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14231
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBaseAll24x24.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14232
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14233
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14234
     self mergeUsingBaseAll24x24 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14235
     ImageEditor openOnClass:self andSelector:#mergeUsingBaseAll24x24
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14236
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14237
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14238
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14239
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14240
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14241
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14242
        constantNamed:'GenericToolbarIconLibrary mergeUsingBaseAll24x24'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14243
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14244
5-[V5-[V5-[V5-[V5-[V5-[V5-[V5-[V5!!9ST5MVV%)ZV%9^W&I"X&Q$[V5-[2GV5$.=/\GC1\WI2L''I3L3N3<?R4-OU5V7V5$&=/\GA0<WE2\#I3L3N3,?O
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14245
4-KR5V7V5$&9.<F=0\GG1<_H2\''L3,;O3=KR46;V5$&9.[.=/\F>0<_G2\''I3L3N3=KQ4&7V5$YY@@@@@@8 _\OG1<#I2<3N3,?O4&/V5$YY@CQ)ZULW@8OC
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14246
1\#H2\/L3L?O36KV5$YY@G*9.[6N@COC0<_G2L''K3L;N36/V5$IU@G*4.K&(@CCC09@(EPLSI8/L3&KV5$IQ@F&Z&(0#@8F=/'',/^XI0GANU3&KV5#5M@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14247
@@@IQKGA/+7D1<WH. Y&3E7V5$IM@D6D!!GH#@6^=/[% F 8C@0@13FGV5#5M@G^/-KR4FAVV/R(BMHFG!!0(-2VGV5#1M@GV,+KR4I BJ.P *+,GC/0@-2E7V
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14248
5#1M@GV++KJ-E0ZM.@ //[?A^P@-1U+V5#)A@CI2]FT_@B:''.RHQ_:9?DPX)1%7V5#)A@@@@@@([SYR4-I %B X]^@8)1U+V5#&Y"H&R$96]+J>2-KV5&(>&
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14249
.9*U05+V5#* (ZF$)J&+*:>/-KR7.[&9.<F;0U+V5#Z\(JF!!(*R)*Z2/+[R4-[V9.[7A0T7V5#Z\(ZF!!(ZR)*Z&++J24-KR4.[&9/EOV5!!,6M3$:N#(;N3-B
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14250
P#5FP$YIRT%MT1;V5-[V5-[V5-[V5-[V5-[V5-[V5-[V5-[V') ; colorMapFromArray:#[0 0 0 1 1 2 2 3 3 2 4 5 3 4 5 3 5 6 3 6 7 4 6 8 5 7 9 6 10 11 6 10 12 7 11 13 7 12 14 8 13 15 9 14 16 9 15 19 9 16 19 10 16 20 11 17 20 11 18 21 11 19 23 13 20 23 15 23 29 14 24 29 17 28 33 18 31 39 20 32 38 17 32 41 23 35 41 22 36 44 23 37 45 23 41 50 25 40 48 29 43 48 30 49 59 30 50 60 30 50 61 31 51 61 32 53 65 36 56 65 36 57 67 39 63 76 41 64 76 41 65 77 42 66 77 42 66 78 40 67 83 43 69 82 43 70 84 46 72 84 41 72 89 46 73 88 47 77 93 49 78 94 39 74 97 40 75 97 40 77 97 41 77 98 43 78 98 44 79 98 44 79 99 45 80 99 46 80 100 46 81 100 47 81 100 45 83 104 46 83 104 47 84 105 50 82 99 48 82 101 49 83 101 50 83 102 50 84 102 51 84 102 52 85 103 52 86 103 53 86 103 49 84 104 48 84 105 49 85 106 50 86 106 51 87 107 53 86 104 54 87 104 55 87 105 51 88 107 55 88 105 53 88 107 52 88 108 53 88 108 56 89 105 57 89 105 57 90 106 58 90 106 60 91 107 61 92 107 57 92 110 61 92 108 62 94 108 63 94 109 63 95 109 55 94 116 63 96 113 59 98 118 60 102 125 62 102 124 63 102 124 64 95 109 65 96 109 65 96 111 66 97 111 67 98 111 65 101 119 67 107 127 63 106 129 60 105 130 60 105 131 61 107 133 62 107 133 63 108 133 66 107 128 68 108 128 67 111 136 70 112 133 67 112 136 71 114 136 71 114 137 70 114 138 71 115 139 72 116 138 76 118 139 74 119 141 69 117 144 69 118 145 80 127 151 82 129 153 74 134 169 76 136 171 83 137 166 92 141 165 86 142 173 85 143 174 89 143 173 89 146 177 95 150 179 95 152 182 82 147 184 84 149 185 91 155 190 102 157 183 96 158 191 98 159 191 94 157 192 87 159 201 95 160 194 95 160 195 86 162 207 91 161 200 92 161 201 88 164 208 89 165 209 91 166 210 92 167 211 94 168 211 95 170 212 97 160 194 101 165 199 99 166 203 104 169 204 97 171 213 98 172 214 99 173 215 101 174 215 103 175 214 108 175 211 102 175 216 109 176 211 109 177 213 102 176 216 104 177 217 105 178 218 107 178 218 107 179 219 108 180 219 110 181 220 111 183 221 115 179 212 113 183 220 113 184 222 114 185 223 115 186 223 117 185 220 116 185 221 117 187 224 119 189 224 118 188 225 118 189 225 120 190 226 121 191 226 123 192 227 124 193 228 126 194 229 126 195 229 127 196 230 129 197 230 130 198 231 131 199 232 133 200 233 134 202 234 136 203 234 137 204 235 139 205 236 140 206 237 142 208 238 0 0 0]; mask:((ImageMask new) width: 24; height: 24; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>_??>@@@@') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14251
!
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14252
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14253
mergeUsingBaseAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14254
"      Loaded from: /home/jv/work/icons/merge-tool-icons/mergeUsingBaseAll32x32.xpm"
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14255
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14256
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14257
     self mergeUsingBaseAll32x32 inspect
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14258
     ImageEditor openOnClass:self andSelector:#mergeUsingBaseAll32x32
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14259
     Icon flushCachedIcons
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14260
    "
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14261
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14262
    <resource: #image>
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14263
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14264
    ^Icon
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14265
        constantNamed:'GenericToolbarIconLibrary mergeUsingBaseAll32x32'
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14266
        ifAbsentPut:[(Depth8Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4497
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14267
VE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!X@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@VE @ST5OS4=OTEEPTUEQTUIRT%ITUEQTUUUU
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14268
U%YVU0AXV@AMST5OS4=OTEAQTUEQT%IRT%MTUEQUUUUUUUYV@E!!X@D1LST5OS4=OS5AQTUEQTUIST5MTUEQTUUUUUUX@VE @SD1MST5OS4=PS5APTUEQT%ER
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14269
T%MTUEQTUUUUU AXV@AJSD1MST5OS4=OTEAQTUEQTUMRT5MTUEUUUUUU@E!!X@D)BLSD1L#H2MT-PS5APTUERTUEST%MTUEQUUUT@VE @R#DI@@@@@@@BBQUA
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14270
S5APTUEQTUIRT%ITUEQUUPAXV@AJLP$@A0,KC@X@@@]GTEAQTUEQT%IRT%ISUEQU@E!!X@D$1BP@&SD1MSRHD@AUPTEAPTUERT%IRT%QTUEP@VE @RSDI@BYJ
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14271
R$1MSQT@B$=OTEEQS$@5MTART%QTU@AXV@AILP @I$)JSD=LG@@IS4=OPRXTB P@AQD/T%IT@E!!X@DX1B@@&R$)LR#$T@AAOS4<5B @GC 8F@@@''T%P@VE @
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14272
RC@I@A(0LSD*E0@AM$5OS3<^QUEPT$8[@@UQT AXV@AFL@$@@@@@@@@@A3IJS45OS49PTEANT$TQ@CMR@E!!X@C80B@@GB04MB@D@B3]MST5OSB<!!F1\VF@0@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14273
H%H@VE @Q"8H@BUIRD%JM1H@A45MSS<\A@@@@@@@@@@[T AXV@@>L@ @IT!!IRT)JLPD@JD1LH @AF3YKTD,U@A-Q@E!!X@C80B@@%RD!!IRT$1BP@WR$\T@A)O
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14274
S5EONAH@FUD@VE @O"4H@BUFRD!!IR"(A@A5JQAD@H$5MS$<)@ @YTPAXV@@>KP @HC,;N3\*D0@AM4)JE@@KP$5GJ <@@A%Q@E!!X@C8+B@@GB0,KBPD@@A5J
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14275
R$(,@0@EC0<CAAD@FU@@VE @OR4E@@@@@@@AAP<.RT%JR$(.DPTAAAMDDP@[T@AXV@@=O#4>O#9FQ$YFQ$%IRT%JR$)JSD1MST5OST=P@E!!X@C0=OS8>O#9F
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14276
Q$YFQ$!!IRT)JR$)LR$1MST5OS4<@VE @OS0=OS4>O#8>Q$YFQ$%IR$%JR$)JST1LST5MS0AXV@@:OS0=OS4>O#9FQ$YFRT!!IRT)JR$)MSD1MST5O@E!!X@C(<
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14277
OC4=OS4>O#8>Q$YFQ$!!IRT)JR$)LSD)MST4@VE @N#(<OS0=OS8>O#9FQ$YFRD!!IRT%IR$)JSD5MSPAXV@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14278
@E!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XVE!!XV@@a') ; colorMapFromArray:#[0 0 0 4 7 9 5 9 10 8 12 15 9 14 17 10 17 21 14 22 26 15 24 29 15 26 33 17 28 34 20 32 38 22 36 44 25 38 45 23 39 48 27 43 51 28 47 57 30 50 60 32 50 60 33 54 64 35 58 70 39 62 75 43 69 82 47 73 86 47 76 92 50 78 93 51 80 95 47 79 98 52 83 98 54 87 105 53 89 109 60 95 112 63 96 114 55 96 120 62 100 121 64 102 122 66 106 127 59 103 129 60 104 129 65 108 131 75 114 135 71 115 139 76 120 143 75 124 150 70 127 159 74 126 154 70 126 160 75 129 159 85 132 156 77 131 161 81 134 163 84 136 164 90 139 162 89 142 169 93 145 171 92 148 178 92 154 188 100 156 186 97 159 192 85 162 207 93 161 201 87 163 208 90 165 210 94 169 212 101 163 195 106 165 193 106 168 199 100 165 200 103 169 205 107 172 205 112 173 204 99 173 214 109 174 209 102 175 216 103 176 217 107 180 219 114 180 214 112 183 221 114 185 223 120 185 218 117 188 224 121 190 226 125 194 228 129 197 231 131 199 232 134 201 233 138 205 236 143 208 238 144 209 238 0 0 0]; mask:((ImageMask new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14279
@@@@@G????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''????9????>_????''??
bd0b3a526f28 class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4496
diff changeset
 14280
??9????>_????''????9????>_????''????9????>_???? @@@@@b') ; yourself); yourself]
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14281
! !
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 14282
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
 14283
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-FileBrowser'!
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 14284
5422
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
 14285
addTabEnteredIcon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
 14286
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
 14287
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
 14288
    ^ self addTabEntered14x14Icon
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
 14289
!
Claus Gittinger <cg@exept.de>
parents: 5385
diff changeset
 14290
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14291
changesBrowserIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14292
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14293
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14294
    ^ self changesBrowser24x24Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14295
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14296
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14297
copyFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14298
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14299
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14300
    ^ self copy20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14301
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14302
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14303
cutFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14304
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14305
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14306
    ^ self cut20x20Icon2
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14307
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14308
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14309
deleteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14310
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14311
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14312
    ^ self erase20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14313
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14314
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 14315
desktopIcon
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 14316
    <resource: #programImage>
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 14317
3865
489db7d50e1e desktop icon
Claus Gittinger <cg@exept.de>
parents: 3860
diff changeset
 14318
    ^ self desktop24x24Icon
3591
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 14319
!
21aba52264eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3567
diff changeset
 14320
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14321
diffIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14322
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14323
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14324
    ^ self diff16x16Icon2
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14325
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14326
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14327
directoryBookmarks20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14328
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14329
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14330
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14331
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14332
     the ImageEditor may not be able to read the specification."
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14333
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14334
     self directoryBookmarks20x20Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14335
     ImageEditor openOnClass:self andSelector:#directoryBookmarks20x20Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14336
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14337
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14338
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14339
        constantNamed:#'GenericToolbarIconLibrary class directoryBookmarks20x20Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14340
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14341
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14342
                width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14343
                height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14344
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14345
                bitsPerSample:(#[ 8 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14346
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14347
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14348
                            fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14349
@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 14350
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
 14351
@@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
 14352
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@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14353
@@A#X6M#X6M#X6M#X6M#X6M#X0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14354
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14355
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14356
                            width:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14357
                            height:20;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14358
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14359
                                        fromPackedString:'@@@@@@@@@A?@@A?@G=?@G=?@O??@_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0_??0');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14360
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14361
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14362
        ]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14363
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14364
3078
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
 14365
directoryBookmarksIcon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
 14366
    <resource: #programImage>
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
 14367
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
 14368
    ^ self directoryBookmarks20x20Icon
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
 14369
!
8b342d0254dc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3075
diff changeset
 14370
3063
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
 14371
directoryUpIcon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
 14372
    <resource: #programImage>
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
 14373
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
 14374
    ^ self upArrow20x20Icon
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
 14375
!
d3714964f0b8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3061
diff changeset
 14376
4180
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14377
documentsIcon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14378
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14379
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14380
    ^ self documents26x26Icon
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14381
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14382
    "Created: / 25-10-2010 / 09:21:23 / cg"
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14383
!
Claus Gittinger <cg@exept.de>
parents: 4176
diff changeset
 14384
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14385
dosShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14386
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14387
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14388
    ^ self dosWithoutText20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14389
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14390
3625
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
 14391
editApplicationIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
 14392
    <resource: #programImage>
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
 14393
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
 14394
    ^ self editIcon
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
 14395
!
eaa36d0b0042 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3620
diff changeset
 14396
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14397
editFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14398
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14399
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14400
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14401
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14402
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14403
editIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14404
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14405
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14406
    ^ self edit20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14407
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14408
3186
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
 14409
encodingLockIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
 14410
    <resource: #programImage>
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
 14411
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
 14412
    ^ self padLockRedMiniIcon
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
 14413
!
a5fe59f7ed1a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3185
diff changeset
 14414
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14415
fileContents14x17Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14416
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14417
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14418
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14419
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14420
     the ImageEditor may not be able to read the specification."
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14421
    "
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14422
     self fileContents14x17Icon inspect
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14423
     ImageEditor openOnClass:self andSelector:#fileContents14x17Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14424
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14425
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14426
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14427
        constantNamed:'GenericToolbarIconLibrary class fileContents14x17Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14428
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14429
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14430
                width:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14431
                height:17;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14432
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14433
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14434
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14435
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14436
                            fromPackedString:'
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14437
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAPTEAPTEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPTE
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14438
APTEAPTE@@@@@@T@@@@E@@TEAPT@@@@@APTEAPTEAPTEAP@@@@@E@@T@AP@@@@TE@@@@@@TEAPTEAPTEAPT@@@@@AP@@@@T@@@@EAP@@@@@EAPTEAPTEAPTE
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14439
@@@@@@T@AP@E@@@@APT@@@@@APTEAPTEAPTEAP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14440
                colorMapFromArray:#[ 0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14441
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14442
                            width:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14443
                            height:17;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14444
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14445
                                        fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14446
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14447
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14448
        ]
3620
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14449
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14450
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14451
fileContentsIcon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14452
    <resource: #programImage>
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14453
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14454
    ^ self fileContents14x17Icon
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14455
!
c17b1d973da1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
 14456
4151
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14457
fileImageContents14x17Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14458
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14459
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14460
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14461
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14462
     the ImageEditor may not be able to read the specification."
4151
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14463
    "
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14464
     self fileImageContents14x17Icon inspect
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14465
     ImageEditor openOnClass:self andSelector:#fileImageContents14x17Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14466
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14467
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14468
    ^ Icon 
4151
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14469
        constantNamed:'GenericToolbarIconLibrary class fileImageContents14x17Icon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14470
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14471
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14472
                width:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14473
                height:17;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14474
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14475
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14476
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14477
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14478
                            fromPackedString:'
4151
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14479
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B@ HB@ HB@ HB@@@@@@HA0\GA0\GA0 H@@@@@@\GA0\IA0$GA0 @@@@@A0\GA0\GA0\GB@@@@@@GA0\G
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14480
A0\GA0\H@@@@@@\GA0$GA0\GA0 @@@@@A0\GA0\GA0\GB@@@@@@HA0\GA0\IA0\H@@@@@@\GA0\GA0\GA0 @@@@@B@\GA0XGA0 HB@@@@@@HB@ HA  HB@ H
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14481
@@@@@@ HB@ FB@ HB@ @@@@@BP$IBPXIBP$IBP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14482
                colorMapFromArray:#[ 0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255 133 60 36 0 206 0 174 218 230 0 137 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14483
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14484
                            width:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14485
                            height:17;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14486
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14487
                                        fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14488
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14489
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14490
        ]
4151
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14491
!
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14492
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14493
fileImageContentsIcon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14494
    <resource: #programImage>
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14495
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14496
    ^ self fileImageContents14x17Icon
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14497
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14498
    "Created: / 01-06-2010 / 17:35:40 / cg"
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14499
!
aa4a17303f9a 2 more image-file icons
Claus Gittinger <cg@exept.de>
parents: 4131
diff changeset
 14500
3098
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
 14501
fileInIcon
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
 14502
    <resource: #programImage>
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
 14503
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
 14504
    ^ self fileIn20x20Icon3
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
 14505
!
7126f6c17c71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
 14506
3079
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
 14507
fitImageSizeToViewIcon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
 14508
    <resource: #programImage>
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
 14509
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
 14510
    ^ self fitImageSizeToView20x20Icon
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
 14511
!
4ad482bbd0aa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3078
diff changeset
 14512
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14513
hexToggle14x17Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14514
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14515
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14516
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14517
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14518
     the ImageEditor may not be able to read the specification."
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14519
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14520
     self hexToggle14x17Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14521
     ImageEditor openOnClass:self andSelector:#hexToggle14x17Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14522
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14523
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14524
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14525
        constantNamed:#'GenericToolbarIconLibrary class hexToggle14x17Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14526
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14527
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14528
                width:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14529
                height:17;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14530
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14531
                bitsPerSample:(#( 8 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14532
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14533
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14534
                            fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14535
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@TEAP@E@@TEAPT@@@@@APT@@@T@@@TEAP@@@@@EAPT@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14536
AP@EAPTE@@@@@@T@@@@E@@TEAPT@@@@@APTEAPTEAPTEAP@@@@@E@@@@AP@@@@TE@@@@@@T@AP@E@@T@APT@@@@@AP@@@@T@@@@EAP@@@@@E@@T@AP@E@@TE
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14537
@@@@@@T@AP@E@@@@APT@@@@@APTEAPTEAPTEAP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14538
                colorMapFromArray:#[ 0 0 0 105 133 190 129 129 129 194 194 194 255 0 0 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14539
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14540
                            width:14;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14541
                            height:17;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14542
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14543
                                        fromPackedString:'@@A?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_?!!?>G?8_? @@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14544
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14545
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14546
        ]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14547
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14548
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14549
hexToggleIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14550
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14551
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14552
    ^ self hexToggle14x17Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14553
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14554
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14555
historyBackIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14556
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14557
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14558
    ^ self leftArrow20x20Icon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14559
!
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14560
4334
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
 14561
historyBackInGlobalListIcon
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
 14562
    <resource: #programImage>
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
 14563
5201
0af892226d06 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5196
diff changeset
 14564
    ^ self left2Arrow20x20Icon
4334
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
 14565
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
 14566
    "Created: / 02-07-2011 / 18:41:50 / cg"
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
 14567
!
2e327ca247d4 added: #historyBackInGlobalListIcon
Claus Gittinger <cg@exept.de>
parents: 4326
diff changeset
 14568
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14569
historyForwardIcon
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14570
    <resource: #programImage>
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14571
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14572
    ^ self rightArrow20x20Icon
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
 14573
!
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
 14574
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14575
historyIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14576
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14577
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14578
    ^ self history20x20Icon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14579
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14580
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14581
homeIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14582
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14583
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14584
    ^ self home28x28Icon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14585
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14586
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14587
homeIcon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14588
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14589
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14590
    ^ self home22x22Icon2
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14591
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14592
3071
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
 14593
makeIcon
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
 14594
    <resource: #programImage>
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
 14595
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
 14596
    ^ self make22x22Icon2
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
 14597
!
226fe0ca9f5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3070
diff changeset
 14598
3064
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
 14599
newDirectoryIcon
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
 14600
    <resource: #programImage>
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
 14601
520c2463fb7e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3063
diff changeset
 14602
    ^ self newDirectory20x20Icon
3066
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
 14603
!
f4f61fa596de *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3064
diff changeset
 14604
4228
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14605
newFileIcon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14606
    <resource: #programImage>
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14607
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14608
    ^ self fileNew20x20Icon
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14609
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14610
    "Created: / 31-03-2011 / 10:57:39 / cg"
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14611
!
656fcf612475 newFileIcon
Claus Gittinger <cg@exept.de>
parents: 4205
diff changeset
 14612
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14613
pasteFileIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14614
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14615
3697
Claus Gittinger <cg@exept.de>
parents: 3696
diff changeset
 14616
    ^ self paste20x20Icon
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14617
!
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14618
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14619
printerIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14620
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14621
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14622
    ^ self printer22x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14623
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14624
4059
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 14625
reloadIcon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 14626
    <resource: #programImage>
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 14627
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 14628
    ^ self reload24x24Icon
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 14629
!
aafb045f8dfc moved reloadIcon up
Claus Gittinger <cg@exept.de>
parents: 4044
diff changeset
 14630
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14631
reloadTextFromFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14632
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14633
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14634
    ^ self reloadTextFromFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14635
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14636
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14637
saveAsToFile32x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14638
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14639
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14640
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14641
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14642
     the ImageEditor may not be able to read the specification."
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14643
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14644
     self saveAsToFile32x22Icon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14645
     ImageEditor openOnClass:self andSelector:#saveAsToFile32x22Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14646
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14647
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14648
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14649
        constantNamed:#'GenericToolbarIconLibrary class saveAsToFile32x22Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14650
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14651
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14652
                width:32;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14653
                height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14654
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14655
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14656
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14657
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14658
                            fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14659
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@L3L3L3@@@@@@@@@@@@@@@CQDMDP0@@@@@EUUAP@@@@@3L3L3L@@B@AAUUPD@@@@@MDP4QC@@@"@P
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14660
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
 14661
QC@@@@@Q@ETA@@@@@CL3L3L0@@@E@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14662
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14663
                colorMapFromArray:#[ 0 0 0 129 129 129 255 0 0 255 255 255 105 133 190 194 194 194 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14664
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14665
                            width:32;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14666
                            height:22;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14667
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14668
                                        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');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14669
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14670
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 14671
        ]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14672
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14673
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14674
saveImageToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14675
    <resource: #programImage>
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14676
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14677
    ^ self saveToFileAsIcon
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14678
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14679
3102
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14680
saveTextToFileIcon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14681
    <resource: #programImage>
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14682
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14683
    ^ self saveTextToFile28x22Icon
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14684
!
88bb5b0f410e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3099
diff changeset
 14685
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14686
searchFileIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14687
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14688
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14689
    ^ self search20x20Icon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14690
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14691
3069
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14692
searchIcon
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14693
    <resource: #programImage>
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14694
07ea9e3b43f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3068
diff changeset
 14695
    ^ self search20x20Icon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14696
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14697
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14698
shellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14699
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14700
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14701
    OperatingSystem isMSDOSlike ifTrue:[
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 14702
        ^ self dosShellTerminalIcon
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14703
    ].
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14704
    ^ self unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14705
!
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14706
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14707
stxHomeIcon
5824
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14708
    "This resource specification was automatically generated
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14709
     by the ImageEditor of ST/X."
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14710
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14711
    "Do not manually edit this!! If it is corrupted,
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14712
     the ImageEditor may not be able to read the specification."
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14713
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14714
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14715
     self stxHomeIcon inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14716
     ImageEditor openOnClass:self andSelector:#stxHomeIcon
5824
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14717
     Icon flushCachedIcons
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14718
    "
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14719
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14720
    <resource: #image>
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14721
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14722
    ^Icon
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14723
        constantNamed:'GenericToolbarIconLibrary class stxHomeIcon'
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14724
        ifAbsentPut:[(Depth4Image width:22 height:22) bitsPerSample:(#[8]); bits:(ByteArray fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14725
@@@@@@@@@@@@@@@@@@@@@@D@@@@@@@@@@@@@DQ@@@@@@@@@@@@DQDP@@@@@@@@@@DQ@QD@@@@@@@@@DQIBDQ@@@@@@@@DQICP!!DP@@@@@@DQICL4HQD@@@@@
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14726
DQICL3MBDQ@@@@DQIFX3L3P!!DP@@DQICY#L3L6HQD@D"ICM&L3M&M@@A@RH$L3Y#M&L4@@D@@@P3L6L6L3P@@@@@ACL3Y&L3M@@@@@@DL3L6L3L4@@@@@@P3
5824
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14727
L6X3L3P@@@@@ACL6L6L3M@@@@@@DM&L3M#L4@@@@@@Q&L3L3X3P@@@@@A&YDQDQ$Q@@@@@@@@@@@@@@@@@@b')
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14728
            colorMapFromArray:#[0 0 0 192 0 0 64 0 0 73 73 73 192 192 192 100 128 255 0 200 48]
7a34010e2ec8 #OTHER by mawalch
mawalch
parents: 5758
diff changeset
 14729
            mask:((ImageMask width:22 height:22) 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]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14730
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 14731
3070
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14732
unixShellTerminalIcon
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14733
    <resource: #programImage>
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14734
438887ca611a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3069
diff changeset
 14735
    ^ self shellWithoutText20x20Icon
3074
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14736
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14737
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14738
viewDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14739
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14740
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14741
    ^ self viewDetails16x16Icon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14742
!
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14743
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14744
viewNoDetailsIcon
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14745
    <resource: #programImage>
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14746
56b72f8b1492 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3071
diff changeset
 14747
    ^ self viewNoDetails16x16Icon
3061
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14748
! !
bd9a11924953 iconLibrary cleanup
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
 14749
5166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14750
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-FileBrowser-Filetypes'!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14751
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14752
fileTypeAddOnLinked
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14753
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14754
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14755
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14756
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14757
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14758
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14759
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14760
     self fileTypeAddOnLinked inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14761
     ImageEditor openOnClass:self andSelector:#fileTypeAddOnLinked
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14762
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14763
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14764
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14765
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14766
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14767
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14768
        constantNamed:'GenericToolbarIconLibrary fileTypeAddOnLinked'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14769
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@A<@@X@@  CC@G>@@0@B@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 0 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@?@C>@O<XA10G? O?@_8@G@@X@@@@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14770
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14771
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14772
fileTypeAddOnLocked
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14773
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14774
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14775
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14776
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14777
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14778
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14779
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14780
     self fileTypeAddOnLocked inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14781
     ImageEditor openOnClass:self andSelector:#fileTypeAddOnLocked
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14782
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14783
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14784
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14785
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14786
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14787
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14788
        constantNamed:'GenericToolbarIconLibrary fileTypeAddOnLocked'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14789
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@A A#@LFA LL@Y @<@A @O@A&@LLA XL@1 A @@@@@b') ; colorMapFromArray:#[0 0 0 255 0 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@A A#@LFA LL@Y @<@A @O@A&@LLA XL@1 A @@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14790
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14791
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14792
fileTypeApplicationBinaryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14793
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14794
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14795
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14796
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14797
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14798
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14799
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14800
     self fileTypeApplicationBinaryIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14801
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationBinaryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14802
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14803
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14804
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14805
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14806
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14807
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14808
        constantNamed:'GenericToolbarIconLibrary fileTypeApplicationBinaryIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14809
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4AQXET@T_A?<EEPUUAQTG?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14810
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14811
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14812
fileTypeApplicationJavaArchiveIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14813
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14814
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14815
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14816
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14817
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14818
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14819
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14820
     self fileTypeApplicationJavaArchiveIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14821
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationJavaArchiveIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14822
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14823
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14824
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14825
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14826
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14827
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14828
        constantNamed:'GenericToolbarIconLibrary fileTypeApplicationJavaArchiveIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14829
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A @F?([>1/8F?>[?9/? ?>C?8@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?>O?<??;?????????????G?<_?0@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14830
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14831
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14832
fileTypeApplicationLibraryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14833
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14834
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14835
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14836
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14837
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14838
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14839
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14840
     self fileTypeApplicationLibraryIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14841
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationLibraryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14842
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14843
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14844
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14845
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14846
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14847
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14848
        constantNamed:'GenericToolbarIconLibrary fileTypeApplicationLibraryIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14849
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4AQXET@T_A?<EEPUUAQTG?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14850
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14851
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14852
fileTypeApplicationPdfIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14853
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14854
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14855
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14856
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14857
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14858
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14859
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14860
     self fileTypeApplicationPdfIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14861
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationPdfIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14862
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14863
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14864
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14865
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14866
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14867
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14868
        constantNamed:'GenericToolbarIconLibrary fileTypeApplicationPdfIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14869
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XD\@U?AE$E60TQA5,GF0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14870
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14871
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14872
fileTypeApplicationPostscriptIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14873
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14874
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14875
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14876
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14877
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14878
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14879
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14880
     self fileTypeApplicationPostscriptIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14881
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationPostscriptIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14882
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14883
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14884
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14885
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14886
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14887
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14888
        constantNamed:'GenericToolbarIconLibrary fileTypeApplicationPostscriptIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14889
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XD\@U?AFLE;0W#A?,G00@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14890
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14891
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14892
fileTypeApplicationRtfIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14893
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14894
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14895
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14896
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14897
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14898
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14899
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14900
     self fileTypeApplicationRtfIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14901
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationRtfIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14902
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14903
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14904
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14905
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14906
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14907
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14908
        constantNamed:'GenericToolbarIconLibrary fileTypeApplicationRtfIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14909
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XD<@W?A[$E.0TQA;,G&0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14910
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14911
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14912
fileTypeApplicationSharedLibraryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14913
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14914
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14915
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14916
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14917
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14918
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14919
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14920
     self fileTypeApplicationSharedLibraryIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14921
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationSharedLibraryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14922
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14923
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14924
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14925
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14926
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14927
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14928
        constantNamed:'GenericToolbarIconLibrary fileTypeApplicationSharedLibraryIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14929
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4AQXET@T_A?<EEPUUAQTG?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:' @@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14930
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14931
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14932
fileTypeAudioIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14933
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14934
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14935
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14936
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14937
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14938
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14939
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14940
     self fileTypeAudioIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14941
     ImageEditor openOnClass:self andSelector:#fileTypeAudioIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14942
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14943
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14944
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14945
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14946
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14947
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14948
        constantNamed:'GenericToolbarIconLibrary fileTypeAudioIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14949
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A7XG\@]/AF<D;0^OA9<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14950
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14951
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14952
fileTypeBinaryFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14953
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14954
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14955
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14956
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14957
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14958
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14959
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14960
     self fileTypeBinaryFileIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14961
     ImageEditor openOnClass:self andSelector:#fileTypeBinaryFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14962
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14963
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14964
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14965
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14966
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14967
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14968
        constantNamed:'GenericToolbarIconLibrary fileTypeBinaryFileIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14969
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4AQXET@T_A?<EEPUUAQTG?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14970
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 14971
5172
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14972
fileTypeCPlusPlusSourceIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14973
    "This resource specification was automatically generated
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14974
     by the ImageEditor of ST/X."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14975
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14976
    "Do not manually edit this!! If it is corrupted,
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14977
     the ImageEditor may not be able to read the specification."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14978
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14979
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14980
     self fileTypeCPlusPlusSourceIcon inspect
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14981
     ImageEditor openOnClass:self andSelector:#fileTypeCPlusPlusSourceIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14982
     Icon flushCachedIcons
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14983
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14984
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14985
    <resource: #image>
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14986
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14987
    ^Icon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14988
        constantNamed:'GenericToolbarIconLibrary fileTypeCPlusPlusSourceIcon'
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14989
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@Y?A],E PW[A''<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14990
!
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14991
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14992
fileTypeCSourceIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14993
    "This resource specification was automatically generated
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14994
     by the ImageEditor of ST/X."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14995
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14996
    "Do not manually edit this!! If it is corrupted,
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14997
     the ImageEditor may not be able to read the specification."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14998
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 14999
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15000
     self fileTypeCSourceIcon inspect
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15001
     ImageEditor openOnClass:self andSelector:#fileTypeCSourceIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15002
     Icon flushCachedIcons
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15003
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15004
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15005
    <resource: #image>
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15006
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15007
    ^Icon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15008
        constantNamed:'GenericToolbarIconLibrary fileTypeCSourceIcon'
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15009
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@Y?A_<E?0W?A''<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15010
!
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15011
5166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15012
fileTypeCompressedArchiveIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15013
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15014
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15015
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15016
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15017
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15018
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15019
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15020
     self fileTypeCompressedArchiveIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15021
     ImageEditor openOnClass:self andSelector:#fileTypeCompressedArchiveIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15022
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15023
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15024
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15025
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15026
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15027
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15028
        constantNamed:'GenericToolbarIconLibrary fileTypeCompressedArchiveIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15029
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@J @@@B(@@@B* @@@J @@@@ @@UUQ@@E@@@@AQUUD@TUUQPEEUT@@AUUUP@@H@@@@J @@@J*@@@@*@@@@J @@@a') ; colorMapFromArray:#[0 0 0 255 255 255 0 0 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@\@A0@O @\C?0O? ??#??O?>?????1??@\@C8@G@@\@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15030
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15031
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15032
fileTypeDeviceFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15033
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15034
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15035
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15036
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15037
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15038
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15039
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15040
     self deviceFile inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15041
     ImageEditor openOnClass:self andSelector:#deviceFile
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15042
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15043
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15044
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15045
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15046
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15047
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 15048
        constantNamed:'GenericToolbarIconLibrary fileTypeDeviceFileIcon'
5166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15049
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_?!!?>D2(UZ!!T*EV(SM!!?>G?8@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?<??3??O?<??3??O?<??3??O?<??0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15050
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15051
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15052
fileTypeDigitalNotepadIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15053
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15054
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15055
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15056
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15057
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15058
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15059
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15060
     self fileTypeDigitalNotepadIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15061
     ImageEditor openOnClass:self andSelector:#fileTypeDigitalNotepadIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15062
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15063
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15064
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15065
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15066
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15067
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15068
        constantNamed:'GenericToolbarIconLibrary fileTypeDigitalNotepadIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15069
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4AAXE4@W\A] DDP_3AA\G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@??G?>;??O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15070
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15071
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15072
fileTypeDirectoryGrayIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15073
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15074
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15075
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15076
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15077
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15078
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15079
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15080
     self fileTypeDirectoryGrayIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15081
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryGrayIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15082
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15083
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15084
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15085
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15086
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15087
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15088
        constantNamed:'GenericToolbarIconLibrary fileTypeDirectoryGrayIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15089
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@<@@@@UU@**EUPJ*!!UTB*(@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@O@A>@O?<??3??O?<??3??O?<??0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15090
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15091
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15092
fileTypeDirectoryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15093
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15094
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15095
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15096
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15097
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15098
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15099
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15100
     self fileTypeDirectoryIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15101
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15102
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15103
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15104
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15105
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15106
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15107
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15108
        constantNamed:'GenericToolbarIconLibrary fileTypeDirectoryIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15109
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@<@@@@_?!!?>G?8_?!!?>G?8@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@O@A>@O?<??3??O?<??3??O?<??0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15110
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15111
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15112
fileTypeDirectoryLinkIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15113
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15114
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15115
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15116
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15117
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15118
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15119
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15120
     self fileTypeDirectoryLinkIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15121
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryLinkIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15122
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15123
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15124
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15125
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15126
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15127
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15128
        constantNamed:'GenericToolbarIconLibrary fileTypeDirectoryLinkIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15129
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@J(@@@B* @@DB(UPAUJ B@UR**(EUJ**AUT@B@UUUU@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 0 255 0 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@O @?@O?<??3??/???????/?<??0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15130
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15131
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15132
fileTypeDirectoryLockedIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15133
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15134
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15135
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15136
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15137
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15138
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15139
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15140
     self fileTypeDirectoryLockedIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15141
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryLockedIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15142
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15143
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15144
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15145
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15146
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15147
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15148
        constantNamed:'GenericToolbarIconLibrary fileTypeDirectoryLockedIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15149
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@B @@B J@@B @)PB @B B @EZV%PAU*%T@UV%U@EV*UPAV%)T@V%V%@B @J@B @@(B @@B @@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 0 255 0 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@L@L_A!!>LO?<??3??O?<??3??O?<??1 FL@L@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15150
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15151
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15152
fileTypeDirectoryNetworkIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15153
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15154
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15155
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15156
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15157
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15158
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15159
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15160
     self fileTypeDirectoryNetworkIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15161
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryNetworkIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15162
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15163
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15164
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15165
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15167
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15168
        constantNamed:'GenericToolbarIconLibrary fileTypeDirectoryNetworkIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15169
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@UP@@@@@@@@EUUUPAUUUT@UUUU@EUUUPAUJET@UR!!U@@@(@@@@J@@@@B @B*****@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 0 255 0 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@A8@O0A??''?>_?9??''?>_?9??''?>@<C???????<b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15170
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15171
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15172
fileTypeDirectoryOpenGrayIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15173
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15174
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15175
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15176
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15177
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15178
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15179
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15180
     self fileTypeDirectoryOpenGrayIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15181
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryOpenGrayIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15182
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15183
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15184
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15185
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15186
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15187
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15188
        constantNamed:'GenericToolbarIconLibrary fileTypeDirectoryOpenGrayIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15189
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@"@@@@"H@@@BH"H B@@@@@ QDQ@@QDQD@QDQD@QDQD@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 0 178 178 178]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@O@A>@O?<??3???????;??/?<??0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15190
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15191
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15192
fileTypeDirectoryOpenIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15193
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15194
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15195
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15196
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15197
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15198
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15199
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15200
     self fileTypeDirectoryOpenIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15201
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryOpenIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15202
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15203
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15204
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15205
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15206
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15207
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15208
        constantNamed:'GenericToolbarIconLibrary fileTypeDirectoryOpenIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15209
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@* @@@**@@@J*** B@@@@@!!UUUPAUUUT@UUUT@UUUU@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 0 179 179 179]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@O@A>@O?<??3???????;??/?<??0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15210
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15211
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15212
fileTypeExecutableFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15213
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15214
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15215
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15216
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15217
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15218
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15219
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15220
     self fileTypeExecutableFileIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15221
     ImageEditor openOnClass:self andSelector:#fileTypeExecutableFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15222
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15223
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15224
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15225
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15226
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15227
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15228
        constantNamed:'GenericToolbarIconLibrary fileTypeExecutableFileIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15229
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@J**(@B***@@@@@@@EUUT@AUUU@@UUUP@EUUT@AUUU@@UUUP@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 174 218 230]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?0??C?<O?0??C?<O?0??C?<O?0??@@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15230
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15231
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15232
fileTypeExpeccoLogfileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15233
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15234
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15235
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15236
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15237
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15238
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15239
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15240
     self fileTypeExpeccoLogfileIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15241
     ImageEditor openOnClass:self andSelector:#fileTypeExpeccoLogfileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15242
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15243
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15244
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15245
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15246
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15247
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15248
        constantNamed:'GenericToolbarIconLibrary fileTypeExpeccoLogfileIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15249
        ifAbsentPut:[(Depth8Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15250
F#@0LC@0LC@0LC@-F!!(ZF!!(0N3,;N3,;N3,;NR4ZF!!(ZLC,;K2</K2</K2<9KQ(ZF#@;JR0;N3,;N3,;N3\@F!!(0N2P&KC,/K2</K3(7@A(ZLC,1GRL,N3,;
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15251
N#T(H@@ZF#@;M!!$VH"08L2(RE00@F!!(0N3X''C!!D_IQTIC00,@A(ZLC,;K!!@KA0(KBA ,M0@ZF#@;K3PTA XFAAL,N3\@F!!(0N3,6G@TECQ,,N3,7@A(ZLC,/
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15252
N2,C@"D,N2<;M0@ZF#@;N3,2@Q8,N3,;N3\@F!!(0N2</N20,N2</K3,7@A(ZLC,;N3,;N3,;N3,;M0@ZF"4-KR4-KR4-KR4-KR4@F @@@@@@@@@@@@@@@@@@
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15253
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 129 0 0 174 0 0 182 0 0 206 0 0 209 0 0 222 0 0 223 0 0 225 0 0 226 0 0 228 0 0 234 0 1 191 1 1 194 1 1 235 1 1 242 1 2 209 2 2 216 2 5 199 5 6 156 6 14 179 14 14 195 14 17 226 17 18 232 18 19 167 19 26 194 26 27 202 27 28 148 28 32 147 32 35 191 35 39 137 39 45 167 45 45 202 45 47 141 47 49 178 49 50 181 50 54 175 54 55 163 55 55 177 55 56 184 56 60 183 60 71 185 71 71 187 71 75 147 75 84 146 84 85 85 85 110 178 110 112 204 224 134 134 134 136 206 136 141 185 141 155 207 155 157 198 157 161 216 161 187 223 187 204 204 204 229 242 229 231 231 214 241 250 241 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'_?A?>G?<_?9??''?>_?9??''?>_?9??''?>_?9??''?>_?8b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15254
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15255
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15256
fileTypeExpeccoSuiteIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15257
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15258
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15259
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15260
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15261
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15262
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15263
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15264
     self fileTypeExpeccoSuiteIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15265
     ImageEditor openOnClass:self andSelector:#fileTypeExpeccoSuiteIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15266
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15267
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15268
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15269
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15270
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15271
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15272
        constantNamed:'GenericToolbarIconLibrary fileTypeExpeccoSuiteIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15273
        ifAbsentPut:[(Depth8Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15274
@B8.K"8.K"8.K"8,@@@@@@@.NS$9NS$9NS$9M20@@@@@K#$9NS$9NS$9NS$7K@@@@B89JB,9NS$9NS$9NST@@@@.NRL%J3$9NS$9NS 5@@@@K#$/GBH+NS$9
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15275
NCL''G0@@@B89MA$VHR,6LR$RE00@@@@.NSP&C!!D^IATIC00+@@@@K#$9KQ@KA0(KBA +MP@@@B89NSHTA XFAAL+NST@@@@.NS$4F0TECQ(+NS$5@@@@K#$9
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15276
NR(C@"@+NS$9MP@@@B89NS$0@Q4+NS$9NST@@@@.NS$9NR,+NS$9NS$5@@@@K#$9NS$9NS$9NS$9MP@@@B0,KB0,KB0,KB0,KB0@@@@@@@@@@@@@@@@@@@@@
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15277
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 0 129 0 0 174 0 0 182 0 0 206 0 0 209 0 0 222 0 0 223 0 0 225 0 0 226 0 0 228 0 0 234 0 1 191 1 1 194 1 1 235 1 1 242 1 2 209 2 2 216 2 5 199 5 6 156 6 14 179 14 14 195 14 17 226 17 18 232 18 19 167 19 26 194 26 28 148 28 32 147 32 35 191 35 39 137 39 45 167 45 45 202 45 47 141 47 49 178 49 50 181 50 54 175 54 55 163 55 55 177 55 56 184 56 60 183 60 71 185 71 71 187 71 75 147 75 84 146 84 85 85 85 110 178 110 134 134 134 136 206 136 141 185 141 155 207 155 157 198 157 161 216 161 187 223 187 204 204 204 229 242 229 231 231 214 241 250 241 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'_?A?>G?<_?9??''?>_?9??''?>_?9??''?>_?9??''?>_?8b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15278
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15279
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15280
fileTypeFileArchiveIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15281
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15282
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15283
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15284
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15285
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15286
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15287
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15288
     self fileTypeFileArchiveIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15289
     ImageEditor openOnClass:self andSelector:#fileTypeFileArchiveIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15290
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15291
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15292
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15293
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15294
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15295
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15296
        constantNamed:'GenericToolbarIconLibrary fileTypeFileArchiveIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15297
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A @F?([>1/8F?>[?9/? ?>C?8@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?>O?<??;?????????????G?<_?0@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15298
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15299
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15300
fileTypeFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15301
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15302
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15303
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15304
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15305
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15306
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15307
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15308
     self fileTypeFileIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15309
     ImageEditor openOnClass:self andSelector:#fileTypeFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15310
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15311
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15312
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15313
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15314
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15315
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15316
        constantNamed:'GenericToolbarIconLibrary fileTypeFileIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15317
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@_?A?<G?0_?A?<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15318
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15319
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15320
fileTypeFileLinkIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15321
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15322
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15323
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15324
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15325
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15326
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15327
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15328
     self fileTypeFileLinkIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15329
     ImageEditor openOnClass:self andSelector:#fileTypeFileLinkIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15330
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15331
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15332
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15333
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15334
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15335
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15336
        constantNamed:'GenericToolbarIconLibrary fileTypeFileLinkIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15337
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@*H@AUR" @UUH@@@ER(@@(U@D@JEUUPB(UUT@* @D@J** @@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@G? _?C?>O?<_?1??G?>_?9??G?<_?0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15338
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15339
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15340
fileTypeFileLockedIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15341
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15342
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15343
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15344
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15345
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15346
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15347
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15348
     self fileTypeFileLockedIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15349
     ImageEditor openOnClass:self andSelector:#fileTypeFileLockedIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15350
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15351
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15352
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15353
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15354
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15355
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15356
        constantNamed:'GenericToolbarIconLibrary fileTypeFileLockedIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15357
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@@@B @@B JUTR A)UF @V%R @EZV%@AU*%P@UV%T@EV*U@AV%)P@V%V$@B @J@B @@(B @@B @@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 255 0 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?L??#?<O?8??#?>O?8??#?>O?8??!! FL@L@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15358
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15359
5172
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15360
fileTypeHeaderFileIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15361
    "This resource specification was automatically generated
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15362
     by the ImageEditor of ST/X."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15363
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15364
    "Do not manually edit this!! If it is corrupted,
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15365
     the ImageEditor may not be able to read the specification."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15366
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15367
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15368
     self fileTypeHeaderFileIcon inspect
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15369
     ImageEditor openOnClass:self andSelector:#fileTypeHeaderFileIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15370
     Icon flushCachedIcons
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15371
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15372
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15373
    <resource: #image>
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15374
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15375
    ^Icon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15376
        constantNamed:'GenericToolbarIconLibrary fileTypeHeaderFileIcon'
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15377
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@V?A[<DO0V?A[<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15378
!
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15379
5181
285c2f461b30 homeIcon
Claus Gittinger <cg@exept.de>
parents: 5178
diff changeset
 15380
fileTypeHomeDirectoryIcon
6014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 15381
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 15382
5178
b096b645fa43 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5172
diff changeset
 15383
    ^ self fileTypeDirectoryIcon
b096b645fa43 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5172
diff changeset
 15384
!
b096b645fa43 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5172
diff changeset
 15385
5166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15386
fileTypeImageFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15387
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15388
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15389
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15390
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15391
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15392
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15393
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15394
     self fileTypeImageFileIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15395
     ImageEditor openOnClass:self andSelector:#fileTypeImageFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15396
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15397
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15398
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15399
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15400
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15401
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15402
        constantNamed:'GenericToolbarIconLibrary fileTypeImageFileIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15403
        ifAbsentPut:[(Depth4Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15404
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DQDQDQDQ@@@QDQADQQD@@ADQADQDTP@@DQDPQDTQ@@@QDQDIDQD@@ADQDP$QDP@@CMCL2L4Q@@@L3
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15405
L3L3L3@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 205 0 133 62 38 0 139 0 173 216 230]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@??3??O?<??3??O?<??3??O?<??0@@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15406
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15407
5229
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15408
fileTypeJavaScriptSourceIcon
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15409
    "This resource specification was automatically generated
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15410
     by the ImageEditor of ST/X."
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15411
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15412
    "Do not manually edit this!! If it is corrupted,
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15413
     the ImageEditor may not be able to read the specification."
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15414
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15415
    "
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15416
     self fileTypeJavaScriptSourceIcon inspect
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15417
     ImageEditor openOnClass:self andSelector:#fileTypeJavaScriptSourceIcon
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15418
     Icon flushCachedIcons
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15419
    "
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15420
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15421
    <resource: #image>
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15422
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15423
    ^Icon
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15424
        constantNamed:'GenericToolbarIconLibrary fileTypeJavaScriptSourceIcon'
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15425
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@Q''A5<G[0U7A$<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15426
!
85c11a72d1a7 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5219
diff changeset
 15427
5166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15428
fileTypeJavaSourceIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15429
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15430
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15431
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15432
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15433
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15434
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15435
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15436
     self fileTypeJavaSourceIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15437
     ImageEditor openOnClass:self andSelector:#fileTypeJavaSourceIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15438
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15439
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15440
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15441
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15442
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15443
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15444
        constantNamed:'GenericToolbarIconLibrary fileTypeJavaSourceIcon'
5172
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15445
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@Q?A7<G_0U?A''<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15446
!
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15447
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15448
fileTypeLispSourceIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15449
    "This resource specification was automatically generated
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15450
     by the ImageEditor of ST/X."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15451
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15452
    "Do not manually edit this!! If it is corrupted,
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15453
     the ImageEditor may not be able to read the specification."
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15454
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15455
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15456
     self fileTypeLispSourceIcon inspect
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15457
     ImageEditor openOnClass:self andSelector:#fileTypeLispSourceIcon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15458
     Icon flushCachedIcons
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15459
    "
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15460
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15461
    <resource: #image>
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15462
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15463
    ^Icon
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15464
        constantNamed:'GenericToolbarIconLibrary fileTypeLispSourceIcon'
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15465
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@[?A7<G_0Z?A-<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
5166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15466
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15467
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15468
fileTypeSmalltalkSourceIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15469
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15470
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15471
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15472
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15473
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15474
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15475
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15476
     self fileTypeSmalltalkSourceIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15477
     ImageEditor openOnClass:self andSelector:#fileTypeSmalltalkSourceIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15478
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15479
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15480
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15481
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15482
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15483
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15484
        constantNamed:'GenericToolbarIconLibrary fileTypeSmalltalkSourceIcon'
5172
c5236f88fe9c class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5166
diff changeset
 15485
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4A?XG<@XOA]<F70]_AM<G?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
5166
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15486
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15487
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15488
fileTypeSpecialFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15489
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15490
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15491
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15492
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15493
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15494
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15495
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15496
     self fileTypeSpecialFileIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15497
     ImageEditor openOnClass:self andSelector:#fileTypeSpecialFileIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15498
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15499
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15500
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15501
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15502
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15503
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15504
        constantNamed:'GenericToolbarIconLibrary fileTypeSpecialFileIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15505
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@G?@<^C18OG <^C18O? <^C18G?@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@C?8_?1??G?<_?1??G?<_?1??G?<_?0?>@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15506
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15507
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15508
fileTypeTextHtmlIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15509
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15510
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15511
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15512
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15513
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15514
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15515
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15516
     self fileTypeTextHtmlIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15517
     ImageEditor openOnClass:self andSelector:#fileTypeTextHtmlIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15518
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15519
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15520
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15521
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15522
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15523
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15524
        constantNamed:'GenericToolbarIconLibrary fileTypeTextHtmlIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15525
        ifAbsentPut:[(Depth4Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15526
@@@@@@@@@@@@@@@@@@@@@@H"H"HB@@@@@"H"H H @@@BH"H"@@@@@@H#L3LBH @@@%TVL6X"@@@FY!!X1E H@@@Y&T3DV@@@@L1DSM!!M @@@CDVL6XS@@@@LQ
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15527
L1Y!!L@@@@3D3DVD0@@@@L3L3E@@@@@@@L3L@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 160 160 0 255 255 255 10 110 230 0 128 128 128 128 128 128 128 0]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@C?0O? ??C?>O?8??#?>O?(??#?>O?8_?A?8C?@C0@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15528
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15529
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15530
fileTypeTextIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15531
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15532
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15533
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15534
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15535
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15536
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15537
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15538
     self fileTypeTextIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15539
     ImageEditor openOnClass:self andSelector:#fileTypeTextIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15540
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15541
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15542
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15543
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15544
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15545
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15546
        constantNamed:'GenericToolbarIconLibrary fileTypeTextIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15547
        ifAbsentPut:[(Depth1Image new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@@@@_4AAXG<@P_A?<D@P_?A@DG?0@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'@@@@@O?@?>C?<O?8??#?>O?8??#?>O?8?? @@@@@@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15548
!
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15549
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15550
fileTypeVideoIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15551
    "This resource specification was automatically generated
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15552
     by the ImageEditor of ST/X."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15553
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15554
    "Do not manually edit this!! If it is corrupted,
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15555
     the ImageEditor may not be able to read the specification."
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15556
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15557
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15558
     self fileTypeVideoIcon inspect
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15559
     ImageEditor openOnClass:self andSelector:#fileTypeVideoIcon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15560
     Icon flushCachedIcons
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15561
    "
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15562
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15563
    <resource: #image>
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15564
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15565
    ^Icon
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15566
        constantNamed:'GenericToolbarIconLibrary fileTypeVideoIcon'
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15567
        ifAbsentPut:[(Depth2Image new) width:16; height:16; bits:(ByteArray fromPackedString:'B***(@X@@Y@JJ*& A"*)$@(**Z@FJ*&PB%UU(@Z**)@J@@F A"*)$@(**Z@FJ*&PB"*)(@YUUY@J*** @@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255 125 125 125]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'_?9??''?>_?9??''?>_?9??''?>_?9??''?>_?9??''?>@@@b') ; yourself); yourself]
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15568
! !
ca1f7975947d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5150
diff changeset
 15569
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15570
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-ImageEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15571
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15572
loadImageFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15573
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15574
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15575
    ^ self loadFromMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15576
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15577
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15578
newImageIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15579
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15580
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15581
    ^ self newImage24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15582
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15583
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 15584
saveImageAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 15585
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 15586
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 15587
    ^ self saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 15588
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 15589
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15590
saveImageAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15591
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15592
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15593
    ^ self saveAsMethodIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15594
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15595
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15596
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-Launcher'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15597
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15598
displayScreenIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15599
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15600
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15601
    ^ self displayScreen22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15602
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15603
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15604
editorIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15605
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15606
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15607
    ^ self editor22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15608
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15609
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15610
fontIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15611
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15612
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15613
    ^ self font22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15614
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15615
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15616
garbageCollectIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15617
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15618
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15619
    ^ self garbageCollect24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15620
    "/ ^ self garbageCollect28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15621
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15622
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15623
helpIcon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15624
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15625
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15626
    ^ self help28x28Icon1
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15627
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15628
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15629
helpIcon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15630
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15631
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15632
    ^ self help28x28Icon2
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15633
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15634
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15635
helpIcon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15636
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15637
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15638
    ^ self help28x28Icon3
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15639
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15640
4230
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
 15641
imageEditorIcon
4240
4f515003b90a changed:15 methods
Stefan Vogel <sv@exept.de>
parents: 4235
diff changeset
 15642
    <resource:#programImage>
4230
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
 15643
    ^ self imageEditor24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
 15644
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
 15645
    "Created: / 31-03-2011 / 11:07:30 / cg"
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
 15646
!
Claus Gittinger <cg@exept.de>
parents: 4228
diff changeset
 15647
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15648
keyboardMappingIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15649
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15650
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15651
    ^ self keyboardMapping22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15652
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15653
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15654
languagesIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15655
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15656
3719
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
 15657
    "/ ^ self languages20x12Icon
7617f6ba345a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3718
diff changeset
 15658
    ^ self languages22x22Icon
3125
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15659
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15660
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15661
memoryIcon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15662
    <resource: #programImage>
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15663
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15664
    ^ self memory22x22Icon
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15665
!
4c9b149a5465 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3111
diff changeset
 15666
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
 15667
projectBuilderIcon
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
 15668
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
 15669
4364
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 15670
"/    ^ self packageOpen24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 15671
    ^ self packageIn24x24Icon
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 15672
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
 15673
    "Modified: / 01-02-2012 / 15:09:43 / cg"
3992
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
 15674
!
Claus Gittinger <cg@exept.de>
parents: 3983
diff changeset
 15675
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15676
saveImageIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15677
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15678
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15679
    ^ self saveImage24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15680
    "/ ^ self saveImage28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15681
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15682
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15683
startChangesBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15684
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15685
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15686
    ^ self changesBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15687
    "/ ^ self changesBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15688
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15689
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15690
startFileBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15691
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15692
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15693
    ^ self fileBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15694
    "/ ^ self fileBrowser28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15695
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15696
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15697
startImageEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15698
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15699
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15700
    ^ self imageEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15701
    "/ ^ self imageEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15702
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15703
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15704
startMenuEditorIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15705
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15706
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15707
    ^ self menuEditor24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15708
    "/ ^ self menuEditor28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15709
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15710
3092
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
 15711
startNewFileBrowserIcon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
 15712
    <resource: #programImage>
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
 15713
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
 15714
    ^ self newFileBrowser24x24Icon
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
 15715
!
1c6881d535b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3089
diff changeset
 15716
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15717
startNewSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15718
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15719
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15720
    ^ self newSystemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15721
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15722
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15723
startSystemBrowserIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15724
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15725
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15726
    ^ self systemBrowser24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15727
"/    ^ SystemBrowser defaultIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15728
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15729
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15730
startSystemBrowserOnHistoryClassIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15731
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15732
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15733
    ^ self systemBrowserClassHistory28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15734
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15735
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15736
startUIPainterIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15737
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15738
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15739
    ^ self uiPainter24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15740
    "/ ^ self uiPainter28x28Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15741
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15742
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15743
startWorkspaceIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15744
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15745
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15746
    ^ self workspace24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15747
    "/ ^ self workspace28x28Icon
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
 15748
!
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
 15749
3171
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
 15750
stxHelpIcon
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
 15751
    <resource: #programImage>
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
 15752
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
 15753
    ^ self helpIcon2
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
 15754
!
f2390c6c64f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3159
diff changeset
 15755
3111
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
 15756
stxSettings24x24Icon
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
 15757
    <resource: #programImage>
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
 15758
06e4eeb74dcc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3110
diff changeset
 15759
    ^ self stxSettings24x24Icon1
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15760
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15761
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15762
stxSettings24x24Icon1
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15763
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15764
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15765
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15766
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15767
     the ImageEditor may not be able to read the specification."
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15768
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15769
     self stxSettings24x24Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15770
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon1
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15771
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15772
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15773
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15774
        constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon1'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15775
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15776
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15777
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15778
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15779
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15780
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15781
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15782
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15783
                            fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15784
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@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
 15785
"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
 15786
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@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15787
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15788
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15789
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15790
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15791
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15792
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15793
                                        fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15794
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15795
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15796
        ]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15797
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15798
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15799
stxSettings24x24Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15800
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15801
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15802
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15803
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15804
     the ImageEditor may not be able to read the specification."
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15805
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15806
     self stxSettings24x24Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15807
     ImageEditor openOnClass:self andSelector:#stxSettings24x24Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15808
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15809
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15810
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15811
        constantNamed:#'GenericToolbarIconLibrary class stxSettings24x24Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15812
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15813
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15814
                width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15815
                height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15816
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15817
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15818
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15819
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15820
                            fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15821
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@EAP@@@@@@@@@@@@@EAPB;.;.;.;.;,FA%APB;.;.;.;.;,FA @@B;.1F;.;.;,FA @@B;.1F;.;
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15822
,[,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
 15823
B;,Q.;,[.;,FA T@B;D[.;,[.;,FA T@B1F;.;.1.;,F@I%PB;.;.;.;.;,F@IUPB;.;.;.;.;,F@IUP@@@@@@@@@@@@@IUP@@@@@@@@@@@@@I%P@@@@@@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15824
@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15825
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15826
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15827
                            width:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15828
                            height:24;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15829
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15830
                                        fromPackedString:'@@@@@@@@@@@N@@@N_?<N_?<D_?<D_?<D_?<D_?<D_?<D_?<N_?<__?<__?<N_?<N_?<N_?<__?<__?<_@@@_@@@_@@@N@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15831
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15832
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15833
        ]
3567
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
 15834
!
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
 15835
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
 15836
systemBrowserIcon
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
 15837
    <resource: #programImage>
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
 15838
d0fd4329b5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3558
diff changeset
 15839
    ^ self systemBrowser24x24Icon
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15840
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 15841
3088
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15842
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-MenuEditor'!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15843
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15844
copyMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15845
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15846
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15847
    ^ self copyMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15848
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15849
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15850
cutMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15851
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15852
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15853
    ^ self cutMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15854
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15855
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15856
newMenuIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15857
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15858
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15859
    ^ self newMenu24x24Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15860
!
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15861
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15862
pasteMenuItemIcon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15863
    <resource: #programImage>
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15864
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15865
    ^ self pasteMenuItem22x22Icon
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15866
! !
e3bbe099c895 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
 15867
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15868
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser'!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15869
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15870
addBreakPointIcon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15871
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15872
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15873
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15874
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15875
     the ImageEditor may not be able to read the specification."
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15876
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15877
     self addBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15878
     ImageEditor openOnClass:self andSelector:#addBreakPointIcon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15879
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15880
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15881
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15882
        constantNamed:#'GenericToolbarIconLibrary class addBreakPointIcon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15883
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15884
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15885
                width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15886
                height:21;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15887
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15888
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15889
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15890
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15891
                            fromPackedString:'****/??>/:+>/%V>.TA..P@..P@..@@./ B>/:+>/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>****');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15892
                colorMapFromArray:#[ 255 0 0 63 63 63 0 0 0 127 127 127 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15893
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15894
                            width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15895
                            height:21;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15896
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15897
                                        fromPackedString:'??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0??C?<O?0');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15898
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15899
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15900
        ]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15901
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15902
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15903
addBuffer13x11Icon1
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15904
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15905
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15906
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15907
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15908
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15909
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15910
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15911
     self addBuffer13x11Icon1 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15912
     ImageEditor openOnClass:self andSelector:#addBuffer13x11Icon1
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15913
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15914
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15915
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15916
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15917
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15918
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15919
        constantNamed:'GenericToolbarIconLibrary addBuffer13x11Icon1'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 15920
        ifAbsentPut:[(Depth4Image width:13 height:11) 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]; yourself]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15921
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15922
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15923
addBuffer16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15924
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15925
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15926
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15927
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15928
     the ImageEditor may not be able to read the specification."
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15929
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15930
     self addBuffer16x16Icon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15931
     ImageEditor openOnClass:self andSelector:#addBuffer16x16Icon2
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15932
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15933
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15934
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15935
        constantNamed:#'GenericToolbarIconLibrary class addBuffer16x16Icon2'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15936
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15937
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15938
                width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15939
                height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15940
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15941
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15942
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15943
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15944
                            fromPackedString:'
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15945
@@@@@@@@@@@ADQDPDQDQ@@D3L>@SL38@@SL38AL3O @@@@@@@@@@@@L3L3L3L3L@@3L3L3L3L0@CL3L6L3X3A L3L3M#M#M @3L3L3X6M @@@@@@@FY @@@@
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15946
@@Y&Y&Y&@@@@@@Y&Y&@@@@@@A Y&@@@@@@A Y&A @@@@A @F@@Xb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15947
                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 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15948
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15949
                            width:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15950
                            height:16;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15951
                            bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15952
                                        fromPackedString:'??;??/?>??;??/?>??;????>??;?? G?@C @U@BR@QDb');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15953
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15954
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 15955
        ]
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15956
!
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 15957
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15958
breakpointBlueDisabled
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15959
    <resource: #programImage>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15960
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15961
    ^ self breakpointBlueDisabled9x9
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15962
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15963
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15964
breakpointBlueEnabled
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15965
    <resource: #programImage>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15966
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15967
    ^ self breakpointBlueEnabled9x9
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15968
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15969
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15970
breakpointDisabled
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15971
    <resource: #programImage>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15972
    ^ self breakpointDisabled9x9
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15973
!
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15974
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15975
breakpointDisabledWithWarning
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15976
    <resource: #programImage>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15977
    ^ self breakpointDisabledWithWarning9x9
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 15978
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 15979
    "Created: / 16-02-2015 / 06:20:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 15980
!
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 15981
5670
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15982
breakpointRedDisabled
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15983
    <resource: #programImage>
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15984
    ^ self breakpointDisabled
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15985
!
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15986
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15987
breakpointRedDisabledWithWarning
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15988
    <resource: #programImage>
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15989
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15990
    ^ self breakpointDisabledWithWarning
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15991
!
802bd5e3f30d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5668
diff changeset
 15992
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15993
breakpointRedEnabled
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15994
    <resource: #programImage>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 15995
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 15996
    ^ self breakpointRedEnabled9x9
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 15997
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 15998
    "Modified: / 16-02-2015 / 06:29:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 15999
!
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16000
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16001
breakpointRedEnabledWithWarning
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 16002
    <resource: #programImage>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 16003
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16004
    ^ self breakpointRedEnabledWithWarning9x9
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16005
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16006
    "Created: / 16-02-2015 / 06:29:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 16007
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 16008
5704
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16009
formatCodeAndAcceptIcon
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16010
    <resource: #programImage>
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16011
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16012
    ^ self formatCodeAndAccept16x16Icon
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16013
!
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16014
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16015
formatCodeIcon
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16016
    <resource: #programImage>
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16017
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16018
    ^ self formatCode16x16Icon
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16019
!
6b3745e1e519 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 5703
diff changeset
 16020
3185
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16021
padLockBlackMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16022
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16023
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16024
    ^ self padLockBlack12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16025
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16026
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16027
padLockBlueMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16028
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16029
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16030
    ^ self padLockBlue12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16031
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16032
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16033
padLockGrayMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16034
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16035
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16036
    ^ self padLockGray12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16037
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16038
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16039
padLockGreenMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16040
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16041
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16042
    ^ self padLockGreen12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16043
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16044
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16045
padLockRedMiniIcon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16046
    <resource: #programImage>
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16047
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16048
    ^ self padLockRed12x12Icon
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16049
!
5f3ec5d83f25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3183
diff changeset
 16050
5278
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16051
removeBreakPointBlueIcon2
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16052
    "This resource specification was automatically generated
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16053
     by the ImageEditor of ST/X."
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16054
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16055
    "Do not manually edit this!! If it is corrupted,
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16056
     the ImageEditor may not be able to read the specification."
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16057
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16058
    "
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16059
     self removeBreakPointBlueIcon2 inspect
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16060
     ImageEditor openOnClass:self andSelector:#removeBreakPointBlueIcon2
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16061
     Icon flushCachedIcons
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16062
    "
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16063
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16064
    <resource: #image>
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16065
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16066
    ^Icon
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16067
        constantNamed:'GenericToolbarIconLibrary removeBreakPointBlueIcon2'
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16068
        ifAbsentPut:[(Depth2Image new) width:12; height:21; bits:(ByteArray fromPackedString:'****/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>/:+>/%V>.PA..@@..@@..@@./ B>/:+>/??>****') ; colorMapFromArray:#[158 158 255 63 63 63 0 0 0 127 127 127]; mask:((ImageMask new) width:12; height:21; 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]
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16069
!
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16070
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 16071
removeBreakPointIcon2
5278
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16072
    "This resource specification was automatically generated
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16073
     by the ImageEditor of ST/X."
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16074
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16075
    "Do not manually edit this!! If it is corrupted,
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16076
     the ImageEditor may not be able to read the specification."
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16077
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 16078
    "
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 16079
     self removeBreakPointIcon2 inspect
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 16080
     ImageEditor openOnClass:self andSelector:#removeBreakPointIcon2
5278
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16081
     Icon flushCachedIcons
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16082
    "
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16083
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16084
    <resource: #image>
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16085
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16086
    ^Icon
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16087
        constantNamed:'GenericToolbarIconLibrary removeBreakPointIcon2'
f53d5b9382a6 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5259
diff changeset
 16088
        ifAbsentPut:[(Depth2Image new) width:12; height:21; bits:(ByteArray fromPackedString:'****/??>/:+>/**>.)V..%U..%U..UU./%V>/:+>/??>/:+>/%V>.PA..@@..@@..@@./ B>/:+>/??>****') ; colorMapFromArray:#[0 255 0 63 63 63 0 0 0 127 127 127]; mask:((ImageMask new) width:12; height:21; 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]
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 16089
!
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 16090
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 16091
tracepointBlue
5668
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 16092
    <resource: #programImage>
f1dbe76ade19 #UI_ENHANCEMENT by stefan
Stefan Vogel <sv@exept.de>
parents: 5620
diff changeset
 16093
4596
94f2104aa920 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4582
diff changeset
 16094
    ^ self tracepointBlue9x9
3139
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 16095
! !
1c41274f9a74 category changes
Claus Gittinger <cg@exept.de>
parents: 3125
diff changeset
 16096
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16097
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser-classIcons'!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16098
4474
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
 16099
abstractClassIcon
6014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 16100
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 16101
5507
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16102
    ^ self abstractClassIcon2
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16103
!
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16104
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16105
abstractClassIcon1
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16106
    "This resource specification was automatically generated
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16107
     by the ImageEditor of ST/X."
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16108
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16109
    "Do not manually edit this!! If it is corrupted,
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16110
     the ImageEditor may not be able to read the specification."
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16111
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16112
    "
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16113
     self abstractClassIcon1 inspect
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16114
     ImageEditor openOnClass:self andSelector:#abstractClassIcon1
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16115
     Icon flushCachedIcons
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16116
    "
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16117
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16118
    <resource: #image>
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16119
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16120
    ^Icon
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16121
        constantNamed:'GenericToolbarIconLibrary abstractClassIcon1'
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16122
        ifAbsentPut:[(Depth4Image width:13 height:11) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@EBIA@@@@@BH"H @@@AH"H"H!!@@ABH#L"I@@@H"L@L"H@@BH#@CH"@@ABH#L"I@@@D"H"H"D@@@@"H"H@@@@@EBIA@@@b') colorMapFromArray:#[214 177 82 229 207 148 204 159 42 226 201 136 207 165 55] mask:((ImageMask width:13 height:11) bits:(ByteArray fromPackedString:'@@@O0A? O?@?<C30OO@?<C?0G>@O0@@a'); yourself); yourself]
4474
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
 16123
!
46d7c75200a1 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4469
diff changeset
 16124
5507
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16125
abstractClassIcon2
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16126
    "This resource specification was automatically generated
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16127
     by the ImageEditor of ST/X."
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16128
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16129
    "Do not manually edit this!! If it is corrupted,
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16130
     the ImageEditor may not be able to read the specification."
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16131
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16132
    "
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16133
     self abstractClassIcon2 inspect
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16134
     ImageEditor openOnClass:self andSelector:#abstractClassIcon2
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16135
     Icon flushCachedIcons
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16136
    "
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16137
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16138
    <resource: #image>
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16139
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16140
    ^Icon
5984
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16141
        constantNamed:'GenericToolbarIconLibrary class abstractClassIcon2'
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16142
        ifAbsentPut:[(Depth2Image width:13 height:11) bits:(ByteArray fromPackedString:'@@ @H@@Y@@@@I @ @B8@@@A]P@@@''X@@@V*P@@I3X@@B0N@@@@@@@@@@@@@b')
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16143
            colorMapFromArray:#[0 0 0 163 163 255 127 127 255 255 255 255]
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16144
            mask:((ImageMask width:13 height:11) bits:(ByteArray fromPackedString:'@ @G@@\@A0@O @>@G<@]0A#@@@@@@@@a'); yourself); yourself]
5507
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16145
!
b4975cefe877 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
 16146
5599
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16147
abstractContainerClassBrowserIcon
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16148
    "This resource specification was automatically generated
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16149
     by the ImageEditor of ST/X."
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16150
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16151
    "Do not manually edit this!! If it is corrupted,
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16152
     the ImageEditor may not be able to read the specification."
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16153
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16154
    "
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16155
     self abstractContainerClassBrowserIcon inspect
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16156
     ImageEditor openOnClass:self andSelector:#abstractContainerClassBrowserIcon
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16157
     Icon flushCachedIcons
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16158
    "
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16159
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16160
    <resource: #image>
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16161
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16162
    ^Icon
5984
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16163
        constantNamed:'GenericToolbarIconLibrary class abstractContainerClassBrowserIcon'
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16164
        ifAbsentPut:[(Depth4Image width:13 height:11) bits:(ByteArray fromPackedString:'@QD@L@DQ@@D@C3<@@P@A@@O3@@D@@P@CH0@A@@D@?2?0@P@A@C</L@D@@P<3L3<A@@DC< K3@P@A@2@@H0D@@P@@@@@A@@DQ@@@ADP@b')
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16165
            colorMapFromArray:#[0 0 0 0 127 127 255 255 255 127 127 255 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 127 127 0 127 0 127 127 127 127 170 170 170 163 163 255]
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16166
            mask:((ImageMask width:13 height:11) bits:(ByteArray fromPackedString:'\''AGDD\PQ1AO$D>PW=A]4E#PPAA0\@@a'); yourself); yourself]
5599
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16167
!
b90b1e164873 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5545
diff changeset
 16168
5613
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16169
abstractWindowClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16170
    "This resource specification was automatically generated
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16171
     by the ImageEditor of ST/X."
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16172
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16173
    "Do not manually edit this!! If it is corrupted,
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16174
     the ImageEditor may not be able to read the specification."
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16175
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16176
    "
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16177
     self abstractWindowClassBrowserIcon inspect
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16178
     ImageEditor openOnClass:self andSelector:#abstractWindowClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16179
     Icon flushCachedIcons
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16180
    "
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16181
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16182
    <resource: #image>
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16183
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16184
    ^Icon
5984
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16185
        constantNamed:'GenericToolbarIconLibrary class abstractWindowClassBrowserIcon'
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16186
        ifAbsentPut:[(Depth4Image width:13 height:11) bits:(ByteArray fromPackedString:'H"H1PSH"HBL3MDP3LR@#L3PTL3D H3L4ECL1HBL3QAQCLR0#L4QDP3D H3QCL4P1HBL4L3L4LR@#L3L3L3D HQDQDQDQH"H"H"H"H",b')
c1931c661f20 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 5938
diff changeset
 16187
            colorMapFromArray:#[0 0 0 255 255 255 127 127 127 220 220 220 127 127 255]; yourself]
5613
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16188
!
Claus Gittinger <cg@exept.de>
parents: 5599
diff changeset
 16189
4932
5bcb5923f414 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
 16190
announcementClassIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16191
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16192
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16193
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16194
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16195
     the ImageEditor may not be able to read the specification."
4932
5bcb5923f414 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
 16196
    "
5bcb5923f414 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
 16197
     self announcementClassIcon inspect
5bcb5923f414 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
 16198
     ImageEditor openOnClass:self andSelector:#announcementClassIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16199
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16200
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16201
    ^ Icon constantNamed:'GenericToolbarIconLibrary announcementClassIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16202
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16203
            (Depth8Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16204
                width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16205
                height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16206
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16207
                            fromPackedString:'
4932
5bcb5923f414 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
 16208
@A@C@PDA@PDA@P4@C1P9N3,;N3,;N1XI@#(8M#H/KB$$IS,KA#,4LR8+JBP!!G3,NA#,0KR,''H2D^GC,N@#(6J"X"HA4ZF3,LC1P:N3,;KQ$6N1XI@A@B@PDR
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16209
N3,7D (@@@@@@@@HL1HDEP@@@@@@@ALQAQ\@@@@@@@@@MP\X@@@@@@@@@@@@@@@@@@@@@@@@');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16210
                colorMapFromArray:#[ 0 0 0 88 135 184 90 136 185 92 138 186 93 139 186 95 140 187 108 149 192 110 151 193 111 151 194 112 152 194 117 156 196 123 160 199 125 162 200 133 167 203 137 170 205 139 172 206 147 177 209 153 182 212 157 184 213 163 189 216 169 193 218 173 196 220 180 201 223 181 202 224 190 208 227 208 227 253 208 228 253 209 228 252 209 228 253 211 230 253 212 230 253 213 230 253 214 231 253 215 232 253 217 233 253 218 233 253 219 234 253 220 234 253 220 235 253 221 235 254 221 236 254 222 236 254 223 236 254 224 237 254 225 238 254 226 238 254 227 239 254 228 239 254 229 240 254 230 240 254 230 241 254 231 238 245 232 241 254 233 239 246 233 242 254 239 243 248 240 246 254 251 252 253 253 254 254 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16211
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16212
                            width:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16213
                            height:12;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16214
                            bits:(ByteArray fromPackedString:'_>????????????????=?;0_OC0<\C0@O');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16215
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16216
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16217
        ]
4932
5bcb5923f414 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
 16218
!
5bcb5923f414 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4928
diff changeset
 16219
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16220
applicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16221
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16222
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16223
    ^ self smallGrayPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16224
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16225
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16226
autoloadedClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16227
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16228
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16229
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16230
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16231
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16232
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16233
     self autoloadedClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16234
     ImageEditor openOnClass:self andSelector:#autoloadedClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16235
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16236
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16237
    ^ Icon 
4941
219f8759b51d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4937
diff changeset
 16238
        constantNamed:'GenericToolbarIconLibrary autoloadedClassBrowserIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16239
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16240
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16241
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16242
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16243
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16244
                            fromPackedString:'UUUUXEUUUTAY?=% V_?YPE''?6TAZUU%@V**)PE)UVTAZU=%@U%_YPEUUUT@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16245
                colorMapFromArray:#[ 0 0 0 84 84 84 170 170 170 255 255 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16246
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16247
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16248
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16249
                            bits:(ByteArray fromPackedString:'_?A?<G?0_?A?<G?0_?A?<G?0_?@?<@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16250
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16251
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16252
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16253
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16254
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16255
containerClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16256
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16257
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16258
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16259
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16260
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16261
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16262
     self containerClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16263
     ImageEditor openOnClass:self andSelector:#containerClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16264
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16265
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16266
    ^ Icon 
4941
219f8759b51d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4937
diff changeset
 16267
        constantNamed:'GenericToolbarIconLibrary containerClassBrowserIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16268
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16269
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16270
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16271
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16272
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16273
                            fromPackedString:'@QDP@ADQ@@DQD@@QDP@AD@@@@AD@@Q@@@@@Q@@DP@@@@DP@AD@@@@AD@@Q@@@@@Q@@DP@@@@DP@AD@@@@AD@@QDP@ADQ@@DQD@@QDP@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16274
                colorMapFromArray:#[ 0 0 0 0 127 127 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16275
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16276
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16277
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16278
                            bits:(ByteArray fromPackedString:'^OA8<F@0XCA LF@0XCA LF@0^OA8<@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16279
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16280
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16281
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16282
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16283
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16284
dart13x11Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16285
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16286
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16287
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16288
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16289
     the ImageEditor may not be able to read the specification."
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16290
    "
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16291
     self dart13x11Icon inspect
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16292
     ImageEditor openOnClass:self andSelector:#dart13x11Icon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16293
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16294
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16295
    ^ Icon constantNamed:'GenericToolbarIconLibrary dart13x11Icon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16296
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16297
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16298
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16299
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16300
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16301
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16302
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16303
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16304
                            fromPackedString:'@@H @@@@@@@BH @@@@@@H2H@@@@HH!!H2@@@@@BH!!H0@@@@@BH!!H @@@@@@@BH @@@@@@@BI@@@@@@@@DQ@@@@@@@@DP@AP@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16305
                colorMapFromArray:#[ 0 0 0 0 57 93 0 115 187 127 185 221 238 191 43 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16306
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16307
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16308
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16309
                            bits:(ByteArray fromPackedString:'F@@\@C0@?@C<@G8@A0@C @G@@L@@H@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16310
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16311
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16312
        ]
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16313
!
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16314
4445
985ce436a0aa added: #dartClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4440
diff changeset
 16315
dartClassBrowserIcon
4446
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16316
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16317
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16318
    ^ self dart12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4445
diff changeset
 16319
"/    ^ self dart13x11Icon
4445
985ce436a0aa added: #dartClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4440
diff changeset
 16320
!
985ce436a0aa added: #dartClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4440
diff changeset
 16321
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16322
enumTypeBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16323
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16324
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16325
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16326
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16327
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16328
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16329
     self enumTypeBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16330
     ImageEditor openOnClass:self andSelector:#enumTypeBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16331
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16332
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16333
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16334
        constantNamed:#'GenericToolbarIconLibrary class enumTypeBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16335
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16336
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16337
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16338
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16339
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16340
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16341
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16342
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16343
                            fromPackedString:'(@@@NJ@@@C" @@@@(@@@@J(@J BB@B@@  @ NJ@@@@B @@@@(@@@@J@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16344
                colorMapFromArray:#[ 0 0 0 127 127 127 255 0 0 255 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16345
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16346
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16347
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16348
                            bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@F60[[@@@@@@@@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16349
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16350
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16351
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16352
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16353
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16354
errorClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16355
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16356
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16357
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16358
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16359
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16360
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16361
     self errorClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16362
     ImageEditor openOnClass:self andSelector:#errorClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16363
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16364
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16365
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16366
        constantNamed:#'GenericToolbarIconLibrary class errorClassBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16367
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16368
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16369
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16370
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16371
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16372
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16373
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16374
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16375
                            fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16376
                colorMapFromArray:#[ 0 0 0 255 255 255 255 0 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16377
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16378
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16379
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16380
                            bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16381
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16382
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16383
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16384
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16385
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16386
exceptionClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16387
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16388
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16389
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16390
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16391
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16392
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16393
     self exceptionClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16394
     ImageEditor openOnClass:self andSelector:#exceptionClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16395
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16396
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16397
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16398
        constantNamed:#'GenericToolbarIconLibrary class exceptionClassBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16399
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16400
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16401
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16402
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16403
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16404
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16405
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16406
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16407
                            fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16408
                colorMapFromArray:#[ 0 0 0 255 255 255 110 110 110 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16409
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16410
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16411
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16412
                            bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16413
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16414
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16415
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16416
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16417
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16418
guiApplicationDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16419
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16420
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16421
    ^ self smallGreenPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16422
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16423
4447
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 16424
javascriptClassBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 16425
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 16426
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 16427
    ^ self javascript12x12Icon
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 16428
!
Claus Gittinger <cg@exept.de>
parents: 4446
diff changeset
 16429
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16430
libraryDefinitionClassIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16431
    <resource: #programImage>
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16432
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16433
    ^ self smallYellowPackageIcon
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16434
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16435
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16436
nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16437
    "This resource specification was automatically generated
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16438
     by the ImageEditor of ST/X."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16439
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16440
    "Do not manually edit this!! If it is corrupted,
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16441
     the ImageEditor may not be able to read the specification."
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16442
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16443
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16444
     self nameSpaceBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16445
     ImageEditor openOnClass:self andSelector:#nameSpaceBrowserIcon
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16446
     Icon flushCachedIcons
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16447
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16448
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16449
    <resource: #image>
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16450
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16451
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16452
        constantNamed:#'GenericToolbarIconLibrary class nameSpaceBrowserIcon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16453
        ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@AO8C?DS:"?1D:(/<QN*J?DS*"/1D:(+<QN*J/DR*"+1AJ(*!!@DJJA@@T@E@@@UT@@@a') ; colorMapFromArray:#[0 0 0 190 190 0 194 194 194 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@G#1??7??_?=??7??_?=??7??O?8_?@?8@>@b') ; yourself); yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16454
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16455
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16456
notificationClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16457
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16458
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16459
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16460
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16461
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16462
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16463
     self notificationClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16464
     ImageEditor openOnClass:self andSelector:#notificationClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16465
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16466
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16467
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16468
        constantNamed:#'GenericToolbarIconLibrary class notificationClassBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16469
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16470
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16471
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16472
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16473
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16474
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16475
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16476
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16477
                            fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16478
                colorMapFromArray:#[ 0 0 0 255 255 255 0 127 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16479
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16480
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16481
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16482
                            bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16483
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16484
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16485
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16486
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16487
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16488
queryClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16489
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16490
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16491
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16492
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16493
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16494
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16495
     self queryClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16496
     ImageEditor openOnClass:self andSelector:#queryClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16497
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16498
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16499
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16500
        constantNamed:#'GenericToolbarIconLibrary class queryClassBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16501
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16502
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16503
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16504
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16505
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16506
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16507
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16508
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16509
                            fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16510
                colorMapFromArray:#[ 0 0 0 255 255 255 61 173 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16511
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16512
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16513
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16514
                            bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16515
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16516
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16517
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16518
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16519
4176
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 16520
sharedPoolBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16521
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16522
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16523
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16524
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16525
     the ImageEditor may not be able to read the specification."
4176
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 16526
    "
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 16527
     self sharedPoolBrowserIcon inspect
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 16528
     ImageEditor openOnClass:self andSelector:#sharedPoolBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16529
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16530
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16531
    ^ Icon 
4176
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 16532
        constantNamed:'GenericToolbarIconLibrary class sharedPoolBrowserIcon'
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16533
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16534
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16535
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16536
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16537
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16538
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16539
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16540
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16541
                            fromPackedString:'@@@@@@@@@@H"H"H"H @BH"H"H"H@@"H"H"H"@@H"H"H"H @BH"H"H"H@@"H"H"H"@@H"H"H"H @BH"H"H"H@@"H"H"H"@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16542
                colorMapFromArray:#[ 0 0 0 255 255 255 0 127 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16543
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16544
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16545
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16546
                            bits:(ByteArray fromPackedString:'@@A?<G?0_?A?<G?0_?A?<G?0_?@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16547
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16548
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16549
        ]
4176
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 16550
!
af086dc8b816 added: #sharedPoolBrowserIcon
Claus Gittinger <cg@exept.de>
parents: 4168
diff changeset
 16551
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16552
smallGrayPackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16553
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16554
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16555
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16556
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16557
     the ImageEditor may not be able to read the specification."
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16558
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16559
     self smallGrayPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16560
     ImageEditor openOnClass:self andSelector:#smallGrayPackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16561
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16562
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16563
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16564
        constantNamed:'GenericToolbarIconLibrary class smallGrayPackageIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16565
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16566
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16567
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16568
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16569
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16570
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16571
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16572
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16573
                            fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16574
                colorMapFromArray:#[ 0 0 0 132 0 132 153 153 153 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16575
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16576
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16577
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16578
                            bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16579
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16580
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16581
        ]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16582
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16583
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16584
smallGreenPackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16585
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16586
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16587
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16588
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16589
     the ImageEditor may not be able to read the specification."
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16590
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16591
     self smallGreenPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16592
     ImageEditor openOnClass:self andSelector:#smallGreenPackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16593
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16594
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16595
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16596
        constantNamed:'GenericToolbarIconLibrary class smallGreenPackageIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16597
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16598
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16599
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16600
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16601
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16602
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16603
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16604
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16605
                            fromPackedString:'@BH @@H"@@H H @"@ @BH@H"H@H@@BH"H"H"@@@@D!!DPH@@@@@H@@P@@@@DRDPD@@@@AD!!DA@@@@@QHQ@P@@@@DRDP@@@@@@@ @@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16606
                colorMapFromArray:#[ 0 0 0 0 255 0 132 0 132 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16607
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16608
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16609
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16610
                            bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16611
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16612
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16613
        ]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16614
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16615
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16616
smallOrangePackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16617
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16618
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16619
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16620
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16621
     the ImageEditor may not be able to read the specification."
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16622
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16623
     self smallOrangePackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16624
     ImageEditor openOnClass:self andSelector:#smallOrangePackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16625
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16626
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16627
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16628
        constantNamed:'GenericToolbarIconLibrary class smallOrangePackageIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16629
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16630
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16631
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16632
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16633
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16634
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16635
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16636
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16637
                            fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16638
                colorMapFromArray:#[ 0 0 0 132 0 132 255 139 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16639
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16640
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16641
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16642
                            bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16643
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16644
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16645
        ]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16646
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16647
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16648
smallYellowPackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16649
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16650
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16651
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16652
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16653
     the ImageEditor may not be able to read the specification."
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16654
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16655
     self smallYellowPackageIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16656
     ImageEditor openOnClass:self andSelector:#smallYellowPackageIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16657
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16658
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16659
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16660
        constantNamed:'GenericToolbarIconLibrary class smallYellowPackageIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16661
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16662
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16663
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16664
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16665
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16666
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16667
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16668
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16669
                            fromPackedString:'@ADP@@DQ@@DPDP@Q@P@AD@DQD@D@@ADQDQDQ@@@@HRH D@@@@@D@@ @@@@H!!H H@@@@BHRHB@@@@@"D"@ @@@@H!!H @@@@@@@P@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16670
                colorMapFromArray:#[ 0 0 0 132 0 132 255 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16671
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16672
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16673
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16674
                            bits:(ByteArray fromPackedString:'NGA,4F^PO?@_8C? O>@?8C? O<@? @@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16675
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16676
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16677
        ]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16678
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16679
5620
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16680
standaloneStartupHeadlessIcon
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16681
    "This resource specification was automatically generated
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16682
     by the ImageEditor of ST/X."
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16683
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16684
    "Do not manually edit this!! If it is corrupted,
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16685
     the ImageEditor may not be able to read the specification."
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16686
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16687
    "
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16688
     self standaloneStartupHeadlessIcon inspect
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16689
     ImageEditor openOnClass:self andSelector:#standaloneStartupHeadlessIcon
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16690
     Icon flushCachedIcons
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16691
    "
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16692
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16693
    <resource: #image>
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16694
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16695
    ^Icon
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16696
        constantNamed:'GenericToolbarIconLibrary standaloneStartupHeadlessIcon'
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16697
        ifAbsentPut:[(Depth8Image width:13 height:11) bits:(ByteArray fromPackedString:'
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16698
@@@A@ @@@@@@@@@@@@@@@0PEA @@@@@@@@@@@@LGB@$J@@@@@@@@@@@AB00MC <P@@@@@@@@@1DRD1PUE!!\X@@@@@@LYF!!([D10]G @@@@@CG2@!!DRHDE0@@
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16699
@@@@@2LTIBT&G @@@@@@@@L''J@P\JP@@@@@@@@@CJ",X@@@@@@@@@@@@@0H@@@@@@@@@@@@b') colorMapFromArray:#[0 0 0 74 74 74 212 212 212 88 88 88 83 83 83 152 152 152 228 228 228 209 209 209 132 132 132 78 78 78 172 172 172 190 190 190 191 191 191 181 181 181 106 106 106 111 111 111 194 194 194 167 167 167 162 162 162 162 162 162 179 179 179 163 163 163 95 95 95 124 124 124 202 202 202 150 150 150 150 150 150 149 149 149 152 152 152 81 81 81 185 185 185 172 172 172 182 182 182 178 178 178 143 143 143 187 187 187 170 170 170 105 105 105 96 96 96 175 175 175 137 137 137 228 228 228 99 99 99 150 150 150] mask:((ImageMask width:13 height:11) bits:(ByteArray fromPackedString:'L@@<@C8@O8@?8C? O<@? C<@O@@0@@@a'); yourself); yourself]
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16700
!
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16701
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16702
standaloneStartupIcon
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16703
    <resource: #image>
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16704
    "This resource specification was automatically generated
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16705
     by the ImageEditor of ST/X."
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16706
    "Do not manually edit this!! If it is corrupted,
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16707
     the ImageEditor may not be able to read the specification."
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16708
    "
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16709
     self standaloneStartupIcon inspect
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16710
     ImageEditor openOnClass:self andSelector:#standaloneStartupIcon
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16711
     Icon flushCachedIcons"
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16712
    
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16713
    ^ Icon constantNamed:'GenericToolbarIconLibrary standaloneStartupIcon'
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16714
        ifAbsentPut:[
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16715
            (Depth8Image new)
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16716
                width:13;
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16717
                height:11;
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16718
                photometric:(#palette);
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16719
                bitsPerSample:(#[ 8 ]);
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16720
                samplesPerPixel:(1);
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16721
                bits:(ByteArray 
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16722
                            fromPackedString:'
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16723
@@@A@ @@@@@@@@@@@@@@@0PEA @@@@@@@@@@@@LGB@$J@@@@@@@@@@@AB00MC <P@@@@@@@@@1DRD1PUE!!\X@@@@@@LYF!!([D10]G @@@@@CG2@!!DRHDE0@@
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16724
@@@@@2LTIBT&G @@@@@@@@L''J@P)J @@@@@@@@@CJ20X@@@@@@@@@@@@@0H@@@@@@@@@@@@b');
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16725
                colorMapFromArray:#[ 0 0 0 32 104 24 208 216 208 47 120 24 47 112 24 128 168 128 224 232 224 191 224 176 95 160 80 47 104 24 159 184 144 159 216 136 160 216 136 144 208 136 64 136 56 79 136 64 191 200 176 127 200 96 111 200 88 112 200 88 143 208 120 127 192 104 63 120 48 96 144 88 207 200 200 96 192 64 95 192 64 95 192 56 111 184 88 48 104 48 176 192 176 112 216 88 127 224 96 128 216 104 96 176 88 143 224 104 128 200 120 64 136 48 64 120 56 128 208 120 95 168 80 143 160 136 239 224 224 47 136 40 127 168 120 ];
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16726
                mask:((ImageMask new)
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16727
                            width:13;
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16728
                            height:11;
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16729
                            bits:(ByteArray fromPackedString:'L@@<@C8@O8@?8C? O<@? C<@O@@0@@@a');
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16730
                            yourself);
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16731
                yourself
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16732
        ]
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16733
!
8d7c0790a41f #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5614
diff changeset
 16734
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16735
startableClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16736
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16737
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16738
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16739
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16740
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16741
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16742
     self startableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16743
     ImageEditor openOnClass:self andSelector:#startableClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16744
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16745
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16746
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16747
        constantNamed:#'GenericToolbarIconLibrary class startableClassBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16748
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16749
            (Depth2Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16750
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16751
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16752
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16753
                bitsPerSample:(#( 2 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16754
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16755
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16756
                            fromPackedString:'**J*NJ*"*#"*!!J(@*!!T*@J(DJ B*DR(@*!!T*NJ(*J B*O2(@*+.*@J*** @b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16757
                colorMapFromArray:#[ 0 0 0 127 127 127 255 0 0 255 255 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16758
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16759
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16760
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16761
                            bits:(ByteArray fromPackedString:'@ @B@@\@C8@O @>@C8@H @>@A0@G@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16762
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16763
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16764
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16765
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16766
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16767
testCaseClassIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16768
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16769
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16770
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16771
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16772
     the ImageEditor may not be able to read the specification."
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16773
    "
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16774
     self testCaseClassIcon inspect
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16775
     ImageEditor openOnClass:self andSelector:#testCaseClassIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16776
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16777
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16778
    ^ Icon constantNamed:'GenericToolbarIconLibrary class testCaseClassIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16779
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16780
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16781
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16782
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16783
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16784
                bitsPerSample:(#[ 4 ]);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16785
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16786
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16787
                            fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@H @@@@@@@"D@@@@@@@HP@@@@@ @"D@@@@@H HP@@@@@AH"D@@@@@@AHP@@@@@@@A@@@@@@@@@@@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16788
                colorMapFromArray:#[ 0 0 0 255 255 255 56 142 51 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16789
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16790
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16791
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16792
                            bits:(ByteArray fromPackedString:'@@@@@@C@@\@A AN@F0@_@@8@A@@@@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16793
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16794
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16795
        ]
3948
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16796
!
b5d2f92a0a93 more icons
Claus Gittinger <cg@exept.de>
parents: 3947
diff changeset
 16797
4582
7b0d9bbe96f4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
 16798
testCaseErrorIcon
7b0d9bbe96f4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
 16799
    <resource: #programImage>
7b0d9bbe96f4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
 16800
4604
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
 16801
    ^ self ledGrayedRed10x11
3bc2df417576 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4600
diff changeset
 16802
"/    ^ self ledDarkRed10x11
4582
7b0d9bbe96f4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
 16803
"/    ^ self redThumbDownSmallIcon
7b0d9bbe96f4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
 16804
!
7b0d9bbe96f4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
 16805
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16806
testCaseFailedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16807
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16808
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
 16809
    ^ self ledRed10x11
4582
7b0d9bbe96f4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4560
diff changeset
 16810
"/    ^ self testCaseErrorIcon
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16811
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16812
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16813
testCasePassedIcon
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16814
    <resource: #programImage>
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16815
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
 16816
    ^ self ledGreen10x11
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 16817
"/    ^ self greenThumbUpSmallIcon
3953
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16818
!
7268fd08ac4b added:7 methods
Claus Gittinger <cg@exept.de>
parents: 3950
diff changeset
 16819
4550
d92e67c20b63 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
 16820
testCaseSkippedIcon
d92e67c20b63 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
 16821
    <resource: #programImage>
d92e67c20b63 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
 16822
4558
bf751339c0ab class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4552
diff changeset
 16823
    ^ self ledGrey10x11
4551
ebfc7e1a06f0 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4550
diff changeset
 16824
    "/ ^ self greenThumbUnknownSmallIcon
4550
d92e67c20b63 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
 16825
!
d92e67c20b63 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4543
diff changeset
 16826
5328
c00be208ceb8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
 16827
timeClassBrowserIcon
c00be208ceb8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
 16828
    <resource: #programImage>
c00be208ceb8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
 16829
5329
b0d49e624821 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
 16830
    ^ self clockPink13x13Icon    
5328
c00be208ceb8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
 16831
!
c00be208ceb8 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
 16832
5508
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16833
utilityClassIcon
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16834
    "This resource specification was automatically generated
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16835
     by the ImageEditor of ST/X."
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16836
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16837
    "Do not manually edit this!! If it is corrupted,
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16838
     the ImageEditor may not be able to read the specification."
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16839
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16840
    "
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16841
     self utilityClassIcon inspect
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16842
     ImageEditor openOnClass:self andSelector:#utilityClassIcon
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16843
     Icon flushCachedIcons
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16844
    "
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16845
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16846
    <resource: #image>
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16847
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16848
    ^Icon
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16849
        constantNamed:'GenericToolbarIconLibrary utilityClassIcon'
5510
33beff6885d8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 5508
diff changeset
 16850
        ifAbsentPut:[(Depth2Image width:13 height:11) bits:(ByteArray fromPackedString:'@ @ H@K@8@@B0N@ @,C @@K@8@@A0M@@@W=P@@A*P@@@@@@@@@@@@@@@@@@b') colorMapFromArray:#[0 0 0 160 160 255 127 127 255 255 255 255] mask:((ImageMask width:13 height:11) bits:(ByteArray fromPackedString:'DD@X0A#@FL@X0A#@G<@O @@@@@@@@@@a'); yourself); yourself]
5508
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16851
!
9bcc9e78c4c8 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 5507
diff changeset
 16852
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16853
visualStartableClassBrowserIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16854
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16855
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16856
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16857
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16858
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16859
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16860
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16861
     self visualStartableClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16862
     ImageEditor openOnClass:self andSelector:#visualStartableClassBrowserIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16863
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16864
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16865
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16866
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16867
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16868
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16869
        constantNamed:'GenericToolbarIconLibrary visualStartableClassBrowserIcon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16870
        ifAbsentPut:[(Depth4Image width:13 height:11) 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]; yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16871
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16872
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16873
warningClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16874
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16875
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16876
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16877
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16878
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16879
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16880
     self warningClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16881
     ImageEditor openOnClass:self andSelector:#warningClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16882
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16883
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16884
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16885
        constantNamed:#'GenericToolbarIconLibrary class warningClassBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16886
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16887
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16888
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16889
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16890
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16891
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16892
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16893
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16894
                            fromPackedString:'@@@BH@@@@@@@@"@@@@@@@BH"@@@@@@@"H @@@@@@H"H@@@@@@BH"@@@@@@@"H @@@@@@@"@@@@@@@@@@@@@@@@@BH@@@@@@@@"@@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16895
                colorMapFromArray:#[ 0 0 0 255 255 255 255 127 0 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16896
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16897
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16898
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16899
                            bits:(ByteArray fromPackedString:'A @F@@<@C0@O@@<@C0@F@@@@A @F@@@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16900
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16901
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16902
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16903
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16904
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16905
webServiceClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16906
    <resource: #image>
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16907
    "This resource specification was automatically generated
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16908
     by the ImageEditor of ST/X."
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16909
    "Do not manually edit this!! If it is corrupted,
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16910
     the ImageEditor may not be able to read the specification."
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16911
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16912
     self webServiceClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16913
     ImageEditor openOnClass:self andSelector:#webServiceClassBrowserIcon
5039
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16914
     Icon flushCachedIcons"
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16915
    
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16916
    ^ Icon 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16917
        constantNamed:#'GenericToolbarIconLibrary class webServiceClassBrowserIcon'
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16918
        ifAbsentPut:[
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16919
            (Depth4Image new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16920
                width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16921
                height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16922
                photometric:(#palette);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16923
                bitsPerSample:(#( 4 ));
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16924
                samplesPerPixel:(1);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16925
                bits:(ByteArray 
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16926
                            fromPackedString:'@@ADQD@@@@@DQDQD@@@@QDQDQD@@ACMDP3MD@@P3MDP3M@@DL3QCL3P@ADL4P3L4@@QCMDL3Q@@@QDQCMD@@@@QDQDP@@@@@QDQ@@@@b');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16927
                colorMapFromArray:#[ 0 0 0 255 255 255 255 0 0 0 255 0 0 0 255 ];
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16928
                mask:((ImageMask new)
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16929
                            width:13;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16930
                            height:11;
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16931
                            bits:(ByteArray fromPackedString:'C8@_0C? _?A?<G?0_?A?<C? G<@O @@a');
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16932
                            yourself);
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16933
                yourself
ae8300dcc634 Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents: 5034
diff changeset
 16934
        ]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16935
!
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16936
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16937
windowClassBrowserIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16938
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16939
     by the ImageEditor of ST/X."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16940
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16941
    "Do not manually edit this!! If it is corrupted,
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16942
     the ImageEditor may not be able to read the specification."
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16943
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16944
    "
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16945
     self windowClassBrowserIcon inspect
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16946
     ImageEditor openOnClass:self andSelector:#windowClassBrowserIcon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16947
     Icon flushCachedIcons
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16948
    "
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16949
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16950
    <resource: #image>
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16951
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16952
    ^Icon
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16953
        constantNamed:'GenericToolbarIconLibrary windowClassBrowserIcon'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 16954
        ifAbsentPut:[(Depth2Image width:13 height:11) bits:(ByteArray fromPackedString:'@@@@@R***P@/??4@K??=@B???PD/??4@K??=@R???P@/??4AEUUU@@@@@@@b') colorMapFromArray:#[0 0 0 255 255 255 127 127 127 170 170 170]; yourself]
3492
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16955
! !
fa487f650441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3454
diff changeset
 16956
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16957
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-SystemBrowser-java'!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16958
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16959
javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16960
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16961
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16962
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16963
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16964
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16965
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16966
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16967
     self javaClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16968
     ImageEditor openOnClass:self andSelector:#javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16969
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16970
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16971
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16972
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16973
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16974
    ^Icon
4533
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 16975
        constantNamed:'GenericToolbarIconLibrary javaClassBrowserIcon'
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 16976
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 16977
VU%YVU\OF@4YC5]YVU%YVU%YVP$MO4YFQ#<ABU%YVU%YVP$[R5YTUUQRQ0(IVU%YVU\MRUAXVE!!XVD=H@U]YVU$GPEEXVEMMS%!!LR$@PVU%YASYBVDMAPTEE
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 16978
QDP>AU%YVPDVI5 (EALSEA\\H@1YVU$EGQ)XJQ8"H!!H.C"PEVU%YDBD3M5 /I!!=XOR4*@E%YVU\JLC(4VE!!XMS02B%]YVU%YDP,#NC$;NS 1@!!EYVU%YVU$Q
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 16979
ERT+KB,%EQEYVU%YVU%YVU\F@0PCBE]YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVU%YVP@@@@@@@@@@@@@@@@@@
c16ca4f7378d class: GenericToolbarIconLibrary
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4531
diff changeset
 16980
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[108 168 129 51 130 77 54 131 79 64 137 88 66 139 90 70 143 94 84 152 106 90 155 112 92 156 113 130 179 146 36 118 62 46 124 70 51 129 75 57 134 80 88 156 109 93 158 113 99 162 119 129 178 144 162 201 174 45 124 68 46 125 69 47 125 70 48 126 70 51 129 73 75 146 96 74 144 94 119 174 135 50 128 71 54 132 74 59 135 79 63 137 82 142 189 154 62 136 79 62 136 80 62 135 80 70 142 87 71 143 88 82 150 98 107 167 122 143 190 154 195 221 201 226 239 229 82 150 96 86 154 100 86 153 100 93 156 106 171 207 179 188 216 194 84 151 97 87 153 100 88 153 100 94 156 106 218 234 221 230 241 232 82 150 94 241 247 242 96 160 105 124 178 132 121 174 129 133 184 140 140 188 147 240 247 241 89 153 97 104 164 111 97 160 103 96 158 102 158 198 161 220 234 221 103 162 106 109 166 112 119 174 120 128 179 128 123 177 122 121 174 119 135 184 133 129 179 125 225 239 224 145 190 140 179 210 176 188 217 185 190 218 187 159 199 154 160 199 155 187 216 183 194 220 191 198 222 195 176 208 171 201 208 199 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?0?>A?0C>@@@@@@@@@b') ; yourself); yourself]
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16981
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16982
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16983
javaExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16984
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16985
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16986
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16987
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16988
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16989
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16990
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16991
     self javaExceptionBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16992
     ImageEditor openOnClass:self andSelector:#javaExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16993
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16994
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16995
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16996
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16997
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 16998
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 16999
        constantNamed:'GenericToolbarIconLibrary class javaExceptionBrowserIcon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 17000
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17001
D!!HRD!!HC@@DRD!!HRD!!HRD!!HRD!!HR@0@AD!!HRD!!HRD!!HRD!!HRD L@@QHRA $IA!!HRD!!HRD!!HC@@DRD $EAP$RD!!HRD!!HR@0@AD!!HIAPTID!!HRD!!HRD L@@QHR
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17002
B ,KB!!HRD!!HR@0HB@@HRD  PD@ RD!!HRD LA@@HRD!!HLDQDLD!!HRD!!HRD!!HRD!!HRA0<OA1HRD!!HRD!!HRD!!HRD!!HNC!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!HR
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17003
D!!HRD!!HRA $IA!!HRD!!HRD!!HRD!!HRD $MA@$RD!!HRD!!HRD!!HRD!!HNCPPND!!HRD!!HRD!!HRD!!HRA 8NA!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD @@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17004
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[40 98 150 81 128 170 110 150 185 194 211 226 255 223 95 255 234 145 228 221 192 218 204 156 184 149 37 190 156 40 188 153 39 255 226 134 180 143 35 255 223 127 170 130 30 207 167 62 254 215 119 254 207 108 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A0@G@@\<A30GO@\<G30^O@@<@A @@@@<@C0@O@@<@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17005
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17006
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17007
javaPrivateClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17008
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17009
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17010
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17011
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17012
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17013
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17014
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17015
     self javaPrivateClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17016
     ImageEditor openOnClass:self andSelector:#javaPrivateClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17017
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17018
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17019
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17020
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17021
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17022
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 17023
        constantNamed:'GenericToolbarIconLibrary class javaPrivateClassBrowserIcon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 17024
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17025
XVE!!XQHWHAX!!E1I!!XVE!!XVE!!XQ@VPD]GQ4@JDFE!!XVE!!XQ@$SE]UU%USRALPXVE!!XQHVR%E XFA XEAIB!!I!!XVDNPUI XEQNS6AMR4DXXVE!!CC%CXDQBP$IF
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17026
QTT?CFE!!XP(^K6@1GA,[GA<%JQU!!XVDLI"I L"\+J1$4F" QXVE!!FB(7N&@5K%)ZV%)ZV%)!!XRLSM#48XFAYWE1\WE1YXVE!!C1P,N30>V51^W%9\V6E!!XVDO
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17027
GR43L@HGA TFA0I!!XVE!!XQHMB0$CW54@@E<AXVE!!XVE!!XVE!!AE!!XVE!!XAFE!!XVE!!XVE!!XP HB@ HB@!!!!XVE!!XVE!!XVE!!XVE!!XVE!!XP@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17028
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[231 96 97 200 41 48 200 48 52 200 41 49 200 29 44 242 77 92 241 77 92 245 118 128 200 25 42 152 195 167 51 130 77 64 137 88 70 143 94 84 152 106 90 155 112 126 179 144 129 181 146 155 198 169 205 226 212 36 118 62 46 124 70 51 129 75 57 134 80 93 158 113 99 162 119 162 201 174 166 204 178 45 124 68 46 125 69 47 125 70 48 126 70 51 129 73 75 146 96 74 144 94 119 174 135 216 233 221 50 128 71 54 132 74 59 135 79 63 137 82 155 198 166 62 136 79 62 136 80 62 135 80 70 142 87 82 150 98 107 167 122 143 190 154 164 203 173 195 221 201 226 239 229 86 154 100 171 207 179 188 216 194 84 151 97 94 156 106 218 234 221 82 150 94 241 247 242 96 160 105 124 178 132 121 174 129 167 204 172 89 153 97 104 164 111 97 160 103 96 158 102 158 198 161 220 234 221 103 162 106 109 166 112 119 174 120 128 179 128 123 177 122 121 174 119 135 184 133 129 179 125 225 239 224 145 190 140 179 210 176 188 217 185 190 218 187 159 199 154 160 199 155 187 216 183 194 220 191 198 222 195 176 208 171 231 147 139 201 67 60 201 71 62 201 62 58 246 146 142 231 96 96 245 124 124 237 131 131 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?>_?8??!!?>C?8@? C>@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17029
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17030
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17031
javaPrivateEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17032
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17033
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17034
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17035
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17036
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17037
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17038
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17039
     self javaPrivateEnumBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17040
     ImageEditor openOnClass:self andSelector:#javaPrivateEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17041
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17042
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17043
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17044
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17045
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17046
    ^Icon
5256
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 17047
        constantNamed:'GenericToolbarIconLibrary class javaPrivateEnumBrowserIcon'
116bc686833c Added breakpoint icons with "warning" sign.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5254
diff changeset
 17048
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17049
QDQDQC\#F1PZH3]DQDQDQDQDQB0TI"@ HBXRKDQDQDQDQB0PJ#D1LSD1I 0,QDQDQC\TJR%BP$IBP#H D#]DQDP!!IBP$P$H6K2<''IBP%QDQDFQ0"H$IBKRH"
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17050
H"T FTQDQAHOCP5BP$IBP" SE!!EDQDPYEQTUP$H0NC JL3L5QDQDIQX\GDIBB30<OC0<OC1DQC\LG!!9BP$L<O#8>O#8;QDQDJ04XK"89OS9@PD@>OTQDQDP+
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17051
C!!4 BPHGA TFA0IDQDQDQC\_E3PCPS<@@DDAQDQDQDQDQDQDAC(:N#(:BDQDQDQDQDQDQ@ HB@ HB@!!DQDQDQDQDQDQDQDQDQDQDQ@@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17052
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[231 96 97 200 41 48 200 48 52 200 41 49 200 29 44 242 77 92 241 77 92 245 118 128 200 25 42 217 201 182 219 204 186 230 219 206 140 89 32 142 92 36 142 93 37 143 93 38 144 94 39 144 95 40 145 96 41 146 97 43 147 99 45 147 100 47 148 101 48 149 103 50 152 107 56 153 108 57 154 109 60 155 111 62 158 115 67 158 116 68 159 117 69 160 118 71 161 119 73 163 123 77 165 125 81 165 126 81 166 127 83 169 131 88 170 133 91 176 141 102 178 144 106 180 147 110 185 154 119 186 156 122 187 157 124 190 161 129 194 167 137 199 174 146 204 182 157 206 184 160 209 188 165 212 193 172 213 195 174 214 196 176 216 199 180 225 211 196 226 213 199 231 220 208 231 147 139 201 67 60 201 71 62 201 62 58 246 146 142 231 96 96 245 124 124 237 131 131 255 254 254 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?>_?8??!!?>C?8@? C>@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17053
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17054
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17055
javaPrivateInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17056
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17057
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17058
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17059
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17060
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17061
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17062
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17063
     self javaPrivateInterfaceBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17064
     ImageEditor openOnClass:self andSelector:#javaPrivateInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17065
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17066
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17067
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17068
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17069
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17070
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17071
        constantNamed:'GenericToolbarIconLibrary class javaPrivateInterfaceBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17072
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17073
TUEQTTPVCP,NE$QQTUEQTUEQTS<KD!!TUEQHKO5EQTUEQTS<3OQ-GQ4\[OSL?TUEQTRD,NQ1PTEAPB!!0;KBEQTUDVD3 8FEAPBS 8NAPYTUEQC4XLC@1PTDLL
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17074
CCT5C5EQTR<(J"\''TE@ I2\*IB9QTUDOKR,&I%APPT@^GQ5BTUEQFSH0LTUPTD)JR$)JR$)QTRH#M#)PTEAJSD1LSD1ITUEQF"TQOC0_R41NS$9LR5EQTUDZ
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17075
JS\PO HGA TFA0IQTUEQTTPWMA<CS44@@D<ATUEQTUEQTUEQAD!!HRD!!HBEEQTUEQTUEQTP HB@ HB@!!QTUEQTUEQTUEQTUEQTUEQTP@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17076
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[231 96 97 200 41 48 200 48 52 200 41 49 200 29 44 242 77 92 241 77 92 245 118 128 200 25 42 197 188 224 215 209 233 112 94 176 111 93 174 114 96 177 113 95 176 115 97 177 117 100 177 120 102 180 125 108 184 125 108 183 130 114 185 143 128 194 151 136 198 149 135 197 158 145 203 156 143 201 159 146 203 165 153 207 168 156 208 168 156 207 167 155 205 171 160 209 174 164 209 220 215 236 226 222 240 85 66 159 90 71 159 93 74 164 90 72 159 89 71 158 92 73 160 94 75 164 93 74 161 93 75 161 97 79 167 96 79 166 97 79 166 98 80 167 98 80 165 96 79 162 101 83 168 101 84 169 108 91 173 107 91 172 111 94 174 117 100 178 131 116 188 137 122 191 134 120 187 139 125 191 138 124 190 142 128 193 154 142 199 161 149 204 167 156 207 174 165 210 181 172 216 185 176 218 204 198 228 94 78 161 105 89 172 174 165 212 231 147 139 201 67 60 201 71 62 201 62 58 246 146 142 231 96 96 245 124 124 237 131 131 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?>_?8??!!?>C?8@? C>@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17077
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17078
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17079
javaProtectedClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17080
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17081
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17082
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17083
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17084
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17085
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17086
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17087
     self javaProtectedClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17088
     ImageEditor openOnClass:self andSelector:#javaProtectedClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17089
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17090
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17091
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17092
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17093
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17094
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17095
        constantNamed:'GenericToolbarIconLibrary class javaProtectedClassBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17096
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17097
X6M#X0(PE 8WD@)#X6M#X6M#X0\NM34=OS\@A6M#X6M#X0\\P$5KSD-IO ,GX6M#X0(NPD]"X&I"X$X?@@)#X6LEND!!"X$)DQVICPS QX6M#@2<:X#,9NS$<
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17098
LSD6@6M#X0@UIVH(D1HRD1 _I 5#X6LCGQ)"JQ8!!HP<(T%HHX6M#DR@-LFH+IA%"T$9NT&M#X1,KKCP.X&I"T5APTD=TX6M#A 0"L#L5VUUZV%)ZUUE#X6LF
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17099
EBL*I5!!_XVE!!XU=WX6M#X0(D@PHIW&A XFAVX6M#X6M#X6M#X6M\XFA]X6M#X6M#X6M#X6M#X5-[X6M#X6M#X6M#X6M#X6M#X6M#X0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17100
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[51 130 77 64 137 88 66 139 90 70 143 94 84 152 106 90 155 112 126 179 144 129 181 146 155 198 169 180 212 191 205 226 212 36 118 62 46 124 70 51 129 75 57 134 80 79 149 101 93 158 113 99 162 119 45 124 68 46 125 69 47 125 70 48 126 70 75 146 96 74 144 94 83 151 103 109 168 126 119 174 135 216 233 221 50 128 71 59 135 79 63 137 82 144 191 156 62 136 80 62 135 80 70 142 87 82 150 98 107 167 122 143 190 154 150 194 161 164 203 173 195 221 201 226 239 229 86 154 100 188 216 194 84 151 97 94 156 106 218 234 221 82 150 94 241 247 242 84 151 94 96 160 105 124 178 132 121 174 129 167 204 172 89 153 97 104 164 111 97 160 103 96 158 102 158 198 161 220 234 221 109 166 112 119 174 120 128 179 128 123 177 122 121 174 119 135 184 133 129 179 125 225 239 224 145 190 140 179 210 176 188 217 185 190 218 187 159 199 154 160 199 155 187 216 183 194 220 191 198 222 195 176 208 171 255 242 176 255 233 145 255 234 145 183 147 37 190 156 40 187 152 39 187 153 39 255 230 152 174 135 31 179 141 34 178 141 34 184 147 36 255 222 125 167 126 28 170 129 29 170 130 30 174 135 32 254 219 140 254 222 150 254 207 108 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?8??1??C?8@O@@X@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17101
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17102
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17103
javaProtectedEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17104
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17105
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17106
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17107
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17108
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17109
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17110
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17111
     self javaProtectedEnumBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17112
     ImageEditor openOnClass:self andSelector:#javaProtectedEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17113
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17114
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17115
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17116
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17117
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17118
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17119
        constantNamed:'GenericToolbarIconLibrary class javaProtectedEnumBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17120
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17121
Q4]GQ4P-IQ4$KTQGQ4]GQ4]GQ3\]LB(*J#@\M4]GQ4]GQ3\ZMS4=OS4=LAX7Q4]GQ4P]L3MFQ$YFQ#8*GDQGQ4\+K"8.Q$YCN3,1K"8/Q4]GH2X,KDYFNB0,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17122
KB<*H4]GQ10YE1]FQ$YFQ#H?PQ-GQ4\#G!!8^Q$X<MCPUA@QBQ4]GK1<&I$YFNRYCA@@@AD]GQ4PVJB!!FQ$YFAPHB@ DFQ4]GM!!\"N#)EB0\LC@0LA0MGQ4\6
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17123
FB\*E@(QD1LSD1DIQ4]GQ4P)HBE@DAHRD!!HHQ4]GQ4]GQ4]GQ4\ND!!HOQ4]GQ4]GQ4]GQ4]GQ04MQ4]GQ4]GQ4]GQ4]GQ4]GQ4]GQ0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17124
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 242 176 255 233 145 255 234 145 183 147 37 190 156 40 187 152 39 187 153 39 255 230 152 174 135 31 179 141 34 178 141 34 184 147 36 255 222 125 167 126 28 170 129 29 170 130 30 174 135 32 254 219 140 254 222 150 254 207 108 217 201 182 219 204 186 140 89 32 142 92 36 142 93 37 143 93 38 144 94 39 144 95 40 145 96 41 147 99 45 147 100 47 148 101 48 149 103 50 151 104 53 152 107 56 153 108 57 154 109 60 155 111 62 158 115 67 158 116 68 159 117 69 160 118 71 161 119 73 163 123 77 165 125 81 165 126 81 166 127 83 169 131 88 170 133 91 176 141 102 178 144 106 180 147 110 182 150 114 185 154 119 186 156 122 187 157 124 190 161 129 192 164 133 194 167 137 199 174 146 204 182 157 206 184 160 209 188 165 211 192 170 213 194 173 212 193 172 214 196 176 216 199 180 225 211 196 231 220 208 255 254 254 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?8??1??C?8@O@@X@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17125
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17126
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17127
javaProtectedInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17128
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17129
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17130
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17131
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17132
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17133
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17134
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17135
     self javaProtectedInterfaceBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17136
     ImageEditor openOnClass:self andSelector:#javaProtectedInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17137
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17138
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17139
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17140
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17141
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17142
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17143
        constantNamed:'GenericToolbarIconLibrary class javaProtectedInterfaceBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17144
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17145
U%YVU#4MA@HECS5VU%YVU%YVU# BBP0LC@$BNEYVU%YVU# -M1I@PD@RM248U%YVU!!0&L1QUUUUU@QP5I!!1VU%XMB#H2C5UU@CH2L ,PU%YVA#<C@0MUUS0C
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17146
@2</A%YVU"$"IBD!!UUTYHRDUD2!!VU%XFI2T HEUUN"@VQTT;U%YVDB0*J39UUQ(9QTEAQUYVU!!4^LCQUUUUUQ$MCP4IGU%YVDQ<HM#XWSD!!MST5MRDQVU%XQ
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17147
H3DGF4-RUEQTUEIJU%YVU#4NK"\XTUMST5MIU%YVU%YVU%YVU%YOT5MPU%YVU%YVU%YVU%YVU$9NU%YVU%YVU%YVU%YVU%YVU%YVU @@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17148
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[197 188 224 215 209 233 112 94 176 111 93 174 114 96 177 113 95 176 115 97 177 117 100 177 120 102 180 125 108 184 125 108 183 130 114 185 143 128 194 151 136 198 149 135 197 158 145 203 156 143 201 159 146 203 165 153 207 167 155 207 168 156 208 168 156 207 167 155 205 171 160 209 178 167 213 174 164 209 177 167 212 183 173 216 220 215 236 226 222 240 85 66 159 93 74 164 90 72 159 89 71 158 92 73 160 94 75 164 93 74 161 93 75 161 97 79 167 96 79 166 97 79 166 98 80 167 98 80 165 96 79 162 101 83 168 101 84 169 108 91 173 107 91 172 111 94 174 117 100 178 131 116 188 137 122 191 134 120 187 139 125 191 138 124 190 142 128 193 161 149 204 169 159 207 174 165 210 181 172 216 185 176 218 204 198 228 94 78 161 105 89 172 174 165 212 255 242 176 255 233 145 255 234 145 183 147 37 190 156 40 187 152 39 187 153 39 255 230 152 174 135 31 179 141 34 178 141 34 184 147 36 255 222 125 167 126 28 170 129 29 170 130 30 174 135 32 254 219 140 254 222 150 254 207 108 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?8??1??C?8@O@@X@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17149
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17150
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17151
javaPublicClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17152
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17153
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17154
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17155
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17156
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17157
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17158
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17159
     self javaClassBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17160
     ImageEditor openOnClass:self andSelector:#javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17161
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17162
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17163
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17164
    <resource: #programImage>
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17165
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17166
    ^self javaClassBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17167
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17168
    "Created: / 23-10-2011 / 14:41:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17169
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17170
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17171
javaPublicEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17172
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17173
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17174
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17175
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17176
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17177
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17178
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17179
     self javaPublicEnumBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17180
     ImageEditor openOnClass:self andSelector:#javaPublicEnumBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17181
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17182
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17183
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17184
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17185
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17186
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17187
        constantNamed:'GenericToolbarIconLibrary class javaPublicEnumBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17188
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17189
LC@0LB8ZD@ OF"80LC@0LC@0LBTHGQXVE!!4FIS@0LC@0LBTDH2,+J2,+GP@%LC@0LB8HHRD/K2</K20VA"80LC@WF1,[K2<-JR$_F1,\LC@0C!!DYFR</I!!$Y
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17190
FQ0VC#@0L@XC@PD/K2</K2@GB T0LC@NBP$IK2<*H"H[BP$NLC@0G@(QDR</I1DQDQDQG#@0LB8@D1L/K2</K20V@B80LC@0I@DMJB (JB ]A2P0LC@0LC@$
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17191
@!!HVEQXR@"P0LC@0LC@0LB8TB00KFB80LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0LC@0L@@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17192
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[140 89 32 142 92 36 142 93 37 143 93 38 144 94 39 144 95 40 145 96 41 146 97 43 147 99 45 147 100 47 148 101 48 149 103 50 151 104 53 152 107 56 153 108 57 154 109 60 155 111 62 158 115 67 158 116 68 159 117 69 160 118 71 161 119 72 161 119 73 163 123 77 164 124 79 165 125 81 165 126 81 166 127 83 169 131 88 170 133 91 175 139 100 176 141 102 178 144 106 180 147 110 182 150 114 185 154 119 186 156 122 187 157 124 190 161 129 192 164 133 194 167 137 199 174 146 204 182 157 206 184 160 209 188 165 216 199 180 225 211 196 255 254 254 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?0?>A?0C>@@@@@@@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17193
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17194
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17195
javaPublicInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17196
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17197
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17198
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17199
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17200
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17201
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17202
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17203
     self javaPublicInterfaceBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17204
     ImageEditor openOnClass:self andSelector:#javaPublicInterfaceBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17205
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17206
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17207
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17208
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17209
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17210
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17211
        constantNamed:'GenericToolbarIconLibrary class javaPublicInterfaceBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17212
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17213
P4MCP38NAPLFC#9CP4MCP4MCP3,CB 4MCP(CN4MCP4MCP3,.N!!UAPTDUN"8;P4MCP1$%M!!YBP$IB@!!X8IQ%CP4LNB3T5DTIB@CT5MP0RP4MCA4@DA@QBP#4D
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17214
AC@0A4MCP2  H!!<_P$HWG1<"GB]CP4LGI"P^G$IBOA8_H"LGP4MCD"4*J3=BP!! ?J2,,EDMCP1([L3]BP$IB@S\2F1%CP4MCD14INS$9NS$1JQMCP4MCP4LS
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17215
HSPHB@ 4HQMCP4MCP4MCP38OK2X/DC9CP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP4MCP0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17216
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[197 188 224 197 189 222 215 209 233 112 94 176 111 93 174 114 96 177 113 95 176 115 97 177 117 100 177 120 102 180 125 108 184 125 108 183 130 114 185 143 128 194 151 136 198 149 135 197 152 138 199 158 145 203 156 143 201 159 146 203 162 150 204 165 153 207 168 156 208 174 164 209 177 167 212 220 215 236 226 222 240 85 66 159 90 71 159 93 74 164 90 72 159 89 71 158 92 73 160 94 75 164 93 74 161 92 74 160 93 75 161 97 79 167 96 79 166 97 79 166 98 80 167 100 82 168 98 80 165 96 79 162 100 82 167 101 83 168 101 84 169 108 91 173 107 91 172 108 92 172 113 96 177 111 94 174 117 100 178 131 116 188 137 122 191 134 120 187 139 125 191 138 124 190 142 128 193 161 149 204 174 165 210 185 176 218 204 198 228 94 78 161 105 89 172 174 165 212 255 255 255 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?0?>A?0C>@@@@@@@@@b') ; yourself); yourself]
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17217
!
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17218
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17219
javaRuntimeExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17220
    "This resource specification was automatically generated
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17221
     by the ImageEditor of ST/X."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17222
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17223
    "Do not manually edit this!! If it is corrupted,
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17224
     the ImageEditor may not be able to read the specification."
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17225
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17226
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17227
     self javaRuntimeExceptionBrowserIcon inspect
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17228
     ImageEditor openOnClass:self andSelector:#javaRuntimeExceptionBrowserIcon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17229
     Icon flushCachedIcons
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17230
    "
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17231
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17232
    <resource: #image>
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17233
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17234
    ^Icon
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17235
        constantNamed:'GenericToolbarIconLibrary class javaRuntimeExceptionBrowserIcon'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17236
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17237
D1LSD1LMB ,SD1LSD1LSD1LSD1LSCP(KD1LSD1LSD1LSD1LSD04JB1LSB@8NBALSD1LSD1LMB ,SD08OC08SD1LSD1LSCP(KD1LND!!DND1LSD1LSD04JB1LS
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17238
D@@@DALSD1LSCP0LB 0SD0DB@0DSD1LSD04KB 0SD1LGAPPGD1LSD1LSD1LSD1LSA 8NA!!LSD1LSD1LSD1LSD1LGA1LSD1LSD1LSD1LSD1LSD1LSD1LSD1LS
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17239
D1LSD1LSBP8NBQLSD1LSD1LSD1LSD08QDP8SD1LSD1LSD1LSD1LGDQDGD1LSD1LSD1LSD1LSB@\GBALSD1LSD1LSD1LSD1LSD1LSD0@@@@@@@@@@@@@@@@@@
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17240
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[244 120 123 200 39 47 244 102 111 243 103 111 243 88 99 242 87 99 233 164 170 200 25 42 242 197 202 244 208 212 40 98 150 81 128 170 110 150 185 194 211 226 201 71 62 246 146 142 201 58 56 246 136 134 246 135 135 255 255 255]; mask:((ImageMask new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A0@G@@\<A30GO@\<G30^O@@<@A @@@@<@C0@O@@<@@@b') ; yourself); yourself]
5006
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17241
!
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17242
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17243
javaUndeclaredClassBrowserIcon
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17244
    "This resource specification was automatically generated
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17245
     by the ImageEditor of ST/X."
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17246
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17247
    "Do not manually edit this!! If it is corrupted,
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17248
     the ImageEditor may not be able to read the specification."
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17249
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17250
    "
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17251
     self javaUndeclaredClassBrowserIcon inspect
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17252
     ImageEditor openOnClass:self andSelector:#javaUndeclaredClassBrowserIcon
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17253
     Icon flushCachedIcons
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17254
    "
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17255
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17256
    <resource: #image>
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17257
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17258
    ^Icon
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17259
        constantNamed:'GenericToolbarIconLibrary javaUndeclaredClassBrowserIcon'
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17260
        ifAbsentPut:[(Depth8Image new) width:16; height:16; bits:(ByteArray fromPackedString:'
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17261
@@@@@@DB@0PE@ D@@@@@@@@@@@XDA0 HB@\IA @@@@@@@@XJB00MC 4OB1@F@@@@@@DDDQH@@@@@@ALTBPD@@@@UE!!\@@A YF @[GAX]@@@@G!!< @BD"H"H#
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17262
IBP%G @@@@$&I0@(JR(*JR,,KR8@@@@^K3@@LSH3L3P5M#\^@@@@GS 9N @;OC4@O#=@PP@@@@DPP#AC@@@@QDT%D@D@@@@@Q$]HRT)KR$%LSTX@@@@@@@AF
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17263
S$<%TBUOS$X@@@@@@@@@@@EQT%MRU@D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 17264
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[255 255 255 205 205 205 134 134 134 119 119 119 105 105 105 118 118 118 161 161 161 140 140 140 152 152 152 101 101 101 98 98 98 158 158 158 194 194 194 209 209 209 212 212 212 182 182 182 87 87 87 152 152 152 206 206 206 205 205 205 155 155 155 131 131 131 135 135 135 182 182 182 204 204 204 171 171 171 197 197 197 233 233 233 164 164 164 138 138 138 116 116 116 124 124 124 182 182 182 228 228 228 133 133 133 143 143 143 138 138 138 128 128 128 97 97 97 172 172 172 211 211 211 95 95 95 94 94 94 100 100 100 102 102 102 108 108 108 100 100 100 106 106 106 153 153 153 234 234 234 109 109 109 107 107 107 186 186 186 193 193 193 130 130 130 115 115 115 108 108 108 132 132 132 244 244 244 205 205 205 144 144 144 171 171 171 244 244 244 132 132 132 124 124 124 146 146 146 125 125 125 227 227 227 236 236 236 169 169 169 159 159 159 95 95 95 114 114 114 135 135 135 157 157 157 164 164 164 127 127 127 102 102 102 96 96 96 124 124 124 127 127 127 127 127 127 110 110 110 112 112 112 132 132 132]; mask:((ImageMask new) width:16; height:16; bits:(ByteArray fromPackedString:'C>@_<C?8_?1??G?<_?1??G?<_?0?>A?0C>@@@@@@@@@b') ; yourself); yourself]
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 17265
! !
4496
2596bbef22f9 Added some icons for merge tool.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4474
diff changeset
 17266
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17267
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-UIPainter'!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17268
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17269
copyWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17270
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17271
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17272
    ^ self copy22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17273
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17274
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17275
cutWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17276
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17277
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17278
    ^ self cut22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17279
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17280
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17281
deleteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17282
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17283
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17284
    ^ self delete22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17285
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17286
3883
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17287
gridAlignIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17288
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17289
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17290
    ^ self gridAlign16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17291
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17292
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17293
gridIcon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17294
    <resource: #programImage>
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17295
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17296
    ^ self grid16x16Icon
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17297
!
c270d80bf69f grid icons
Claus Gittinger <cg@exept.de>
parents: 3882
diff changeset
 17298
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17299
loadFromMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17300
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17301
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17302
    ^ self loadFromMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17303
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17304
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17305
moveWidgetDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17306
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17307
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17308
    ^ self down22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17309
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17310
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17311
moveWidgetDownRightIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17312
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17313
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17314
    ^ self downRight22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17315
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17316
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17317
moveWidgetLeftDownIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17318
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17319
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17320
    ^ self leftDown22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17321
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17322
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17323
moveWidgetUpIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17324
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17325
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17326
    ^ self up22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17327
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17328
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17329
newWindowSpecIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17330
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17331
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17332
    ^ self newWindowSpec24x24Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17333
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17334
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17335
pasteWidgetIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17336
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17337
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17338
    ^ self paste22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17339
!
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17340
3099
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 17341
saveAsMethodAsIcon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 17342
    <resource: #programImage>
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 17343
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 17344
    ^ self saveAsMethod22x22Icon
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 17345
!
54cc24372bf7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3098
diff changeset
 17346
3083
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17347
saveAsMethodIcon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17348
    <resource: #programImage>
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17349
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17350
    ^ self saveAsMethod22x22Icon
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17351
! !
dcc10df4f87e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3080
diff changeset
 17352
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17353
!GenericToolbarIconLibrary class methodsFor:'image specs-tools-misc'!
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17354
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17355
errorIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17356
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17357
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17358
    ^ self error32x32Icon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17359
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17360
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17361
newDataSetIcon
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17362
    <resource: #programImage>
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17363
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17364
    ^ self newDataSet24x24Icon
3271
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17365
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17366
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17367
newRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17368
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17369
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17370
    ^ self newMenuItem22x22Icon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17371
!
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17372
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17373
removeRowIcon
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17374
    <resource: #programImage>
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17375
41c18a8008b7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3239
diff changeset
 17376
    ^ self cutMenuItem22x22Icon
3722
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17377
!
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17378
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17379
warnIcon
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17380
    <resource: #programImage>
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17381
c156e76104a8 SOme icons have to be defined in GenericToolbarIconLibrary
Stefan Vogel <sv@exept.de>
parents: 3719
diff changeset
 17382
    ^ self warn32x32Icon
3089
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17383
! !
7a518cec4d20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3088
diff changeset
 17384
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17385
!GenericToolbarIconLibrary class methodsFor:'image specs-versions'!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17386
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17387
versionA12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17388
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17389
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17390
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17391
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17392
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17393
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17394
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17395
     self versionA12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17396
     ImageEditor openOnClass:self andSelector:#versionA12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17397
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17398
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17399
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17400
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17401
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17402
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17403
        constantNamed:'GenericToolbarIconLibrary versionA12x12'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17404
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17405
O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<+KR8/LCD2L3<?O3<?J"T%IRX''JB0?O3<?O18 HRD!!H2P)O3<?O3<RE1\[F14_H#<?O3<?A@LLD1DQE!!0?O3<?
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17406
O0HPCP(FB@TNO3<?O3<GF!!$XEQPMBS<?O3<?@@<NC ,KB0D?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17407
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[118 148 84 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 112 173 54 107 176 55 115 173 77 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 113 182 61 127 179 53 129 181 55 125 185 58 127 186 59 129 187 51 135 186 52 134 184 81 136 187 53 141 183 81 138 188 54 145 187 46 148 190 49 150 189 73 158 193 53 154 195 54 162 195 47 165 198 50 169 202 54 171 204 56 171 202 80 168 203 102 191 213 121 193 221 91 201 229 99 203 231 101 208 231 109 215 239 123 217 242 134 226 244 137 235 253 145 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@O<@?0C?@O<@?0C?@O<@?0@@@@@@@@@b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17408
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17409
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17410
versionA16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17411
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17412
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17413
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17414
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17415
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17416
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17417
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17418
     self versionA16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17419
     ImageEditor openOnClass:self andSelector:#versionA16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17420
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17421
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17422
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17423
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17424
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17425
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17426
        constantNamed:'GenericToolbarIconLibrary versionA16x16'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17427
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17428
DLQ;_W7F1<#R4-_T5]WZG2[%9._&:>/,;^;/<OG2<<T 7;Z:/K6<0LGA8NK#9N)9F-6(+*:1-[V5*;V>/;?"^A''P^*J#+[B0*KF7-;F+02 X2(2R%9^ ^*N%
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17429
(:Z0+]0''E<&H H*J")JU%)ZU)9^''IQY-SFQ$"H"@ XFJ$)JR''"PRM$A@QU]XT5NB (RD Y0#B3\,LR9@QDQERT%WVE!!1H 1-TC$9LSD1K#8.QDUE[BDN[51[
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17430
VT=OO#T>K"8.KC8^CGY&YV!!"W%1[T%APTC)+GAON+I*X&I.[Z&%)W%9^\A4U6M;O3,;L3G]7]''I3]WT[@ADOBP$IBP$EAPTB@ ,V@P@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17431
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[30 49 18 35 64 22 53 108 28 58 107 28 59 107 28 57 108 28 59 108 29 59 109 29 59 110 30 60 109 29 61 110 30 60 106 33 63 106 37 62 106 38 59 103 43 67 108 28 70 87 32 70 101 35 64 106 35 69 106 34 68 106 35 70 100 40 68 108 41 77 112 43 82 115 39 86 118 39 94 121 45 75 117 54 71 126 50 72 123 50 74 126 50 103 117 41 98 124 43 80 129 54 87 133 53 98 132 47 106 136 45 111 140 47 109 131 49 119 146 52 124 150 50 111 167 50 106 171 49 108 170 50 108 170 51 109 171 51 107 169 52 105 171 53 106 170 52 106 169 54 108 170 52 111 171 53 108 172 53 111 173 55 107 162 63 107 167 62 108 170 57 105 173 56 107 175 56 107 175 57 109 174 57 109 175 57 109 173 58 108 170 60 112 171 53 114 170 52 112 172 53 115 173 52 114 172 54 117 173 52 116 172 53 118 173 53 117 173 54 120 174 53 120 174 54 121 175 54 121 174 56 108 176 54 108 176 55 107 177 56 108 177 56 109 178 57 111 179 59 125 177 50 124 176 51 126 178 51 123 176 53 124 176 54 124 177 54 112 177 58 113 179 58 113 179 59 118 179 58 117 180 57 118 181 56 116 181 58 119 182 58 117 178 62 117 183 60 126 179 56 125 178 58 123 185 57 127 186 57 121 184 60 121 184 61 122 185 60 125 185 61 108 172 64 116 174 67 115 168 69 113 172 69 118 174 76 113 176 70 125 179 65 123 183 70 123 183 71 124 184 71 125 182 74 125 183 74 124 184 72 131 155 47 138 159 53 146 189 44 146 165 61 144 168 60 146 169 61 130 182 48 131 182 50 131 182 51 132 183 49 129 178 52 131 178 53 132 179 53 131 180 52 129 181 54 131 182 54 131 183 54 134 184 51 133 184 53 134 185 54 139 187 48 136 186 50 142 187 50 136 185 53 138 185 52 136 186 53 139 187 52 138 187 53 141 187 53 142 187 54 140 188 52 143 188 52 130 188 56 131 189 56 133 190 56 128 187 61 135 184 63 129 188 60 141 188 60 146 188 48 145 188 51 144 189 51 147 189 50 148 190 49 150 190 50 151 191 50 151 191 51 145 189 56 154 192 45 152 193 46 158 196 44 159 197 47 137 193 55 150 192 50 154 192 49 152 193 50 152 193 51 157 194 48 156 194 49 158 196 48 159 197 48 159 197 49 166 198 43 160 195 49 160 198 48 167 199 51 169 199 49 170 198 51 170 199 53 171 199 53 163 200 48 165 200 50 174 203 57 175 203 58 175 203 59 168 202 63 141 159 72 149 167 68 147 172 66 149 174 71 152 173 75 129 179 70 138 184 65 130 187 75 131 187 75 131 188 74 134 190 73 137 187 72 146 188 65 149 191 64 154 174 81 154 175 81 154 175 89 158 174 89 128 181 87 156 176 87 144 186 87 160 175 91 163 176 89 139 193 75 158 196 67 157 193 69 145 196 77 168 201 69 177 204 64 177 207 68 183 208 69 186 211 72 190 214 79 190 218 95 193 221 77 194 221 80 195 221 81 196 223 86 194 218 92 197 224 89 201 226 93 205 227 99 206 229 104 207 230 110 210 233 115 215 236 118 220 239 126 226 243 131]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17432
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17433
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17434
versionA24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17435
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17436
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17437
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17438
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17439
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17440
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17441
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17442
     self versionA24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17443
     ImageEditor openOnClass:self andSelector:#versionA24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17444
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17445
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17446
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17447
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17448
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17449
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17450
        constantNamed:'GenericToolbarIconLibrary versionA24x24'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17451
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17452
@",2L3T8MCP:O#(<OC0<O349M3,7M#XEG.[4;/G1<_O6=/W7>_''9>?/;?O3=??80G>O$9>#(:N#):^''/;^;0<OK5=?_8>O(0FMSH2</M3\7Q3]GW5=_W6-3!!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17453
8.K+9^0/G]''J,<C@0LCH0LCS2L#H2MOU6MWW7.(1GKB1.*65.LGA0\GA0\GA0\GN2\CH4>@.F:2/)Z6-+Z65.K.8.++@0LC@0LB=4=4-F96#(JJ#+Z6-+Z6-
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17454
+Z6;.;.;.;::1=X,FX.Z(I2\''I2#(:J"+Z6-+Z6-+Z6-.]@,FXVF&X&I&Y&Y&ZF!!(:N"(*N#+:>-+<H*E7A(!!(RD!!HRO&Y&Y&Y&Y&Y2\(:F );P)E%YJXGE9
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17455
^W6D!!HR@"X&I"Y&Y$)&Y&[P''D4%AQ6A Y6=/]&=/]''ZC 8NC 8&I%JP&E$%AT4!!HT6E*\WE/[6=/[6=6]''6@!!I,$EDI]S5=PT5MSU5]\XVA''Y6]''Z&==Z'',(
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17456
E$%-YE=_UT9KR4!!HSEATU6E!!Y6)*ZG,%DDY4X65.X6Q_W55]T5APT5MSSD1SUFX"B4VH[F13YV9$YFQ$YVE#W5]ST5MSSE("C5J*%YFN!!8I<\61,[&9.[&Q$
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17457
YFQ$WVH#D5F2$I^X%YVQ$YFQ[G13\7M.[&Q2WU("DU/C*9:^%9^W&IVX&I"U$YE:^''),^E$!!EWW_6=KR3LR</K2<)*Z&)*Z&)*Z*-8D @4BJZ6-;W&Y&W&Y^
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17458
W%9^W%9^W%9Q_$PZ@@PFCP(IC@8NC@8LC@0LC@$IBP$LCP A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 10 4 0 21 0 16 31 1 26 46 7 30 55 9 45 56 0 33 62 1 24 66 0 34 64 12 18 70 0 25 68 0 26 66 19 26 69 0 33 68 0 28 71 1 31 69 15 29 69 22 39 68 8 29 72 1 34 70 9 29 72 10 39 69 16 36 72 11 36 73 20 51 72 6 46 74 15 42 74 27 50 77 10 54 76 18 57 78 12 64 79 15 63 83 10 51 88 34 47 90 28 54 97 35 48 99 35 64 98 30 58 101 38 73 99 25 77 102 29 66 107 37 81 105 25 85 109 29 88 109 44 90 114 34 94 117 29 96 118 21 102 118 23 102 119 32 100 122 26 111 123 45 108 125 38 108 129 34 112 128 34 116 127 49 116 129 57 111 133 38 113 132 59 112 135 47 119 132 60 116 134 54 116 135 62 114 137 49 118 136 56 118 148 84 103 159 57 102 161 65 103 165 45 116 158 86 112 160 79 107 162 80 111 165 47 106 167 47 110 163 75 108 165 62 105 167 56 107 168 48 108 169 49 101 171 50 104 171 42 106 169 57 115 166 71 113 166 77 109 170 51 107 170 58 101 172 59 117 165 84 110 171 52 110 169 72 108 169 79 104 171 73 122 166 72 111 172 53 109 172 60 111 170 74 105 174 53 118 171 53 112 173 54 106 173 75 111 174 62 107 176 55 114 175 56 115 173 77 120 174 56 119 174 64 108 178 57 122 175 57 124 173 71 116 177 58 114 177 65 110 179 58 124 176 50 127 172 85 123 176 58 112 180 51 111 180 59 120 176 73 133 171 85 125 177 51 118 179 59 116 179 67 124 178 60 121 180 53 119 178 81 113 182 61 127 179 53 130 175 87 133 178 53 129 180 45 122 178 95 115 184 63 135 179 55 129 181 55 134 177 83 128 181 63 122 183 63 124 181 77 131 182 47 138 176 90 136 178 77 124 184 56 132 183 48 119 186 57 131 183 57 127 185 49 125 185 58 139 182 50 133 184 49 132 184 58 127 186 59 134 185 50 129 187 51 128 187 60 135 186 52 134 186 60 134 184 81 136 187 53 141 183 81 131 189 53 142 186 53 139 188 45 138 188 54 145 187 46 144 187 55 144 185 76 148 189 37 130 191 71 140 190 56 147 189 47 146 189 56 129 192 79 137 193 49 145 187 85 148 190 49 131 193 73 147 190 58 151 186 86 153 189 58 138 192 73 156 190 40 150 189 73 151 192 51 140 194 75 137 194 89 153 194 53 151 194 62 154 195 44 158 193 53 142 196 77 157 196 35 154 195 54 161 194 45 162 195 47 156 197 47 156 194 79 146 198 72 141 200 73 164 197 49 158 199 49 157 199 58 165 198 50 160 200 50 164 198 59 167 199 41 149 201 75 171 197 51 161 201 41 166 200 52 166 197 83 173 199 53 152 204 78 169 202 54 167 201 93 171 204 56 171 202 80 177 203 58 172 205 57 168 203 102 177 205 68 158 210 83 184 204 69 176 206 84 181 208 71 165 211 93 181 209 80 188 209 73 191 211 76 181 214 105 189 216 78 193 215 95 191 213 121 189 220 65 193 219 73 194 221 84 193 221 91 199 220 92 198 221 100 202 222 86 203 224 96 199 226 88 205 226 98 201 229 99 205 228 106 203 231 101 206 230 115 208 231 109 206 234 104 212 235 113 221 237 124 215 239 123 220 242 120 217 242 134 226 244 137 226 247 146 235 253 145 241 254 154]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17459
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17460
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17461
versionAB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17462
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17463
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17464
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17465
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17466
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17467
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17468
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17469
     self versionAB12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17470
     ImageEditor openOnClass:self andSelector:#versionAB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17471
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17472
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17473
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17474
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17475
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17476
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17477
        constantNamed:'GenericToolbarIconLibrary versionAB12x12'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17478
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17479
_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=FS%AQUEUVV''=?_7=?O",+J284NT!!?_7=?_1<"H2L#JB$<_7=?_7<SFA \GA8 IE]XVU-RA@LMEAHRE15LST=O
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17480
T0HQC (FB@TOQ4%IR$,GF1(YE!!TNBTEBP4ME@A@OC0,KB0D;OS4?NG=?_7=?L3D*IRX&I21?_7=?_4@:N#X1LR4!!_7=?_7=DMS\2L"<0C@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17481
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[118 148 84 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 184 149 76 112 173 54 107 176 55 115 173 77 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 113 182 61 127 179 53 129 181 55 125 185 58 127 186 59 129 187 51 135 186 52 134 184 81 136 187 53 141 183 81 138 188 54 214 165 59 145 187 46 148 190 49 150 189 73 234 173 0 235 174 0 231 176 0 158 193 53 154 195 54 238 177 1 162 195 47 224 175 69 240 179 7 165 198 50 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 169 202 54 232 185 42 242 186 19 232 186 53 226 187 61 171 204 56 245 188 0 233 190 16 171 202 80 236 192 0 168 203 102 237 193 0 243 193 28 237 199 6 240 201 0 244 204 0 240 196 94 231 202 64 191 213 121 244 210 3 193 221 91 250 215 0 247 218 0 239 214 66 245 222 0 241 225 0 201 229 99 245 228 5 203 231 101 208 231 109 233 227 112 247 234 74 215 239 123 217 242 134 226 244 137 255 248 86 255 249 95 255 251 104 235 253 145 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@O<@?0C?@O?8??#?>O?8?? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17482
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17483
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17484
versionABBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17485
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17486
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17487
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17488
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17489
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17490
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17491
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17492
     self versionABBase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17493
     ImageEditor openOnClass:self andSelector:#versionABBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17494
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17495
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17496
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17497
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17498
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17499
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17500
        constantNamed:'GenericToolbarIconLibrary versionABBase12x12'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17501
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17502
_7=?_4!!QU51]YF!!@_7=?_7<+H"T''KCQPN''=^Y6)+[&=0]A\_H!!!!?T30<OC=FSF@EA 4C_281L#H2NC%O@PDB@G<\H2L)JR4/L7E2\7U,B $TGQ,[HR)%Y&%)
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17503
[P ZEQDLC0,VW6E!!X&LNJBX$HA8UDEYXVU%[AA$VE!!HRD ]NT%ITR7=?_7=?QTL;MSX6M35?_7=?_5UMST%CP380_7=?_7=ZQ4)DQDEBD0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17504
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[45 133 171 11 149 204 25 153 208 65 148 187 118 148 84 42 161 216 46 163 218 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 55 168 224 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 184 149 76 112 173 54 107 176 55 115 173 77 61 175 225 96 168 202 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 65 178 228 113 182 61 127 179 53 80 177 228 129 181 55 125 185 58 92 179 225 127 186 59 93 180 226 129 187 51 135 186 52 134 184 81 75 186 235 95 181 227 136 187 53 141 183 81 138 188 54 214 165 59 145 187 46 148 190 49 150 189 73 102 188 234 234 173 0 235 174 0 231 176 0 158 193 53 154 195 54 116 191 219 238 177 1 162 195 47 224 175 69 240 179 7 165 198 50 149 189 203 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 169 202 54 232 185 42 137 196 220 242 186 19 232 186 53 226 187 61 171 204 56 245 188 0 233 190 16 171 202 80 114 203 242 126 201 229 236 192 0 168 203 102 237 193 0 243 193 28 237 199 6 133 208 236 240 201 0 244 204 0 240 196 94 231 202 64 146 211 240 148 213 243 191 213 121 244 210 3 193 221 91 250 215 0 247 218 0 239 214 66 161 220 245 245 222 0 241 225 0 201 229 99 170 224 243 245 228 5 203 231 101 208 231 109 233 227 112 247 234 74 215 239 123 217 242 134 226 244 137 255 248 86 255 249 95 255 251 104 235 253 145 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<O?0??C?<O?8??#?>O?8?? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17505
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17506
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17507
versionABase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17508
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17509
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17510
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17511
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17512
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17513
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17514
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17515
     self versionABase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17516
     ImageEditor openOnClass:self andSelector:#versionABase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17517
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17518
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17519
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17520
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17521
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17522
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17523
        constantNamed:'GenericToolbarIconLibrary versionABase12x12'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17524
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17525
_7=?_4UIR41MTEIC_7=?_7<5KB<1M#5HPG=NTUMTUUYWVBD)KBI?R$EAPTIDQ$<PDQ N_3 :N3,;O#=GB (MBG<&KR43L3\9O@LEBPE?EQP^I2T%J3PGA P@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17526
_1L$G10WF!!X C@0K@''<YL#@.J" _F7=?_7=?C2L HA4]GQI?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_7=?_0@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17527
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[16 117 155 0 123 166 48 114 148 9 133 194 0 137 204 17 135 197 0 141 202 0 143 204 45 133 171 29 139 201 11 149 204 33 143 199 39 146 202 25 153 208 65 148 187 118 148 84 42 161 216 46 163 218 116 158 86 107 162 80 106 167 47 110 163 75 107 168 48 106 169 57 55 168 224 115 166 71 109 170 51 104 171 73 109 172 60 111 170 74 112 173 54 107 176 55 115 173 77 61 175 225 96 168 202 124 173 71 114 177 65 124 176 50 127 172 85 123 176 58 111 180 59 65 178 228 113 182 61 127 179 53 80 177 228 129 181 55 125 185 58 92 179 225 127 186 59 93 180 226 129 187 51 135 186 52 134 184 81 75 186 235 95 181 227 136 187 53 141 183 81 138 188 54 145 187 46 148 190 49 150 189 73 102 188 234 158 193 53 154 195 54 116 191 219 162 195 47 165 198 50 149 189 203 169 202 54 137 196 220 171 204 56 171 202 80 114 203 242 126 201 229 168 203 102 133 208 236 146 211 240 148 213 243 191 213 121 193 221 91 161 220 245 201 229 99 170 224 243 203 231 101 208 231 109 215 239 123 217 242 134 226 244 137 235 253 145 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<O?0??C?<O?0??C?<O<@?0@@@@@@@@@b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17528
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17529
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17530
versionB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17531
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17532
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17533
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17534
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17535
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17536
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17537
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17538
     self versionB12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17539
     ImageEditor openOnClass:self andSelector:#versionB12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17540
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17541
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17542
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17543
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17544
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17545
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17546
        constantNamed:'GenericToolbarIconLibrary versionB12x12'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17547
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17548
O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O3<?O20+KR0.K3@)O3<?O3<&H2T%I2 (
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17549
J#<?O3<?HQ0_HBH"H2P?O3<?O1\VFQ([GA0^O3<?O3<G@ $TEQTVD#<?O3<?C 0E@ LCA@X?O3<?O1 SD1@LC@ AO3<?O3<]C1DMCP(K@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17550
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[184 149 76 214 165 59 234 173 0 235 174 0 231 176 0 238 177 1 224 175 69 240 174 37 240 179 7 232 184 6 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 232 185 42 242 186 19 232 186 53 226 187 61 245 188 0 233 190 16 236 192 0 237 193 0 248 191 29 243 193 28 242 197 9 237 199 6 240 201 0 244 204 0 240 196 94 231 202 64 246 206 0 244 210 3 249 210 32 250 215 0 247 218 0 239 214 66 245 222 0 246 223 0 241 225 0 245 228 5 233 227 112 247 234 74 255 245 52 255 248 86 254 251 69 255 249 95 255 251 104 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@_8A? G>@_8A? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17551
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17552
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17553
versionB16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17554
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17555
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17556
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17557
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17558
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17559
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17560
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17561
     self versionB16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17562
     ImageEditor openOnClass:self andSelector:#versionB16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17563
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17564
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17565
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17566
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17567
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17568
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17569
        constantNamed:'GenericToolbarIconLibrary versionB16x16'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17570
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17571
GRP H"L%]GU6;N;.:^/*@]#$8^K#9^_(<OG2</S6=Q0-4\KM3\/Q4=SU5]_ 9.<\KLV5.++B.++B0,KB3<?UF2:7(:N2-[V8.LR81LSB2!!$/*).['':N!!([J/
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17572
+;J5-\$XJ:&O#)R[&9:#&9>_(ZGHCB).SIFV$X*L"8:'')9"[6  )\C]FQ49KR8VE!!XVT%-$II7@6LS9DQD9NT$-LSH):BRY1MS(8NC 7OC0<P5EN^0\(\&Y"
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17573
W$Y^W$A@MSD1LW\FJLY[ZF](X&I"W59UT5M8AQ?F%5ZW%6)*Y5%YY''I"^PL!!7-7G1<]=_W6C XFA_HPD@!!\MCQTQDQDQEQTUEP<K@@@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17574
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[64 38 12 86 84 25 102 69 21 120 84 22 113 81 27 127 87 25 126 89 26 127 93 27 127 97 27 129 97 24 128 100 24 140 102 31 129 106 25 151 107 17 150 107 19 151 106 22 153 104 19 153 104 20 153 105 20 152 106 21 153 104 22 152 104 23 153 104 23 150 108 28 134 114 25 135 117 24 135 126 31 136 124 25 131 125 41 137 131 31 191 150 12 189 151 23 188 183 31 181 147 49 189 184 35 191 185 39 189 182 42 191 185 42 194 141 30 195 141 31 193 146 18 198 145 22 199 151 21 203 159 23 205 181 12 205 189 9 205 174 16 204 169 23 233 174 1 234 175 0 235 174 1 234 174 3 236 174 1 236 175 1 233 173 4 233 175 4 234 173 11 234 174 10 235 174 11 236 175 10 233 176 1 234 177 0 233 176 3 234 177 2 238 176 2 233 177 5 237 176 5 234 180 4 234 180 6 235 182 6 236 183 7 237 187 3 234 191 2 235 190 3 237 188 1 236 191 1 239 189 2 233 185 6 235 187 6 236 185 4 235 189 4 233 183 11 236 188 9 240 176 4 241 176 4 240 178 6 247 190 2 247 190 3 247 191 3 246 184 7 247 184 7 244 187 6 240 178 8 241 179 9 242 180 10 242 180 11 242 180 12 242 181 12 242 181 13 243 182 12 243 183 14 243 183 15 245 183 13 247 187 9 244 184 10 245 185 11 245 189 9 246 189 11 243 186 12 242 184 15 241 186 15 235 175 21 236 174 25 239 177 23 243 183 21 244 190 18 192 186 48 193 186 55 193 187 60 228 175 33 229 174 34 229 180 39 234 189 35 233 184 39 239 188 38 245 188 35 244 189 35 245 189 35 244 186 36 244 187 38 243 188 38 244 188 36 227 184 63 233 193 0 234 194 0 234 194 1 235 194 2 236 192 1 236 195 0 235 197 0 234 196 3 237 199 2 239 198 2 239 198 7 240 192 2 240 192 3 240 195 3 241 195 3 240 199 1 240 196 3 242 194 6 247 193 6 243 200 1 241 202 1 242 203 0 243 203 0 243 202 1 242 203 1 241 203 3 243 204 0 243 205 1 242 207 0 244 204 0 244 205 0 245 206 0 244 207 0 240 200 4 240 200 5 243 200 4 243 198 13 243 204 12 242 208 1 243 208 1 243 209 1 244 211 1 246 210 0 246 211 0 246 210 1 244 209 2 247 213 0 246 212 1 247 215 0 247 214 1 245 209 7 248 213 1 244 217 0 245 217 0 247 216 0 246 218 0 246 219 0 247 219 0 245 220 0 246 221 0 245 222 0 246 223 3 249 216 0 248 217 0 246 215 9 245 196 21 246 192 31 240 208 30 242 214 30 244 221 25 243 225 2 243 225 3 245 225 3 246 224 2 246 225 3 244 226 5 245 225 7 247 227 6 246 227 7 246 229 16 246 230 27 245 229 31 248 231 29 204 194 42 237 195 38 239 203 37 246 195 32 246 195 33 247 199 35 247 202 59 249 233 33 250 235 45 253 242 37 253 242 41 253 244 43 253 243 47 252 244 47 252 238 54 252 244 55 254 245 61 186 188 69 178 178 77 187 189 75 193 187 66 192 187 68 193 187 68 251 237 68 255 246 71 255 247 81 255 248 85 255 248 88 254 250 100 252 246 110 255 251 107]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17575
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17576
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17577
versionB24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17578
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17579
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17580
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17581
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17582
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17583
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17584
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17585
     self versionB24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17586
     ImageEditor openOnClass:self andSelector:#versionB24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17587
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17588
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17589
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17590
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17591
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17592
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17593
        constantNamed:'GenericToolbarIconLibrary versionB24x24'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17594
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17595
GB$/KB00K2</MC 8NCX6M#X6LSL5L!!<BN?S0;.;0=_W8>OS4>_'';>?/;?/;<?=<QPN_(:N#(:N#*9>/.<OC3<?O4<//6>>0SO=7U5MSU5]WU5]/[7^C 8.K%
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17596
9N''-:^LSO-SG2,3R3=KR4-KR4-WU5M/[7-/^8.XWOM":2\#H2L#J2,+J3MKS4-KT5MS\5^DTN,J5-KR8.++I2\''I2\#I2L+L4=SR5MDRN\Z+*:.++;R8.K*:
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17597
.,''I2\''I.,3H4L4RM;.])ZV+*:.+,KB0-["8.KR:,L#I1<DRK*2](*J%)ZV+*:.+*:.+*:./*;*8.+XOJ9^V%(*J")2!!)Y6")ZV%*:.%)Z.%/J8IJ''][\8JR
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17598
%)2E!!X"H"H>]''Y2"(ZF\,ZPIJE9JS%-; '')1\XVE"H"H"H"H''JFJ)(8GI5YGQ4YMS&A;^(E1!!XVE!!XVE!!X*M%W4KHU1JQ$YIRT9ST5- Y''I;\7NE!!XVM^7XM
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17599
HVQJRT%JR$)JR$)MST9ST5M&\&5:_&$IH6!!#X6MZUEQIRTYFRT%IRT%ISD5SVUTHIHY#X6M#X6M#X6M#UEQIRT%FRT%ISDPHI)&G G!!8[6=#X6M#X6M#X5)T
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17600
T$-KR$PLH)&R HB@ HB@^G!!8Z6M#X6M#X5)#YTDEHJ"V%(.@"8.@ H.K"W%.[&9/X6-+_$HDI\CK1K&3,;N)(9*Z&)*W%9FW&)^Y''$LDG*6L 7A<_G1''X&]''
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17601
Y6]*Z&E*]FIP,#4C@QTYFQ$[F!!(ZF!!(ZF!!(ZF!!(ZE!!4YF08@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[16 1 1 42 14 1 27 26 0 53 26 0 61 33 0 66 33 3 61 38 0 66 37 0 67 38 0 64 40 0 65 41 0 68 42 0 75 40 0 67 43 3 78 42 0 66 46 0 70 53 0 58 57 0 71 55 0 64 58 0 69 57 0 92 53 0 97 53 1 69 62 0 97 57 0 99 58 0 103 57 0 100 59 0 73 70 2 108 62 3 122 94 29 118 117 35 156 120 13 164 117 27 154 124 0 162 121 17 164 122 3 152 123 35 161 124 3 171 123 23 174 125 13 140 134 30 170 127 12 174 131 19 146 144 16 151 143 18 175 136 24 152 144 20 148 146 20 145 145 39 143 145 55 142 148 41 155 146 23 147 148 50 154 147 44 177 143 17 155 148 35 176 148 22 179 150 8 164 156 44 179 155 15 184 149 76 178 160 0 180 168 13 179 167 27 214 165 59 211 168 52 212 170 69 218 169 63 230 171 12 234 173 0 232 172 16 229 175 0 235 174 0 233 173 19 240 173 0 228 175 16 231 176 0 232 177 0 236 176 0 221 176 52 235 175 22 242 175 3 233 178 0 238 177 1 224 175 69 240 174 37 239 178 4 234 180 2 233 179 23 240 179 7 236 181 5 242 176 40 241 180 10 239 179 28 237 182 9 232 184 6 236 178 58 233 180 49 243 181 13 244 178 43 236 182 29 234 185 9 234 181 50 242 181 31 227 182 66 233 181 59 240 184 15 235 182 51 235 186 12 247 184 0 245 183 18 232 185 42 233 189 0 236 187 15 238 188 0 235 183 61 243 187 0 224 186 68 240 185 33 242 186 19 249 186 0 239 189 0 237 188 18 232 186 53 226 187 61 236 187 33 234 191 0 245 188 0 233 190 16 240 190 0 235 187 45 246 189 0 236 192 0 242 187 36 244 188 23 232 194 0 251 188 4 237 193 0 247 190 3 234 188 64 243 192 1 230 190 64 233 196 0 248 191 6 251 188 28 244 193 4 239 195 2 235 197 0 237 194 25 245 194 8 248 191 29 240 196 6 243 193 28 249 192 31 246 195 11 242 197 9 237 199 6 242 193 52 243 198 0 239 200 0 245 199 0 238 200 11 251 194 34 232 197 61 240 201 0 242 198 32 241 202 0 242 198 45 255 197 21 243 203 0 244 204 0 247 201 21 240 196 94 231 202 64 245 205 0 240 207 0 243 204 22 238 199 88 253 201 25 246 206 0 241 208 0 233 204 66 247 207 1 243 209 0 255 203 28 244 210 3 247 207 28 242 209 27 246 211 0 245 211 7 247 212 0 247 205 71 234 210 61 246 212 10 248 213 0 254 208 33 243 215 0 249 210 32 243 215 12 245 216 0 250 215 0 246 217 0 255 210 49 247 218 0 239 214 66 242 220 0 243 221 0 246 218 21 237 218 58 245 222 0 250 221 0 246 223 0 241 225 0 242 226 0 247 225 0 250 222 28 243 227 1 248 226 4 245 228 5 250 227 8 246 229 10 248 232 17 233 227 112 247 231 36 243 230 59 249 233 39 243 231 79 249 234 53 251 235 41 247 234 74 251 241 48 253 242 34 254 239 70 254 243 37 253 243 50 248 239 110 255 242 73 255 245 52 255 247 55 255 246 66 255 248 68 253 247 93 255 248 78 255 248 86 254 251 69 253 248 102 255 249 87 252 251 78 255 249 95 255 251 97 255 251 104 253 251 119 255 252 106 253 255 115 255 254 130]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17602
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17603
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17604
versionBBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17605
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17606
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17607
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17608
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17609
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17610
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17611
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17612
     self versionBBase12x12 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17613
     ImageEditor openOnClass:self andSelector:#versionBBase12x12
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17614
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17615
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17616
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17617
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17618
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17619
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17620
        constantNamed:'GenericToolbarIconLibrary versionBBase12x12'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17621
        ifAbsentPut:[(Depth8Image new) width: 13; height: 13; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17622
_7=?_3@7O$MER4<)_7=?_7<\FQ([GQ<6H7=?_7=?D!!DSEQXXFQ]?_7=?_0TJC@4NC1HK_7=?_7<@@PXGB@ IAG=?_7=?@%QSUUQVU5!!Q_7=?_0MMRT1LS%AP
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17623
T''=?_7<PQ4ADQ$!!HRT)?_7=?_3(9OC4?PDAB_7=?_7<&HB 5NC 9L7=?_7=?K"0$HBD!!H"U?_7=?_3,4MCD,KB\^_7=?_7=AK3H-KR(+E@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17624
@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 126 187 4 132 193 17 135 197 0 143 204 45 133 171 0 146 201 7 146 208 13 147 209 11 149 204 25 153 208 31 155 211 65 148 187 33 156 212 38 159 214 42 161 216 46 163 218 83 160 206 51 169 218 55 168 224 67 167 217 184 149 76 58 173 223 61 175 225 96 168 202 65 178 228 80 177 228 92 179 225 93 180 226 75 186 235 95 181 227 214 165 59 102 188 234 234 173 0 235 174 0 231 176 0 116 191 219 238 177 1 224 175 69 240 174 37 240 179 7 232 184 6 149 189 203 236 178 58 233 180 49 243 181 13 234 181 50 242 181 31 232 185 42 137 196 220 242 186 19 232 186 53 226 187 61 245 188 0 233 190 16 114 203 242 126 201 229 236 192 0 237 193 0 248 191 29 243 193 28 242 197 9 237 199 6 133 208 236 240 201 0 244 204 0 240 196 94 231 202 64 146 211 240 246 206 0 148 213 243 244 210 3 249 210 32 250 215 0 247 218 0 239 214 66 161 220 245 245 222 0 246 223 0 241 225 0 170 224 243 245 228 5 233 227 112 247 234 74 255 245 52 255 248 86 254 251 69 255 249 95 255 251 104 253 255 115 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255]; mask:((ImageMask new) width: 13; height: 13; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'C?@O<@?0C?@O<@?8C? O>@_8A? G>@_8A? b') ; yourself); yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17625
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17626
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17627
versionBase16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17628
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17629
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17630
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17631
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17632
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17633
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17634
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17635
     self versionBase16x16 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17636
     ImageEditor openOnClass:self andSelector:#versionBase16x16
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17637
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17638
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17639
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17640
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17641
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17642
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17643
        constantNamed:'GenericToolbarIconLibrary versionBase16x16'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17644
        ifAbsentPut:[(Depth8Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17645
ARP!!HRL%I"\0LSL4L#X5@TK.;^70</O4=_[6>_+;=1AA9NC^7.W%9._(:^3.<^($PMGL4=OU5=[V6=/\7^S!!HC:>0<OC0L''I3,?Q4-_W108/,J6-+[R9.+.<
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17646
0L''E3LXMK)& (:Z''):^,,[R6/+;AB212$YZU"9^\(:N%)::.''00TN$=)]XVD"(*R_Y&Y&Y8JD3(:N4Q_U6=5]WU5^IF]BQIHR$-EP4QHTV)+Y&&DT@\+Y55Z
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17647
VUUUU4YFR$]MUS0FJ&>CU6Y,U6Y]U6!!(S%T<@!!->^H*C"''=?_6=_U6Y&OPH(/*>##X2Q^W!!=^72J$3<DBB$-G!!(_GA(WGQ\VE!!TQ@@@@@@@@@@@@@@@@@@@@
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17648
@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[9 43 68 33 57 70 7 65 94 8 66 94 16 64 93 42 74 91 6 68 101 6 73 103 20 72 106 16 78 107 20 84 116 31 89 119 21 87 120 36 90 117 40 98 124 56 108 127 71 107 120 14 100 138 3 102 154 5 103 153 6 109 158 10 107 152 12 107 152 15 105 154 14 106 154 15 105 156 15 105 158 15 109 158 18 106 159 17 108 157 17 110 159 22 108 158 44 103 129 49 108 132 49 109 133 50 111 135 57 105 128 54 112 136 61 113 138 61 117 141 40 111 154 38 114 157 1 108 160 9 108 162 5 114 162 25 114 163 20 120 166 30 127 172 66 118 141 71 120 142 77 120 137 74 120 140 76 120 141 80 119 130 82 122 134 9 129 179 1 128 189 1 131 191 2 130 191 5 130 191 9 128 184 19 132 182 37 132 177 35 135 183 44 144 188 67 151 191 95 152 181 5 131 192 2 134 195 7 132 193 3 133 198 5 133 197 6 133 196 6 134 198 7 135 199 9 133 195 9 134 196 9 133 198 8 134 199 1 137 198 15 138 193 15 136 197 12 137 199 2 135 200 3 135 200 5 133 200 3 136 201 1 139 202 5 136 202 7 137 202 6 138 203 4 140 201 0 138 204 0 139 205 0 140 205 0 142 204 0 143 204 2 143 204 1 140 207 0 141 207 3 143 207 5 142 205 5 140 207 9 138 203 13 139 201 10 143 204 20 137 199 18 140 201 3 144 206 6 144 205 7 144 205 5 144 206 4 145 206 7 145 207 13 145 203 8 145 205 8 147 207 10 147 206 15 144 206 11 149 207 13 148 207 15 149 207 13 150 207 17 147 203 18 147 205 19 148 207 20 152 207 4 146 209 4 147 209 6 146 208 10 146 208 10 147 209 14 146 208 11 148 210 10 149 210 11 149 210 15 149 208 13 148 210 13 151 210 14 153 211 12 152 212 14 155 213 17 144 210 19 149 209 16 150 209 19 151 208 21 150 208 24 146 208 22 152 208 20 152 211 18 152 212 20 154 213 25 153 208 28 155 209 29 155 211 30 155 210 31 155 213 36 142 192 41 150 196 51 157 206 33 157 210 33 157 213 35 157 213 33 158 213 35 159 215 37 158 214 25 160 213 40 162 213 41 162 213 40 161 214 41 160 215 47 164 213 47 165 214 46 166 215 45 163 218 43 167 223 49 162 215 53 163 215 49 166 215 48 163 216 50 164 216 48 164 220 60 166 218 60 167 221 62 167 220 51 169 218 52 170 219 55 171 220 57 171 221 61 168 221 61 169 223 59 173 223 61 173 223 73 162 207 66 170 220 68 169 220 69 171 221 73 172 223 87 170 213 96 180 220 67 173 224 64 174 224 66 175 226 77 175 224 76 174 225 77 174 225 65 177 227 65 177 228 68 179 229 70 176 230 70 180 230 79 176 225 82 177 227 81 178 227 85 179 228 82 180 228 81 180 231 86 180 230 87 181 231 88 182 232 89 184 233 92 191 236 97 189 230 99 190 230 98 190 232 108 195 231 98 194 235 103 193 233 99 193 237 104 192 232 110 194 232 120 196 234 123 199 237 123 204 241 141 212 233 131 207 244 134 213 244 134 214 245 137 211 243 139 211 242 140 216 245 145 219 246 145 218 247 146 219 248 148 220 248 154 222 248 158 224 249 176 227 238 160 226 250 168 229 251 179 232 248 182 236 250]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17649
!
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17650
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17651
versionBase24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17652
    "This resource specification was automatically generated
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17653
     by the ImageEditor of ST/X."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17654
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17655
    "Do not manually edit this!! If it is corrupted,
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17656
     the ImageEditor may not be able to read the specification."
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17657
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17658
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17659
     self versionBase24x24 inspect
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17660
     ImageEditor openOnClass:self andSelector:#versionBase24x24
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17661
     Icon flushCachedIcons
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17662
    "
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17663
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17664
    <resource: #image>
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17665
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17666
    ^Icon
5192
1bbb6e28c971 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5181
diff changeset
 17667
        constantNamed:'GenericToolbarIconLibrary versionBase24x24'
4283
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17668
        ifAbsentPut:[(Depth8Image new) width: 24; height: 24; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17669
@!!LNDADQE!!XVF!!0_H2D$H2@ H18"H!!8AO=SZ6]''\7^C"8.[&9.#*;N?2;_W6>]HXU^''.;.;.<OS4=OS4=?_8>O#;?O;=?>\RTMOM3L3K2<3M3<?Q5=/^8^W)
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17670
9.[1:=T]Q<N:.[&8.K?A/\GA1LSG1<+J5-#$7<8VR*:.,+N6-+&9.[2<0LC@0LC@0<#B4L$ON:J*****+:.+*;N1-[V5-;.;0LB=1+8VN*J\)JF!!)JR#*J"+
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17671
*:6-,[V5-+&9/;@MNIBQ$)JY$)JY''):^(:N#*J"/)+J/-I4LNXNK#H.N!!)JT$)JR%).[&Y.&)*J&*YLTM6&H"H"H"H.N#(:N#9BP$IZV&*JZ&8(UMU5,\8E9
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17672
 V=2^XRH"8.K"8:O#9*V%''4UMT%HV6I1\WE1\W9/^XNC (NH"H.K#G@YM$EAP45_W&11[7E1^GM8\7M: (M3"VLULDMCRDMAP45[V6I"X&I"[F1,X''91_5 K
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17673
LDMQUEEMRDMCPUQTW6!!+]&I,[HE5[D0KLU)ST5M(W5)TTT5MTUEQUE)SW6-SYC4JL65ST5MST5MST5MSS$9NS$9HQD9DRC8JLVI1[FI"X&I WE1ST5M[ZF!!_
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17674
UEQNS30GLFI,\V11\W!!,X&I"Y&I!!W%9^T5MSWS0HLH]:^&93[798[G9/\V1,X&I!!WFA\Y30EMIF,%9RK_G%9\&=/[6=1[&91[GV@]DHDJ9>6+)2P"8"A!!7=?
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17675
_7=?_7=?\7Q.^4@CA"X-I2\''I2</JR$)JR (JB (K"4,J"T@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[1 10 28 0 14 26 0 23 36 0 29 57 1 32 55 0 32 58 0 34 61 3 34 57 0 35 56 0 36 63 0 37 64 0 41 63 3 45 67 0 47 68 5 46 69 6 47 70 0 50 72 0 51 73 15 48 60 17 47 65 9 49 72 0 51 79 0 53 74 0 53 75 25 47 61 2 53 81 13 51 74 1 55 77 4 57 79 15 55 72 23 55 68 7 59 81 19 58 76 12 61 83 25 59 67 21 60 77 23 61 79 5 67 94 6 75 114 0 78 122 0 80 124 0 80 130 0 82 120 25 76 110 0 84 122 17 80 119 0 85 123 20 80 125 2 85 129 0 86 135 0 88 137 0 90 139 26 85 125 1 97 141 22 92 137 9 99 143 16 104 142 31 100 139 22 107 145 26 109 147 16 117 155 0 123 166 22 117 161 73 108 128 48 114 148 0 126 187 40 118 156 0 128 189 0 128 196 0 129 190 0 130 191 31 124 162 0 131 192 0 132 187 32 125 163 0 131 198 20 129 172 4 132 193 0 133 200 3 134 189 57 122 156 9 133 194 0 135 202 0 137 204 13 134 196 66 123 152 0 138 199 0 138 206 41 130 168 0 139 207 17 135 197 0 140 201 0 140 208 16 137 192 0 141 202 20 136 198 0 141 209 0 142 203 0 143 204 45 133 171 23 137 199 0 144 205 0 144 211 23 139 194 26 138 200 0 146 201 2 145 206 29 139 201 7 146 208 31 140 202 5 148 203 0 150 210 52 138 176 13 147 209 0 151 211 11 149 204 33 143 199 18 146 214 36 142 204 0 152 212 17 148 210 0 153 213 15 150 205 33 146 195 0 154 214 47 143 187 21 149 211 39 146 202 41 145 208 24 150 212 22 152 207 25 153 208 28 152 214 28 154 209 1 162 216 47 150 207 31 155 211 45 152 202 65 148 187 33 156 212 32 159 208 35 158 213 38 159 214 40 160 215 42 161 216 55 158 208 40 163 211 73 155 194 44 162 217 42 164 213 46 163 218 28 168 223 44 165 214 47 166 215 49 165 221 62 163 214 51 166 222 87 159 193 50 168 217 83 160 206 64 165 215 51 169 218 55 168 224 53 170 219 67 167 217 58 170 227 68 168 218 56 172 221 58 173 223 80 168 213 71 170 220 60 174 224 62 173 229 61 175 225 64 174 231 74 172 223 96 168 202 63 176 226 75 173 224 76 174 225 85 173 218 65 178 228 78 175 226 67 180 229 77 178 222 80 177 228 82 178 229 70 182 231 83 179 230 81 181 226 105 176 211 92 179 225 85 181 233 93 180 226 84 184 228 75 186 235 95 181 227 87 183 234 94 184 223 98 184 230 89 188 232 106 188 222 102 188 234 100 190 229 101 191 230 104 193 232 116 191 219 105 194 233 107 196 235 114 196 229 149 189 203 102 199 244 137 196 220 135 198 215 113 202 241 128 199 234 114 203 242 126 201 229 134 199 228 130 201 236 128 203 231 131 205 234 134 204 240 117 209 242 133 208 236 128 209 243 143 208 238 145 209 239 123 215 247 133 213 247 146 211 240 161 210 223 148 213 243 144 214 250 156 215 239 155 218 235 158 217 241 163 217 235 142 223 255 161 220 245 149 223 252 154 223 246 170 220 246 151 225 254 153 227 255 170 224 243 176 225 238 161 230 253 163 232 255 181 231 244 166 235 255 172 236 253 190 240 253 184 242 254 193 243 255 193 248 253]; yourself]
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17676
! !
5dbbac36d054 added version icons for diff tools
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4282
diff changeset
 17677
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17678
!GenericToolbarIconLibrary class methodsFor:'image specs-widgets'!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17679
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17680
colonBitmap
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17681
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17682
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17683
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17684
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17685
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17686
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17687
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17688
     self colonBitmap inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17689
     ImageEditor openOnClass:self andSelector:#colonBitmap
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17690
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17691
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17692
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17693
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17694
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17695
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17696
        constantNamed:'GenericToolbarIconLibrary colonBitmap'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17697
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@DQD@@PQDD@AADD@AD@DP@DB@P@DR(Q@@P*A@@QBAD@A@@D@AADPP@ADQ@@DDQA@@P@A@@QBAD@AB(D@AD*DP@DB@P@DP@Q@@PQA@@PQDD@@QDP@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17698
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17699
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17700
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17701
led0
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17702
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17703
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17704
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17705
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17706
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17707
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17708
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17709
     self led0 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17710
     ImageEditor openOnClass:self andSelector:#led0
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17711
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17712
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17713
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17714
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17715
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17716
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17717
        constantNamed:'GenericToolbarIconLibrary led0'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17718
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@***@@"**H@JJ*J@B(@J @*@B(@J @*@B(@J @*@B(@J@@J@BADP!!TADQ@@HDQB@B @B @*@B(@J @*@B(@J @*@B(@J @*@B"*" @"**H@B**(@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17719
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17720
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17721
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17722
led1
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17723
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17724
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17725
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17726
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17727
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17728
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17729
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17730
     self led1 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17731
     ImageEditor openOnClass:self andSelector:#led1
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17732
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17733
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17734
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17735
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17736
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17737
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17738
        constantNamed:'GenericToolbarIconLibrary led1'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17739
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@DQD@@PQDH@AADJ@AD@J @D@B(@DP@*EPP@J @Q@B(@A@@J@AADP @ADQ@@DDQB@@P@B @Q@B(@A@@*@AD@J @D@B(@DP@*@@PQB @PQDH@@QDP@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17740
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17741
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17742
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17743
led2
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17744
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17745
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17746
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17747
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17748
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17749
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17750
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17751
     self led2 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17752
     ImageEditor openOnClass:self andSelector:#led2
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17753
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17754
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17755
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17756
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17757
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17758
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17759
        constantNamed:'GenericToolbarIconLibrary led2'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17760
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@***@@R**H@AJ*J@AD@J @D@B(@DP@*@@P@J @Q@B(@A@@J@AJ*( @J** @H**!!@B @A@@*@AD@J @D@B(@DP@*@@P@J @Q@B"*!!@@"**D@B**(@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17761
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17762
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17763
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17764
led3
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17765
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17766
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17767
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17768
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17769
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17770
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17771
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17772
     self led3 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17773
     ImageEditor openOnClass:self andSelector:#led3
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17774
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17775
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17776
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17777
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17778
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17779
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17780
        constantNamed:'GenericToolbarIconLibrary led3'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17781
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@***@@R**H@AJ*J@AD@J @D@B(@DP@*@@P@J @Q@B(@A@@J@AJ*( DJ** @D**"@@P@B @Q@B(@A@@*@AD@J!!LD@B(@DP@*@@R*" @R**H@B**(@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17782
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17783
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17784
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17785
led4
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17786
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17787
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17788
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17789
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17790
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17791
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17792
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17793
     self led4 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17794
     ImageEditor openOnClass:self andSelector:#led4
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17795
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17796
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17797
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17798
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17799
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17800
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17801
        constantNamed:'GenericToolbarIconLibrary led4'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17802
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@DQD@@ QDH@JADJ@B(@J!!P*@B(@J @*@B(@J @*@B(@J@@J@BJ*( @J** @D**"@@P@B @Q@B(@A@@*@AD@J HD@B(@DP@*@@PQB @PQDH@@QDP@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17803
@APb') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17804
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17805
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17806
led5
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17807
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17808
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17809
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17810
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17811
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17812
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17813
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17814
     self led5 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17815
     ImageEditor openOnClass:self andSelector:#led5
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17816
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17817
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17818
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17819
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17820
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17821
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17822
        constantNamed:'GenericToolbarIconLibrary led5'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17823
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@***@@"**D@JJ*D@B(@DP@*@@P@J @QER(@A@@*@AD@J@@D@BJ*(P@J** @D**"@@P@B @Q@B(@A@@*@AD@J @D@B(@DP@*@@R*" @R**H@B**(@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17824
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17825
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17826
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17827
led6
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17828
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17829
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17830
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17831
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17832
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17833
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17834
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17835
     self led6 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17836
     ImageEditor openOnClass:self andSelector:#led6
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17837
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17838
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17839
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17840
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17841
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17842
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17843
        constantNamed:'GenericToolbarIconLibrary led6'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17844
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@B ***@@"**DJJJ*D@B(@DP(*@@P@J @Q@B(@A@@*@AD@J@@D@BJ*(P@J** @H**"B" @B @*@B(JJ @*@B(@J @*@B(@J @*@B"*" @"**H@B**(@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17845
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17846
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17847
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17848
led7
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17849
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17850
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17851
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17852
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17853
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17854
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17855
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17856
     self led7 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17857
     ImageEditor openOnClass:self andSelector:#led7
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17858
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17859
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17860
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17861
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17862
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17863
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17864
        constantNamed:'GenericToolbarIconLibrary led7'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17865
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@***@@R**HJAJ*J@AD@J (D@B(@DP@*@@P@J @Q@B(@A@@J@AADP (ADQ@@DDQB@@P@B @Q@B(@A@@*@AD@J @D@B(@DP@*@@PQB @PQDHK@QDP@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17866
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17867
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17868
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17869
led8
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17870
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17871
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17872
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17873
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17874
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17875
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17876
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17877
     self led8 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17878
     ImageEditor openOnClass:self andSelector:#led8
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17879
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17880
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17881
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17882
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17883
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17884
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17885
        constantNamed:'GenericToolbarIconLibrary led8'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17886
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@UUU@@QUUDTEEUE@AT@EP@U@AT@EP@U@AT@EP@U@AT@E@@E@AEUTP@EUUP@DUUQ@AP@AP@U@AT@EP@U@AT@EP@U@AT@EP@U@AQUQP@QUUDTAUUT@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17887
@@@b') colorMapFromArray:#[0 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17888
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17889
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17890
led9
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17891
    "This resource specification was automatically generated
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17892
     by the ImageEditor of ST/X."
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17893
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17894
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17895
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17896
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17897
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17898
     self led9 inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17899
     ImageEditor openOnClass:self andSelector:#led9
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17900
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17901
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17902
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17903
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17904
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17905
    ^Icon
5385
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17906
        constantNamed:'GenericToolbarIconLibrary led9'
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17907
        ifAbsentPut:[(Depth2Image width:13 height:23) bits:(ByteArray fromPackedString:'@@@@@@***@@"**H@JJ*J@B(@J @*@B(@J @*@B(@J @*@B(UJ@@J@BJ*( @J** @D**"@@P@B @Q@B(@A@@*@AD@J @D@B(@DP@*@@R*" @R**H@B**(@@@@
1548b60833e4 class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5382
diff changeset
 17908
@@@b') colorMapFromArray:#[0 0 0 128 0 0 255 0 0]; yourself]
4418
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17909
!
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17910
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17911
meterBitmaps
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17912
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17913
    "Do not manually edit this!! If it is corrupted,
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17914
     the ImageEditor may not be able to read the specification."
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17915
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17916
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17917
     self meterBitmaps inspect
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17918
     ImageEditor openOnClass:self andSelector:#meterBitmaps
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17919
     Icon flushCachedIcons
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17920
    "
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17921
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17922
    <resource: #image>
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17923
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17924
    ^Icon
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17925
        constantNamed:'GenericToolbarIconLibrary class meterBitmaps'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17926
        ifAbsentPut:[(Depth8Image new) width: 260; height: 27; photometric:(#palette); bitsPerSample:(#(8)); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17927
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17928
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17929
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17930
@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@B @@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17931
B @@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@H0@@@@@@@@@@@@@@@@@@@@@@@@@J@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17932
@@@@@@@@@@@@@@(@@@@@@@@@@@@@@@@@@@@@@@@@H0@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@(@APTEAPT@@@@@@@TEAPTEAP@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17933
B @EAPTEAPT@@@@EAPTEAPTE@@@J@@TEAPTE@@@@@@@EAPTEAPT@@@(@APTEAPT@@@@@@@@EAPTEAP@@B @EAPTEAPTEAPT@@@TEAPTE@@@J@@TEAP@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17934
@@@@@@TEAPT@@@(@APTEAPT@@@@@@@@EAPTEAP@@B @EAPT@@@@@@@@@@@@@@@TE@@@#@@TEAPTE@@@@@@@EAPTEAPT@@@(@APTEAPT@@@@@@@TEAPTEAP@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17935
B @EAPTEAPT@AP@EAPTEAPTE@@@#@@TEAPTEAP@E@@TEAPTEAPT@@BL@APTEAPTE@@T@APTEAPTEAP@@B @OC0<EEQP+BR,TG@TOB0<KAP@J@@,KB0,KAQ0[
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17936
A@,KB0,KB0,@@@(@C0,OAP,JH LCF10EB0,OB0T@B TKC0,EEQPCCP4+C!!0EB0<KAP@J@@<KC0,OB0<EEP(AB0,KB0<@@@(@C0,K@RH+J0LI@0L[C0,OB0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17937
B TKC0,KAPP+CP4"@P,KB0<KAP@J@@,KERL#H2L#H2L#H2L\B0,@@BLEC0<OAP,AEBH_EB@KB0,OB0T@B @OC0,EC0(_J2HTG@TKB0<KAP@J@@,EB0,EB0,K
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17938
AP,KB0,EB0,@@BLEB0TKB0TKB0,EB0,KB0TKB0T@H0@KAP,KAP,KB0TKB0,KAP,K@@@JB0<OB1PHFQ$YFQ$RG0<OC0<E@@(EC0<OC0<OHQ$YB ,OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17939
B TOC0,AG!!$YFQ$YD!!<KC0<OAP@JAP<OB1PHFQ$YFQ$YB@(KC0<E@@(EC0<OC0<OB2L*FQ$IB0<OC0T@B TOC1TBFQ$YFQ$YFQ$_B0<OAP@JAP<OC1TIFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17940
FQ$YF"@KC0<E@@(EC1PRFQ$YFQ$YFQ$YFQ$"C0T@H0TOC0,JHQ$YFQ$YFQL B0<OAP@JB0<OB08BFQ$YFQ$RJ0<OC0<E@@(EC0<OC0<KC0,KC0,OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17941
H0TOC0<OC0,OB0,OB0<OC0<OAP@#AP<OC0<OB0<KB0<KC0<OC0<E@@(KG@<+FQ$YFQ$YFQ$YD1TUEPT@B ,\EQTOEP$YFQ$IC1TUEQTUAP@JB10OEA$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17942
FQ$YFP$UEQTE@@(KG@<"FQ$YFQ$YFQ$YFQPOG@T@B ,\EQ0UG@<#BA$YFQ$NC10UAP@JB10OB!!$YFQ$YFQ$YFP4OEQTE@@(KGAT\JQ$YFQ$YFQ$YC@(UEPT@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17943
B!!X\D!!$YFQ$YFQ$YFQ$YFQH\@@@#B2PU@1$YFQ$YFQ$YFP0JEQTE@@(KEQTCFQ$YFQ$YFQ$YF!!TUEPT@B ,\EQTOC0<OC0<OC1TUEQTUAP@#B10UEP<OC0<O
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17944
C0<OEQTUEQTE@BLKGATUC0<OC0<OC0<UEQTUEPT@B <\EA$YFQ$HF"(YFQ$YCQ0 AP@JC2@\H0$HFQ$YFQL\GB@ HB@E@@(OG@DRFQ$Y@!!(*FQ$YFQ<\H@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17945
B <\@QHYFQ$SF2H*FQ$YFPP\AP@JC2@ GB@\HB(YFQ$YFP$UHB@E@@(OHATCFQ$RHQ8!!HRDSAA0 H@T@B < EP4YFQ$HBR,ZFQ$YD D\AP@JC10CD!!$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17946
FQ$YFQ$YD10E@BLOEQ,YFQ$YF",I@!!$YFQHDG@T@B <\J1$YFQ$!!D18YFQ$YCQ0 B0@JC2@\H10\GA0\GA0\GB@ HB@E@BLOHA0#GA0\GA0\GA0\HB@ H@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17947
H0< HBL\GA0\GA0\GA0 HB@ AP@JEPDHFQ$YHRL\HB,YFQ$YF2@K@@(OH10MFQ$YFQ$YIR@ H2@ H@,@B!!T H!!$YFPH#GB@ZFQ$YB@D B0@JER@[FQ$YG!!0\
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17948
I DHFQ$YH"@K@@(UH2@#H10IFQ$YFQ$YD10FH0,@B!!T#HBDYFQ8 HB@ HA0 H2@#B0@JER@DFQ$YD (UGA0IFQ$YEB@K@@(UH10DH",+H",_F!!$YFQHDH@,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17949
H1T#HQ$YFP$UGATABA$YFR, B0@JC0(YFQ$YCR@\GBHYFQ$YEB@K@@(OH0DA@PDA@PDA@R@ H2@ H@,@H1T#@PDA@PDA@PDAHB@#HB@ B0@#C2LA@PDA@PDA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17950
@PD HBL HB@K@@(U@1$YFP0DH0DAH1(YFQ$^H0,@B!!0AH18YFQ$YFQ$ZH0DA@PDAB0@JGBLIFQ$YJ2@AH0(RFQ$YF2LK@@(\@Q,YFQ$TH0DAH1LYFQ$CH0,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17951
B!!0A@PD#H!!$YFQHYFQ$SH0DAB0@JG@DJD!!$Y@2@AH0DA@PDA@PDK@@(\H0$YFQ$CHBL#H2LMD!!8D@P,@B!!TD@PD H2@#G@(HFQ$YF2LAB0@#EP(YFQ$YB"LA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17952
@RLMFQ$YBRLK@@(UBQ$YFR(A@PDAH1LYFQ$SH0,@B!!0AH0DA@PD#@PD#H0DA@PDAB0@#EPD#@PDA@RLA@RL#@PDA@PDK@BL\@PDA@PDAH0DA@RLA@PDA@P,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17953
B"@*FQ$YCPPJB (JC 0YFQHTB0@JH@8JF1(!!BA$YFQ8DB (JB (O@@( B"HYFP0NB (JB  YFQ$+A@<@B"@JC!!LBCP(JB (DJ!!$YFPLDC0@JH@8JB LYFQ$*
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17954
BQ$YFQ(DB (O@@( B"HYFQ$[B!!<"F0(JB (NB <@B"@TCA$YD!!<"@0L"C PNB (JC0@JH@8JB (JB (TBA$YFP4DB (O@BL C HYFQ$TB (JAA8YFQ$CA@<@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17955
B!!0^FQ$YBPPJB (JC!!HYFP NB0@JH@8JB (JB (JB (JB (JB (O@BL C (+J2,+J2,+J2,+J2,JB <@H2@NB (JB (JB (JB (JB (JC0@JAAHYFQ$+G1<_
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17956
G1<[J!!$YFPLO@@(DA1<[F1PIFQ$YJ!!,_G1<_G1T@B P"F1(BBQ<_G1<"D!!$YFP$[EP@JABH_F1<[G1<_G1LYFQ$RH!!<U@@(DH!!,"D!!$YFRHIFQ$YHQ,_G1T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17957
B P_D1$YD!!LLFQ$YJ L[G1<_EP@J@P$YFQ$RCA$YFQ$RD1,[G1<U@@(DA1<_G1<_F0HYFQ$LG1<_G1T@H0P[F!!$YFRD_G1,CD!!$YD"H_EP@JAB(YFQ$IF1<_
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17958
G1<_D!!$YFRHU@@(DA1<[F1P_G1<_G1<_G1<_G1T@H0P[G!!HRD!!HRD!!HRD!!HRD!!8_EP@#A@\_F1,TG1<_G1<_G1<_G1<U@@("FQ$YD!!(ZF!!(ZF!!LHFQ$YJ!!0@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17959
B!!,^F"TZD2DYFQ$HD2TZF!!(ZG@@JG18ZD1LSF!!(ZD0HYFQ$LF!!( @@(_G!!LZD1(SHP0YFQ$YBA(ZF!!0@B!!<ZF!!HYFQ$!!D2(YFQ$BD1(ZG@@JG1(HFQ$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17960
FQ$YFP SF!!(\@@(]@!!$YFQ$YFQ$YFQ$YD!!8ZF"@@B!!<^F!!(ZF!!L*FQ$YFQ8SF!!(ZG@@#G18ZBA$YFQHRD!!$YFQH^F!!( @@([BA$YFP SF!!(ZD2(YFQ$YG!!0@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17961
B!!,^F"TZHRDZF!!(ZD2TZF!!(ZG@@#G18^FQ$YFQ$YFQ$YFQ$YG!!( @BL[G!!(%F"D!!F!!(ZF!!L%F!!(ZF!!0@A@8YFQ$HG1<_G1<_F18YFQ$SC0@JABH_G1<[BQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17962
FRD[G1<_G1<U@@(DH!!<_G1<_KA,SFQ$YFPL_G1T@B P"G1<_G1,!!FQ$YFQHSF1<_EP@JABHBFQ$YG!!,[CQ$YFRD[G1<U@@(DG2DYFQ$YD!!HYFQ$YFQ8_G1T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17963
B D^FQ$YFQ$R@  YFQ$YCB,_EP@JA@\_G1<_H 0YFQ$MF1<_G1<U@BLDH!!,^FQ$YFQ$YFQ$YCBH_G1T@B PSFQ$YFQL[F1<IFQ$YFQ$CC0@JABH_G1<[G1<_
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17964
G1<[G1<_G1<U@BLDH!!8RFQ$YFQ$YFQ$YD!!H^G1T@H0P"G1<_F1<_G1<_F1<_G1<_EP@JAA$YFP TEAPTEAPNF!!$YFP4K@@(#EAPTE@8CFQ$YHP8TEAPTE@<@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17965
B"LTEAPTE@8THQ$YFQ$ZC!!PTC0@JH1,TEAPTC"HHFQ$YFQ$^C!!PO@@( F!!$YFPHTE@8IFQ$YF 8TE@<@B"LTJ1$YC@$[EA<!!FQ$YFR,NC0@JHA(YFQ$YBA<T
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17966
C"HRFQ$YF 8O@@(#F1PTE@8MFQ$Y@ 8TEAPTE@<@H0DN@1$YFQ$YFQ$YFQ$YBA,TC0@JH1P*FQ$YFPH!!J!!$YFQ$YFRHO@@(#EAPTE@8TEAPTE@8TEAPTE@<@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17967
H2LTG!!$YFQ$YFQ$YFQ$YD!!8TC0@#H1PTEAPNEAPTEAPNEAPTEAPO@@(AFQ$YC@8JC (NB PZFQ$YBP,@B"@NB (JABHYFQ$^B (JB (JC0@JH08NB 8DEB(Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17968
FQ$YHP8JB 8O@@( C (JB (NB 8_BQHYFQ$CB <@B"LLFQ$HF0(JB"HYFQ$ZA@(JC0@JE08JH LTA@(JB 8BFQ$YF (O@@(\CQ$YFQ$CA@(NABHRFQ$HC <@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17969
B"@NB (JB HYFQ$CB (JB 8JC0@#HA,LFQ$YG!!<NE@$LFQ$YD0(O@@(#B!!,LFQ$YFQ$YFQ$YFQ$YF0,@B"@NB (JB (JB (JB (JB (JC0@#H@8DG!!8^G!!8^
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17970
G!!8^G!!8^A@(O@BL C (JB (JB (JB (JB (JB <@B"@HFQ$YC DDA@PD@RDYFQ$_AP@JH@PDA@PAH!!$YFQ(AA@PDA@PK@@(\A@PD@Q<LFQ$YD LD@PPDA@,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17971
B"@DAAPN@PPDA@D#@1$YFR(DB0@JH1$YFP0!!J"(*BA$YFP0*F (K@@(\A@8[A@DDA@PD@RHYFQ$!!@P,@B!!TCFQ$YC@PDA@PD@RDYFQHJB0@JH@PDA@D_FQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17972
B@PDA@PDA@PK@BLUBQ$YFRDA@PPDH1,LFQ$HA@,@B!!0J@QPBFQ$YFQ$YBAHYFQHJB0@JH@PDA@PDA@PDA@PAA@PDA@PK@BL A@PDA@PDA@PDA@PDA@PDA@,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17973
H2@DA@PDA@PDA@PD@PPDA@PDB0@JERDYFQ$IH0DA@PDACA$YFP(K@@(U@PDA@RL_FQ$YF"L#@PDA@P,@B!!0A@RLIFQ$YFP0TH@DA@PDAB0@JG@DIFQH[H0DA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17974
@RLNFQ$YB@DK@@(\D!!$YFQ$YFQ$YFQ$YFQ$YH T@B!!TNCA$ZH0DA@PD#EA$YFQ8AB0@JEQ,YFQ$)@PDA@PD#F!!$YD PK@@(U@PDAH2(YFQ$MH@DA@PDA@P,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17975
H1T^FQ$YG2LAA@DAH18YFQ$JB0@JG@D#H0DTCRD!!CQ,DCA$YJ DK@@(U@PDA@PDA@PDA@PDA@PDA@P,@H1TA@PDA@PDA@PDA@PDA@PDAB0@#EPDA@PDA@PDA
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17976
@PDA@PDA@PDK@@(OBQ$YFPH#H2L#HBHYFQ$BH0,@B!!TAH2L#HA,YFQ$SHBL#H2L#B0@JEPD G1$YFQ$^B!!0#H2L#H2LK@@(OB!!$YFP AHBL#HB,YFQ$B@PT@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17977
B <"BA$YFQ$YFQ$YFQ$YFQ$TAP@JC2HYFQ$THBL#H10IFQ$YF"@K@@(UA@0YFP0AH2L#H2LBFQ$L@PT@B!!TAH2LNFQ$YFQ, H2L#H2L#B0@#C1(YFQ$"GBL#
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17978
H2L HQ$YFPPE@@(UH1P*D0D\H2L GBHYFQ$SH@,@B!!TAH2L#HBLA@PDAHBL#H2L#B0@#ERL#H2L#H2L#H2L#H2L#H2LE@BLUH2L#H2L#H2L#H2L#H2L#H0,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17979
B <DD!!$YFR,\GATJCA$YFPL\AP@JC2@ HB@\F1$YFQ( HB@ HB@E@@(OH@(RFQ$RJ2@ H2L#HB@ H@,@B <DD!!$YFQ(#HA0NCA$YFQ8 B0@JER@#EBH"H"H"
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17980
D1$YFRD[C"@K@@(OEA$YFPH#GA0\F1HYFQ$_G@T@B <\H!!$YFP4\GA0\CQ$YFQ8 B0@JC2L GB,YFQ$YAB@ HB@ H2@V@BLKBQ$YFPHAGB@\GBHYFQ$HH0,@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17981
B <#BA$Y@ D$HA0ABA$YFQP AP@JC2@ HB@\H!!,[F2H HB@ HB@E@BLOHB@ HA0 GB@\GB@ HB@ H@,@H0< HB@ GB@\HA0\HB@ HB@ AP@JC1T_FQ$YFQ("
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17982
BP0YFQ$HH10K@@(OHB@ GA0NFQ$YD1T\HB@ H@T@B <\F!!$YFP0!!J"(*@  BBR@ AP@JC10CFQ$YFP ^HQ$YFQ$YEATE@@(OHA0\EQTUEP<[FQ$Y@0,\H@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17983
B < J!!$YFP IBQ(YFQ$YG!!0\B0@JC2@ BA$YFQ8NC"DYFQ$YEATE@@(OHA0UCQ$YFP0#GB@ HB@ HB\@H0,DFQ$YFP "AAP^FQ$YFP$UAP@JC2@*FQ$YBA, 
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17984
E@HYFQ$MGA0K@@(OHB@ GA0NFQ$YD1T\HB@ H@T@H0< HB@\GB@ HB@ EQ0 HB@ AP@#C2@ HA0\HB@ HB@UGB@ HB@E@@(OGA0!!FQ$YFQ$YFQ$YD PUG@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17985
B ,\GA0\EP(YFQ$MEQ0\GA0\AP@JB0DYFQ$YFQ$YFQ$YFQ$YH <E@@(OGB@BFQ$YFQ$YFQ$YFR,UG@T@B ,\GA0\GA0\EQ,YFQ$CC10\AP@JB1TDD!!$YFQ$Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17986
FQ$YFPH#EQ0E@@(OGATTFQ$YFQ$YFQ$YFPLUG@T@B ,\GATZFQ$Y@!!0\GA0\GA0\AP@#C1T_FQ$YFQ$YFQ$YFQ$!!HA0E@@(OEQPYFQ$YFQHYFQ$YBBLUG@T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17987
B ,\GA0\EP(YFQ$MEQ0\GA0\AP@#B10\GA0UGA0\GA0UGA0\GA0E@BLKGA0\GAT\GA0\GAT\GA0\G@T@B ,\ER@ZFQ$YFQ$YFP JC1TUAP@JB1TUEQTUH@0Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17988
FRHKEQTUEQTE@@(KEP4YFQ$YFQ$YFQ$YFQ$_C0T@B ,UC2LZD!!$YFQ$YFR(TC1TUAP@JB10UEQTUEQTO@Q$YFQPOEQTE@@(KG@<AG!!HYFQ$YFQHMH@<UEPT@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17989
B ,UEP<T@!!$YFQ$YFP0_C1TUAP@JB1TUC2HYFQ$+C1TUEQTUEQTE@BLKEP<T@!!$YFQ$YFQ$R@1TUEPT@B ,UC1PHFQ$YFQ$YFR(AC1TUAP@JB1TUEQTUH@0Y
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17990
FRHKEQTUEQTE@BLKEQTUEQTUEQTUEP,UEQTUEPT@H0,UEQTUEQTUEQTUB1TUEQTUAP@JAQTOC0<DBP0YD!!8[G@,UEQTE@@(EEP<OC0<KAA(IEP<OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17991
B ,OC0D[H"H"H"H"F1,_C!!0OAP@JAQTUC0<#F0LSBQ<DEP,UC1TE@@(KC1TOEQTUEQTKG00SC0<OEPT@B TUC0,OH1,ICPLTH@<OEQTUAP@JAQTUEP,UC 4)
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17992
BAL[H@,OEQTE@@(EEQTOC0LLBQTOC1TOEP<UC0T@H0,UC0,UAB,!!@ HMF2LKC0<UAP@JB1TOB10ND1HRD!!(NEP,UEQTE@@(EEP<OC0<KAA(IEP<OC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17993
H0TUC0<OC0<OC0<OC0<OC0<OAP@#AQTOC0<OC0<OC0<OC0<OC0<E@@(EC0<OC0,KER@\C0TOC0<OC0T@B TOC0<OC0<KB0,KC0<OC0<O@@@JAP<OB0TEAPTE
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17994
APTKAP,EC0<E@@(EC0<OC0,KAP,EAP,KC0<OC0@@B TOC0<OC0<OC0<KEP,OC0<O@@@JAP<OC0<KAPTKAQ KC0<OC0<@@@(EC0<OC1@KAQTQB0TKC0<OC0T@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17995
B TOC0<OB1TKB0<OC0<OC0<O@@@#AP<OC0<KB0,UC0,EB0<OC0<E@@(EC0<OB0,KGB@\B0TOC0<OC0T@B TOC0<OC0<KB0,KC0<OC0<O@@@#AP<OC0<OB0,U
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17996
C0,OC0<OC0<E@BLEC0<OC0<KB1TOB0<OC0<OC0@@B @KB0,KB0,EAPTKB0,KB0,K@@@J@@,KB0,KB0,KJ@,KB0,KB0,@@@(@B0,KB0,KB0,KB0,KB0,KB0@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17997
B @KB0,KB0,KB0,KB0,KB0,K@@@J@@,KB0,KB0,KB0,KB0,KB0,@@@(@B0,KB0,KB0,KB0,KB0,KB0@@B @KB0,KB0,KB0TKB0,KB0,K@@@J@@,KB0,''E ,K
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17998
B0,KB0,KB0,@@BL@B0,KB0,KB0TKB0,KB0,KB0@@B @KB0,KB0,EAP,KB0,KB0,K@@@J@@,KB0,KB0,KJ@,KB0,KB0,@@BL@B0,KB0,KB0TKB0,KB0,KB0@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 17999
H0@KB0,KB0,KAP,KB0,KB0,K@@@NEA<_F1<[G1<_G1<[G1<[G1<A@@8NG1,[F1,[F1,[F1,[F1,[G0D@C!!P_F1<[G1,_F1<[KA<[G1,_@P@NEA<[G1,_F1<[
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18000
G1,_F1<[G1<A@@8TG1,_F1,[F1,_F1,_F1<[G0D@C!!P_F1<[G1<[G1,_F1<[F1,_@P@NEA<[G14_F1<]G14_G1,_G1<A@@8TG1,[F1<[G1,_F1,[F1,[G0D@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18001
@PPNC (NC (NC (NC 8JC 8NG@@NEA<_G1<[G1<_F1<[G1<[G1<A@@8NG1,[F1,[F1,[F1,[F1,[G0D@@PPNC (NC (NC (NC 8JC 8NG@@AA@8NB 8NB 8N
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18002
B 8NC (NC 8\@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18003
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18004
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18005
') ; colorMapFromArray:#[0 0 0 66 66 66 206 206 206 140 140 140 74 74 74 8 8 8 49 49 57 123 115 115 214 214 214 148 148 148 82 82 82 16 16 16 222 222 222 156 156 156 90 90 90 24 24 24 22 22 22 25 25 25 231 231 231 165 165 165 99 99 99 33 33 33 8 16 8 57 49 57 8 8 16 239 239 239 173 173 173 107 107 107 41 41 41 109 109 109 181 181 181 115 115 115 49 49 49 189 189 189 123 123 123 57 57 57 41 33 33 173 165 165 33 33 41 16 8 16 16 16 8 197 197 197 198 198 198 132 132 132 115 107 107]; yourself]
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18006
! !
fe4542d78ad8 added:12 methods
Michael Beyl <mb@exept.de>
parents: 4417
diff changeset
 18007
6014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18008
!GenericToolbarIconLibrary class methodsFor:'image specs-widgets-tree'!
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18009
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18010
closeIndicatorInTree
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18011
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18012
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18013
    ^ self closeIndicatorInTree9x9Icon
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18014
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18015
    "Created: / 19-12-2010 / 09:03:52 / cg"
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18016
!
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18017
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18018
collapsedIconInTree
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18019
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18020
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18021
    ^ self fileTypeDirectoryIcon
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18022
!
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18023
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18024
emptyIconInTree
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18025
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18026
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18027
    ^ self fileTypeFileIcon
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18028
!
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18029
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18030
expandedIconInTree
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18031
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18032
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18033
    ^ self fileTypeDirectoryOpenIcon
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18034
!
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18035
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18036
openIndicatorInTree
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18037
    <resource: #programImage>
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18038
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18039
    ^ self openIndicatorInTree9x9Icon
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18040
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18041
    "Created: / 19-12-2010 / 09:04:06 / cg"
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18042
! !
d7a334f6d92b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6006
diff changeset
 18043
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 18044
!GenericToolbarIconLibrary class methodsFor:'documentation'!
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 18045
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
 18046
version
5363
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
 18047
    ^ '$Header$'
4305
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
 18048
!
Claus Gittinger <cg@exept.de>
parents: 4304
diff changeset
 18049
3946
6fce3d77ee7c added: #svn_persp
fm
parents: 3941
diff changeset
 18050
version_CVS
5363
33793d27a55d class: GenericToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 5345
diff changeset
 18051
    ^ '$Header$'
5006
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 18052
!
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 18053
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 18054
version_HG
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 18055
ad221fda1ea2 Added GenericToolbarIconLibrary>>#javaUndeclaredClassBrowserIcon
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4941
diff changeset
 18056
    ^ '$Changeset: <not expanded> $'
3059
4fb1c2737b1e initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
 18057
! !
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
 18058
4526
b31935b69814 Added Java class icons.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4497
diff changeset
 18059
3060
8ebe4ee2030d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3059
diff changeset
 18060
GenericToolbarIconLibrary initialize!