Windows8ToolbarIconLibrary.st
author Claus Gittinger <cg@exept.de>
Fri, 06 Mar 2020 21:56:26 +0100
changeset 6843 6c5e543e903e
parent 6783 ad6415741642
permissions -rw-r--r--
#OTHER by cg class: SimpleView added: #isWarningBox
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6049
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     1
"
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     2
 COPYRIGHT (c) 2013 by eXept Software AG
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     3
              All Rights Reserved
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     4
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     5
 This software is furnished under a license and may be used
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     6
 only in accordance with the terms of that license and with the
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     8
 be provided or otherwise made available to, or used by, any
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
     9
 other person.  No title to or ownership of the software is
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    10
 hereby transferred.
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    11
"
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libwidg' }"
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
6049
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    14
"{ NameSpace: Smalltalk }"
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    15
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
VistaToolbarIconLibrary subclass:#Windows8ToolbarIconLibrary
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Interface-Smalltalk'
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
4547
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    23
!Windows8ToolbarIconLibrary class methodsFor:'documentation'!
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    24
6049
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    25
copyright
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    26
"
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    27
 COPYRIGHT (c) 2013 by eXept Software AG
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    28
              All Rights Reserved
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    29
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    30
 This software is furnished under a license and may be used
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    31
 only in accordance with the terms of that license and with the
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    33
 be provided or otherwise made available to, or used by, any
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    34
 other person.  No title to or ownership of the software is
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    35
 hereby transferred.
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    36
"
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    37
!
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
    38
4547
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    39
documentation
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    40
"
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    41
    ToolbarIconLibrary := Windows8ToolbarIconLibrary
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    42
5171
9519ad3ccfb7 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
    43
    This is a style specific icon library for a windows8 look.
9519ad3ccfb7 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
    44
9519ad3ccfb7 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
    45
    Never access this iconlibrary directly from an application -
9519ad3ccfb7 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
    46
    always use ToolbarIconLibrary, which is an alias to one of the style specific
9519ad3ccfb7 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
    47
    icon libs.
9519ad3ccfb7 comment/format in: #documentation
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
    48
4547
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    49
    Notice and Warning:
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    50
        only redefine existing icons here; never add only to here.
4547
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    51
        For every icon-method here, there MUST be a corresponding (albeit
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    52
        possibly ugly) icon-method in GenericToolBarIcon.
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    53
"
Claus Gittinger <cg@exept.de>
parents: 4508
diff changeset
    54
! !
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
!Windows8ToolbarIconLibrary class methodsFor:'image specs'!
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    58
downArrowDisabledIcon
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    "This resource specification was automatically generated
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
     by the ImageEditor of ST/X."
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    61
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    "Do not manually edit this!! If it is corrupted,
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
     the ImageEditor may not be able to read the specification."
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    64
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    65
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    66
     self downArrowDisabledIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    67
     ImageEditor openOnClass:self andSelector:#downArrowDisabledIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    68
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    69
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    70
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    71
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    72
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    73
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    74
        constantNamed:'Windows8ToolbarIconLibrary class downArrowDisabledIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    75
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@@@@@@@@@@HH@1 C.@G0@N@@P@@@@@@@@@@@@@a')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    76
            colorMapFromArray:#[240 240 240 165 165 165]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    77
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    78
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    79
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    80
downArrowEnteredIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    81
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    82
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    83
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    84
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    85
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    86
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
    "
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
     self downArrowEnteredIcon inspect
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
     ImageEditor openOnClass:self andSelector:#downArrowEnteredIcon
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    90
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    91
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    92
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    93
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    94
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    95
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    96
        constantNamed:'Windows8ToolbarIconLibrary class downArrowEnteredIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    97
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@@@@@@@@@@HH@1 C.@G0@N@@P@@@@@@@@@@@@@a')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    98
            colorMapFromArray:#[240 240 240 0 0 0]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
    99
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a'); yourself); yourself]
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
!
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
6781
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   102
downArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   103
    "This resource specification was automatically generated
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   104
     by the ImageEditor of ST/X."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   105
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   106
    "Do not manually edit this!! If it is corrupted,
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   107
     the ImageEditor may not be able to read the specification."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   108
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   109
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   110
     self downArrowIcon inspect
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   111
     ImageEditor openOnClass:self andSelector:#downArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   112
     Icon flushCachedIcons
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   113
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   114
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   115
    <resource: #image>
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   116
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   117
    ^Icon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   118
        constantNamed:'Windows8ToolbarIconLibrary class downArrowIcon'
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   119
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@D@@P@A@@D@@P@A@@D@@P@A@@D@@P@a')
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   120
            colorMapFromArray:#[0 0 0 240 240 240]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   121
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a'); yourself); yourself]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   122
!
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   123
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
downArrowPassiveIcon
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
    "This resource specification was automatically generated
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
     by the ImageEditor of ST/X."
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   127
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    "Do not manually edit this!! If it is corrupted,
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
     the ImageEditor may not be able to read the specification."
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   130
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
    "
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
     self downArrowPassiveIcon inspect
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
     ImageEditor openOnClass:self andSelector:#downArrowPassiveIcon
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   134
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   135
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   136
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   137
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   138
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   139
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   140
        constantNamed:'Windows8ToolbarIconLibrary class downArrowPassiveIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   141
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@@@@@@@@@@HH@1 C.@G0@N@@P@@@@@@@@@@@@@a')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   142
            colorMapFromArray:#[240 240 240 96 96 96]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   143
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   144
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   145
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   146
leftArrowDisabledIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   147
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   148
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   149
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   150
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   151
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   152
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   153
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   154
     self leftArrowDisabledIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   155
     ImageEditor openOnClass:self andSelector:#leftArrowDisabledIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   156
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   157
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   158
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   159
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   160
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   161
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   162
        constantNamed:'Windows8ToolbarIconLibrary class leftArrowDisabledIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   163
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@N@A0@N@@\@@8@A0@@@@@@@@@@@')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   164
            colorMapFromArray:#[240 240 240 165 165 165]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   165
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@N@A0@N@@\@@8@A0@@@@@@@@@@@'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   166
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   167
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   168
leftArrowEnteredIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   169
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   170
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   171
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   172
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   173
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   174
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   175
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   176
     self leftArrowEnteredIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   177
     ImageEditor openOnClass:self andSelector:#leftArrowEnteredIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   178
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   179
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   180
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   181
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   182
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   183
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   184
        constantNamed:'Windows8ToolbarIconLibrary class leftArrowEnteredIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   185
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@N@A0@N@@\@@8@A0@@@@@@@@@@@')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   186
            colorMapFromArray:#[240 240 240 0 0 0]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   187
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@N@A0@N@@\@@8@A0@@@@@@@@@@@'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   188
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   189
6781
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   190
leftArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   191
    "This resource specification was automatically generated
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   192
     by the ImageEditor of ST/X."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   193
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   194
    "Do not manually edit this!! If it is corrupted,
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   195
     the ImageEditor may not be able to read the specification."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   196
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   197
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   198
     self leftArrowIcon inspect
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   199
     ImageEditor openOnClass:self andSelector:#leftArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   200
     Icon flushCachedIcons
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   201
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   202
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   203
    <resource: #image>
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   204
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   205
    ^Icon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   206
        constantNamed:'Windows8ToolbarIconLibrary class leftArrowIcon'
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   207
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   208
            colorMapFromArray:#[0 0 0]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   209
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@N@A0@N@@\@@8@A0@@@@@@@@@@@'); yourself); yourself]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   210
!
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   211
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   212
leftArrowPassiveIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   213
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   214
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   215
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   216
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   217
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   218
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   219
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   220
     self leftArrowPassiveIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   221
     ImageEditor openOnClass:self andSelector:#leftArrowPassiveIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   222
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   223
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   224
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   225
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   226
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   227
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   228
        constantNamed:'Windows8ToolbarIconLibrary class leftArrowPassiveIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   229
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@N@A0@N@@\@@8@A0@@@@@@@@@@@')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   230
            colorMapFromArray:#[240 240 240 96 96 96]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   231
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A0@N@A0@N@@\@@8@A0@@@@@@@@@@@'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   232
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   233
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   234
rightArrowDisabledIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   235
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   236
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   237
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   238
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   239
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   240
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   241
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   242
     self rightArrowDisabledIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   243
     ImageEditor openOnClass:self andSelector:#rightArrowDisabledIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   244
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   245
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   246
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   247
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   248
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   249
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   250
        constantNamed:'Windows8ToolbarIconLibrary class rightArrowDisabledIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   251
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@\@@8@A0@N@A0@N@@@@@@@@@@@@')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   252
            colorMapFromArray:#[240 240 240 165 165 165]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   253
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@\@@8@A0@N@A0@N@@@@@@@@@@@@'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   254
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   255
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   256
rightArrowEnteredIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   257
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   258
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   259
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   260
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   261
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   262
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   263
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   264
     self rightArrowEnteredIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   265
     ImageEditor openOnClass:self andSelector:#rightArrowEnteredIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   266
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   267
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   268
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   269
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   270
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   271
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   272
        constantNamed:'Windows8ToolbarIconLibrary class rightArrowEnteredIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   273
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@\@@8@A0@N@A0@N@@@@@@@@@@@@')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   274
            colorMapFromArray:#[240 240 240 0 0 0]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   275
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@\@@8@A0@N@A0@N@@@@@@@@@@@@'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   276
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   277
6781
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   278
rightArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   279
    "This resource specification was automatically generated
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   280
     by the ImageEditor of ST/X."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   281
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   282
    "Do not manually edit this!! If it is corrupted,
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   283
     the ImageEditor may not be able to read the specification."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   284
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   285
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   286
     self rightArrowIcon inspect
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   287
     ImageEditor openOnClass:self andSelector:#rightArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   288
     Icon flushCachedIcons
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   289
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   290
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   291
    <resource: #image>
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   292
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   293
    ^Icon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   294
        constantNamed:'Windows8ToolbarIconLibrary class rightArrowIcon'
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   295
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   296
            colorMapFromArray:#[0 0 0]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   297
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@\@@8@A0@N@A0@N@@@@@@@@@@@@'); yourself); yourself]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   298
!
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   299
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   300
rightArrowPassiveIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   301
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   302
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   303
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   304
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   305
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   306
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   307
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   308
     self rightArrowPassiveIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   309
     ImageEditor openOnClass:self andSelector:#rightArrowPassiveIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   310
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   311
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   312
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   313
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   314
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   315
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   316
        constantNamed:'Windows8ToolbarIconLibrary class rightArrowPassiveIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   317
        ifAbsentPut:[(Depth1Image width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@\@@8@A0@N@A0@N@@@@@@@@@@@@')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   318
            colorMapFromArray:#[240 240 240 96 96 96]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   319
            mask:((ImageMask width:14 height:15) bits:(ByteArray fromPackedString:'@@@@@@@@@@@N@@\@@8@A0@N@A0@N@@@@@@@@@@@@'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   320
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   321
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   322
upArrowDisabledIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   323
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   324
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   325
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   326
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   327
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   328
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   329
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   330
     self upArrowDisabledIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   331
     ImageEditor openOnClass:self andSelector:#upArrowDisabledIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   332
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   333
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   334
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   335
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   336
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   337
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   338
        constantNamed:'Windows8ToolbarIconLibrary class upArrowDisabledIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   339
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A@@N@A<@N8@1 BB@@@@@@@@@@@@@a')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   340
            colorMapFromArray:#[240 240 240 165 165 165]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   341
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DA@PNAA<DN8P1!!BBD@@P@A@@D@@P@a'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   342
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   343
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   344
upArrowEnteredIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   345
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   346
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   347
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   348
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   349
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   350
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   351
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   352
     self upArrowEnteredIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   353
     ImageEditor openOnClass:self andSelector:#upArrowEnteredIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   354
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   355
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   356
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   357
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   358
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   359
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   360
        constantNamed:'Windows8ToolbarIconLibrary class upArrowEnteredIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   361
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A@@N@A<@N8@1 BB@@@@@@@@@@@@@a')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   362
            colorMapFromArray:#[240 240 240 0 0 0]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   363
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DA@PNAA<DN8P1!!BBD@@P@A@@D@@P@a'); yourself); yourself]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   364
!
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   365
6781
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   366
upArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   367
    "This resource specification was automatically generated
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   368
     by the ImageEditor of ST/X."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   369
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   370
    "Do not manually edit this!! If it is corrupted,
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   371
     the ImageEditor may not be able to read the specification."
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   372
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   373
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   374
     self upArrowIcon inspect
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   375
     ImageEditor openOnClass:self andSelector:#upArrowIcon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   376
     Icon flushCachedIcons
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   377
    "
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   378
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   379
    <resource: #image>
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   380
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   381
    ^Icon
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   382
        constantNamed:'Windows8ToolbarIconLibrary class upArrowIcon'
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   383
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@D@@P@A@@D@@P@A@@D@@P@A@@D@@P@a')
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   384
            colorMapFromArray:#[0 0 0 240 240 240]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   385
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DA@PNAA<DN8P1!!BBD@@P@A@@D@@P@a'); yourself); yourself]
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   386
!
d4b356512497 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6769
diff changeset
   387
6769
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   388
upArrowPassiveIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   389
    "This resource specification was automatically generated
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   390
     by the ImageEditor of ST/X."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   391
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   392
    "Do not manually edit this!! If it is corrupted,
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   393
     the ImageEditor may not be able to read the specification."
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   394
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   395
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   396
     self upArrowPassiveIcon inspect
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   397
     ImageEditor openOnClass:self andSelector:#upArrowPassiveIcon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   398
     Icon flushCachedIcons
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   399
    "
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   400
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   401
    <resource: #image>
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   402
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   403
    ^Icon
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   404
        constantNamed:'Windows8ToolbarIconLibrary class upArrowPassiveIcon'
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   405
        ifAbsentPut:[(Depth1Image width:15 height:14) bits:(ByteArray fromPackedString:'@@@@@@@@@@@A@@N@A<@N8@1 BB@@@@@@@@@@@@@a')
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   406
            colorMapFromArray:#[240 240 240 96 96 96]
8e4c8ea91f74 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6767
diff changeset
   407
            mask:((ImageMask width:15 height:14) bits:(ByteArray fromPackedString:'@@D@@P@A@@DA@PNAA<DN8P1!!BBD@@P@A@@D@@P@a'); yourself); yourself]
6764
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   408
! !
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   409
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   410
!Windows8ToolbarIconLibrary class methodsFor:'image specs-tools-FileBrowser-Filetypes'!
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   411
6766
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   412
fileTypeApplicationConfigIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   413
    "This resource specification was automatically generated
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   414
     by the ImageEditor of ST/X."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   415
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   416
    "Do not manually edit this!! If it is corrupted,
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   417
     the ImageEditor may not be able to read the specification."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   418
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   419
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   420
     self fileTypeApplicationConfigIcon inspect
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   421
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationConfigIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   422
     Icon flushCachedIcons
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   423
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   424
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   425
    <resource: #image>
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   426
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   427
    ^Icon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   428
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeApplicationConfigIcon'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   429
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   430
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@3N#(TH!!,VJ2-CC0<O
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   431
C0<OO#@0LC@0LC@0LCAHC0<OC0<OM!!<0LC@0LC@0LC@PC0<OC92#M):#)C@0LC@0LC@;C0<OC9*_''):_&#@0LC@0LC@-C0<OC9>_''):_''3@0LC@0LCAJC0<O
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   432
C9>_''9>_''3@0LC@0LC@W@@@@C96_''9>_''S@0LC@0LCAG@@@@C:BY''9>Y&3@0LC@0LC@X@@@@C:J^''9>^(S@0LC@0LC@!!@@@@C2"^''9>^''#@0LC@0LC@Q@@@@
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   433
C2"^''9>^''!!HRD!!HRD!!H=@@@@C2"^''9>^JD(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   434
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178 214 218 220 188 194 198 192 203 209 142 146 147 213 218 220 246 249 250 242 243 243 189 196 199 241 243 243 238 238 239 162 206 232 139 139 139 214 221 224 202 203 203 223 227 229 164 211 238 232 244 251 213 224 228 154 156 157 163 206 232 179 186 190 194 194 195 208 216 219 182 195 201 193 193 194 233 244 251 162 173 181 180 186 190 203 210 214 199 213 218 135 147 154 155 157 157 162 174 181 203 203 204 232 244 250 160 205 230 214 226 231 243 243 244 138 138 139 134 146 153 202 202 203 212 218 220 159 204 229 219 226 229 193 194 194 201 214 218 134 134 134 111 111 111 244 243 244 212 212 212 145 145 145 246 246 246 66 66 66 247 247 247 240 239 241 254 254 254 100 100 100 222 222 223]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   435
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?G?8?G?8?G?8?G?8?_?8?_?8?_?8?_?8?_?8?_?8?_?8?_?8?_?8?_?8?@@@?'); yourself); yourself]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   436
!
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   437
6764
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   438
fileTypeApplicationPdfIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   439
    "This resource specification was automatically generated
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   440
     by the ImageEditor of ST/X."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   441
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   442
    "Do not manually edit this!! If it is corrupted,
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   443
     the ImageEditor may not be able to read the specification."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   444
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   445
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   446
     self fileTypeApplicationPdfIcon inspect
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   447
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationPdfIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   448
     Icon flushCachedIcons
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   449
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   450
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   451
    <resource: #image>
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   452
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   453
    ^Icon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   454
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeApplicationPdfIcon'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   455
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   456
C0<@@@@@@@@@@@@@@@@@@@<O@@@@E"%DGJ?%6OG-*P@@@@@O@@@@JS@0LA<?O3<V<<P@@@@O@@@@QC@RL3(TH!!4VKOOX@@@O@@@@GCB3,;N3,2KY4*B#@@@O
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   457
@@@@+3@3N*XTH"H4MCF(@@@OC;"$;?K''9>3Z9NSK5LC@1*0OC:S]1<:<0.C(4M/E3M[A2K4OC>?GJB#0,R (5<+LJB"4-+4OC?KNJK:972#[*"#OJL"6/:4O
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   458
C>^<JN8()R#E3M;&JKR.,ND@C>_BJOR%62#L0:/HJK>08.$@C>3 JMC[1R"+8;V6JKC"2^$@C=+(4M/E3M[A2KZ?,NKI4]L@C;/$2=S@0LZ7/[6-8^'')4>(@
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   459
@@@@(1HRD!!HRD!!HRD!!J2@@@@@@@@*M2:N:IJ::^!!3[H=@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   460
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178 214 218 220 188 194 198 192 203 209 142 146 147 213 218 220 246 249 250 242 243 243 189 196 199 241 243 243 238 238 239 162 206 232 139 139 139 214 221 224 202 203 203 223 227 229 164 211 238 232 244 251 213 224 228 154 156 157 163 206 232 179 186 190 194 194 195 208 216 219 182 195 201 193 193 194 233 244 251 162 173 181 180 186 190 203 210 214 199 213 218 135 147 154 155 157 157 162 174 181 203 203 204 232 244 250 160 205 230 214 226 231 243 243 244 138 138 139 134 146 153 202 202 203 212 218 220 159 204 229 219 226 229 193 194 194 201 214 218 194 196 198 14 127 217 7 124 216 153 153 153 0 120 215 133 137 140 1 121 215 169 169 169 132 134 135 138 140 140 145 146 147 210 0 17 234 16 33 249 250 251 134 135 136 144 145 146 161 161 162 236 48 63 252 224 226 185 0 16 197 0 17 242 144 152 160 160 161 224 0 18 236 16 33 129 131 132 179 179 179 248 192 196 236 80 92 226 0 18 199 0 17 195 0 17 253 224 226 141 142 143 190 0 16 237 0 19 198 0 17 240 48 63 225 0 18 201 0 17 228 0 18 236 0 19 237 80 92 159 160 160 231 0 18 200 0 17 239 0 19 227 0 18 222 0 17 242 112 122 203 0 17 230 0 18 131 133 133 238 0 19 232 32 48 233 0 18 221 0 17 198 198 198 194 0 16 202 0 17 235 236 236 229 0 18 254 240 241 157 158 158 211 211 211 205 0 17 232 0 18 143 144 144 240 0 19 253 240 241 241 80 92 235 0 18 196 0 16 223 0 17 250 208 211 204 0 17 159 159 159 235 64 77 207 0 17 234 0 18 195 0 16 180 0 16 135 137 138 206 0 17 154 155 155 248 160 167 209 0 17 250 192 197 156 156 156 208 0 17 220 220 220 239 64 77]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   461
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?G?8?G?8?G?8?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?G?8?G?8?@@@?'); yourself); yourself]
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   462
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   463
6766
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   464
fileTypeApplicationResourcesIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   465
    "This resource specification was automatically generated
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   466
     by the ImageEditor of ST/X."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   467
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   468
    "Do not manually edit this!! If it is corrupted,
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   469
     the ImageEditor may not be able to read the specification."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   470
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   471
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   472
     self fileTypeApplicationResourcesIcon inspect
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   473
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationResourcesIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   474
     Icon flushCachedIcons
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   475
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   476
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   477
    <resource: #image>
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   478
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   479
    ^Icon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   480
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeApplicationResourcesIcon'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   481
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   482
@@@@@@@@A&@@Y&Y&Y&Y&Y&X@Y&Y!!DQDQM&Y&Y&Y$QDQBD&Y&Y&DQDQD4HRY&Y&EUUUDRP!!Y&Y&EUUUDQIAY&Y&EUUUDQEAY&Y&EUUUUUEAY&Y&EUUUUUEAY&
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   483
Y&EUUUUUEAY&Y&EUUUUUEAY&Y&EUUUUUEAY&Y&EUUUUUEAY&Y&EUUUUUE&Y&Y&DQDQDQE&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&')
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   484
            colorMapFromArray:#[232 192 64 66 66 66 134 134 134 156 156 156 246 246 246 240 239 241 248 224 128]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   485
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?A? ?A?0?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G? ?G? ?@@@?@@@?'); yourself); yourself]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   486
!
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   487
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   488
fileTypeApplicationSettingsIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   489
    "This resource specification was automatically generated
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   490
     by the ImageEditor of ST/X."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   491
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   492
    "Do not manually edit this!! If it is corrupted,
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   493
     the ImageEditor may not be able to read the specification."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   494
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   495
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   496
     self fileTypeApplicationSettingsIcon inspect
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   497
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationSettingsIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   498
     Icon flushCachedIcons
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   499
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   500
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   501
    <resource: #image>
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   502
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   503
    ^Icon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   504
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeApplicationSettingsIcon'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   505
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   506
]7]7]7]7]7]7]7]7]7]7]7]7]7]7\1D7]7]7]7^%^!!EGV'']7]7(QJAFBDZ]7]7TQDQDQDU]7]7\!! FXHD'']7]3RAA)% FDM7]1DQZQFVDQE7]1DQZQFVDQE7
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   507
]3*AA)% FJM7]7\!! FXHD'']7]7TQDQDQDU]7]7(QJAFBDZ]7]7^%^!!EGV'']7]7]7\1D7]7]7]7]7]7]7]7]7]7]7]7]7]7]7')
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   508
            colorMapFromArray:#[197 196 197 66 66 66 100 100 100 224 224 224 156 156 156 201 201 201 240 239 241 248 224 128 77 77 77 207 207 208 167 167 167]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   509
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@^@?C^0?G?8?G?8?C?0?O?<?O?<?O?<?O?<?C?0?G?8?G?8?C^0?@^@?@@@?@@@?'); yourself); yourself]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   510
!
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   511
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   512
fileTypeApplicationSharedLibraryIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   513
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   514
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   515
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   516
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   517
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   518
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   519
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   520
     self fileTypeApplicationSharedLibraryIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   521
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationSharedLibraryIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   522
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   523
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   524
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   525
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   526
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   527
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   528
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeApplicationSharedLibraryIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   529
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   530
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@3N#(TH!!,VJ2-CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   531
C0<OO#@:N(A6%1,]MB)HC0<OC0<OM!!<:_XE<&F84MB(PC0<OC0<OF#>L%E<V\H"SIB(;C0<OC0<OM3=6^QX(E(>QER(-C0<OC0<OH3=8Z3(V\8JR_9AJC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   532
C0<OPTH]"&>V[WU;%WHW@@@@C0<OMSD4MHNQ"XQ:#X-G@@@@C0<OHCD&I!!TU[G9;#''\X@@@@C0<OFR(UEQTU]HZE!!7D!!@@@@C0<OD2(UES%FQ$YFQ!!HQ@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   533
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   534
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178 214 218 220 188 194 198 192 203 209 142 146 147 213 218 220 246 249 250 242 243 243 189 196 199 241 243 243 238 238 239 162 206 232 139 139 139 214 221 224 202 203 203 223 227 229 164 211 238 232 244 251 213 224 228 154 156 157 163 206 232 179 186 190 194 194 195 208 216 219 182 195 201 193 193 194 233 244 251 162 173 181 180 186 190 203 210 214 199 213 218 135 147 154 155 157 157 162 174 181 203 203 204 232 244 250 160 205 230 214 226 231 243 243 244 138 138 139 134 146 153 202 202 203 212 218 220 159 204 229 219 226 229 193 194 194 201 214 218]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   535
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   536
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   537
6766
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   538
fileTypeApplicationVSProjectIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   539
    "This resource specification was automatically generated
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   540
     by the ImageEditor of ST/X."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   541
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   542
    "Do not manually edit this!! If it is corrupted,
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   543
     the ImageEditor may not be able to read the specification."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   544
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   545
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   546
     self fileTypeApplicationVSProjectIcon inspect
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   547
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationVSProjectIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   548
     Icon flushCachedIcons
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   549
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   550
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   551
    <resource: #image>
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   552
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   553
    ^Icon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   554
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeApplicationVSProjectIcon'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   555
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   556
QDQDQDQDQDQDQD&Y&Y&Y&Y%DRY%&Y&Y&VY&YRY%("H"FYY&YRY%("H"FY%&YRY%(!!&ZFY&&YRY%("H"H"F&Y&Y%("HZF"F&Y&Y%(@2DH"F&Y&SM0N*)6"F&Y
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   557
&Z(3*:)8"F&Y&Z"*.J)6"F&Y&Z"*.J)8"F&Y&Z(3*:)8"F&Y&SNYN*)6Y&&Y&Y&Y$2FY&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y&Y')
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   558
            colorMapFromArray:#[244 243 244 193 166 200 122 60 138 157 113 169 232 192 64 134 134 134 66 66 66 246 246 246 240 239 241 248 224 128 104 33 122 189 162 196]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   559
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?C? ?C?0?C?8?C?8?C?8?C?8?C?8?O?8?O?8?O?8?O?8?O?8?L?8?@\@?@@@?@@@?'); yourself); yourself]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   560
!
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   561
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   562
fileTypeApplicationVSSolutionIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   563
    "This resource specification was automatically generated
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   564
     by the ImageEditor of ST/X."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   565
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   566
    "Do not manually edit this!! If it is corrupted,
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   567
     the ImageEditor may not be able to read the specification."
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   568
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   569
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   570
     self fileTypeApplicationVSSolutionIcon inspect
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   571
     ImageEditor openOnClass:self andSelector:#fileTypeApplicationVSSolutionIcon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   572
     Icon flushCachedIcons
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   573
    "
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   574
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   575
    <resource: #image>
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   576
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   577
    ^Icon
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   578
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeApplicationVSSolutionIcon'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   579
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   580
UUUUUUUUUUUUUUL3L3L3L3UUUUL3L3L3L3UUUQDQDQDQDQEUUQDQDQDQDQEUUQDQDQDQDQEUUQH"H"H"H"EUL1H"H"H"H"EUL1H"ID@"H"EUL<P"RX)BH"EU
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   581
L9%D%&Z2H"D3L6ZYY6Z2H"D3L6]&\&Z2H"D3L6]&\&Z2H"D3L6ZYY6Z1DQD3L9$3%&X3L3L3L3L3NX(3L3L3L3L3MUT3L3L3')
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   582
            colorMapFromArray:#[241 240 242 66 66 66 240 239 241 248 224 128 244 243 244 232 192 64 103 32 121 189 161 196 121 59 137 157 112 168 192 166 199 246 246 246 179 179 179]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   583
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@@@?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?L<@?@\@?@@@?'); yourself); yourself]
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   584
!
b512d3db7b54 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 6764
diff changeset
   585
6783
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   586
fileTypeArchiveIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   587
    "This resource specification was automatically generated
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   588
     by the ImageEditor of ST/X."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   589
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   590
    "Do not manually edit this!! If it is corrupted,
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   591
     the ImageEditor may not be able to read the specification."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   592
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   593
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   594
     self fileTypeArchiveIcon inspect
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   595
     ImageEditor openOnClass:self andSelector:#fileTypeArchiveIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   596
     Icon flushCachedIcons
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   597
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   598
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   599
    <resource: #image>
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   600
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   601
    ^Icon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   602
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeArchiveIcon'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   603
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   604
"BH"H"H"H"JHH"H"H"H"H"H(H"H"@@@@@@@HH"L3L3L3L3L8H#UUUUUUUUT8H4QDQDQDQD@8 5UUUUUUUT@8 5@@@@@@@D@8 5@@@@@@@D@8 5@@@@@@@D@8
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   605
 5@@@@@I&T@2 5@@@@$IBT@2 5@@$IBP&TL2 5$IBP$I&T@B 3L3L3L3L3@BH@@@@@@@@@@"H"H"H"H"H"H"H"H"H"H"H"H"')
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   606
            colorMapFromArray:#[255 255 153 0 0 255 248 224 128 153 153 0 204 204 102 255 255 204 255 255 255 4 4 4 232 192 64 255 204 153]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   607
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@@@?G?>?O?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?8?_?8?@@@?@@@?@@@?'); yourself); yourself]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   608
!
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   609
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   610
fileTypeArchiveJarIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   611
    "This resource specification was automatically generated
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   612
     by the ImageEditor of ST/X."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   613
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   614
    "Do not manually edit this!! If it is corrupted,
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   615
     the ImageEditor may not be able to read the specification."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   616
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   617
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   618
     self fileTypeArchiveJarIcon inspect
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   619
     ImageEditor openOnClass:self andSelector:#fileTypeArchiveJarIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   620
     Icon flushCachedIcons
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   621
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   622
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   623
    <resource: #image>
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   624
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   625
    ^Icon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   626
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeArchiveJarIcon'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   627
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   628
"BH"H"H"H"JHH"H"H"H"H"H(H"H"DQDQDQDXH"L3E&Y&Y&XXH#)UE&DQDVXXH4QDE&DQDVXX 5UUE&Y&DVXX 5@@E&DVDVXX 5@@E&DVDVXX 5@@E&DQDVXX
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   629
 5@@E&Y&Y&XR 5@@DQDQDQDR 5@@$IBP&TQB 5$IBP$I&T@" 3L3L3L3L3@"H @@@@@@@@@"H"H"H"H"H"H"H"H"H"H"H"H"')
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   630
            colorMapFromArray:#[255 255 153 0 0 255 248 224 128 153 153 0 204 204 102 255 255 204 255 255 255 4 4 4 232 192 64 255 204 153 221 221 221]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   631
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@?>?G?>?O?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?8?_?8?@@@?@@@?@@@?'); yourself); yourself]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   632
!
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   633
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   634
fileTypeArchiveRarIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   635
    "This resource specification was automatically generated
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   636
     by the ImageEditor of ST/X."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   637
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   638
    "Do not manually edit this!! If it is corrupted,
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   639
     the ImageEditor may not be able to read the specification."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   640
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   641
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   642
     self fileTypeArchiveRarIcon inspect
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   643
     ImageEditor openOnClass:self andSelector:#fileTypeArchiveRarIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   644
     Icon flushCachedIcons
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   645
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   646
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   647
    <resource: #image>
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   648
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   649
    ^Icon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   650
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeArchiveRarIcon'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   651
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   652
"BH"H"H"H"JHH"H"H"H"H"H(H"H"DQDQDQDXH"L3E&Y&Y&XXH#)UE&DQDVXXH4QDE&DVXQXX 5UUE&DVXQXX 5@@E&DQDVXX 5@@E&DVXQXX 5@@E&DVXQXX
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   653
 5@@E&Y&Y&XR 5@@DQDQDQDR 5@@$IBP&TQB 5$IBP$I&T@" 3L3L3L3L3@"H @@@@@@@@@"H"H"H"H"H"H"H"H"H"H"H"H"')
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   654
            colorMapFromArray:#[255 255 153 0 0 255 248 224 128 153 153 0 204 204 102 255 255 204 255 255 255 4 4 4 232 192 64 255 204 153 221 221 221]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   655
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@?>?G?>?O?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?8?_?8?@@@?@@@?@@@?'); yourself); yourself]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   656
!
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   657
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   658
fileTypeArchiveTarIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   659
    "This resource specification was automatically generated
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   660
     by the ImageEditor of ST/X."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   661
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   662
    "Do not manually edit this!! If it is corrupted,
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   663
     the ImageEditor may not be able to read the specification."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   664
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   665
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   666
     self fileTypeArchiveTarIcon inspect
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   667
     ImageEditor openOnClass:self andSelector:#fileTypeArchiveTarIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   668
     Icon flushCachedIcons
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   669
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   670
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   671
    <resource: #image>
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   672
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   673
    ^Icon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   674
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeArchiveTarIcon'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   675
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   676
"BH"H"H"H"JHH"H"H"H"H"H(H"H @QDQDQDXH"L3LVY&Y&XXH#)UTVDQDQXXH4QDPVDQDQXX 5UUTVY!!E&XX 5@@@VY!!E&XX 5@@@VY!!E&XX 5@@@VY!!E&XX
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   677
 5@@@VY&Y&XR 5@@@QDQDQDR 5@@$IBP&TQB 5$IBP$I&T@" 3L3L3L3L3@"H @@@@@@@@@"H"H"H"H"H"H"H"H"H"H"H"H"')
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   678
            colorMapFromArray:#[255 255 153 0 0 255 248 224 128 153 153 0 204 204 102 255 255 204 255 255 255 4 4 4 232 192 64 255 204 153 221 221 221]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   679
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@_>?G?>?O?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?8?_?8?@@@?@@@?@@@?'); yourself); yourself]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   680
!
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   681
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   682
fileTypeArchiveZipIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   683
    "This resource specification was automatically generated
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   684
     by the ImageEditor of ST/X."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   685
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   686
    "Do not manually edit this!! If it is corrupted,
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   687
     the ImageEditor may not be able to read the specification."
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   688
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   689
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   690
     self fileTypeArchiveZipIcon inspect
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   691
     ImageEditor openOnClass:self andSelector:#fileTypeArchiveZipIcon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   692
     Icon flushCachedIcons
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   693
    "
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   694
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   695
    <resource: #image>
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   696
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   697
    ^Icon
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   698
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeArchiveZipIcon'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   699
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   700
"BH"H"H"H"JHH"H"H"H"H"H(H"H"HQDQDQDXH"L3LVY&Y&XXH#)U@VXQDQXXH4QDPVY&XQXX 5UUTVY&DVXX 5@@@VY!!E&XX 5@@@VXQY&XX 5@@@VXQDQXX
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   701
 5@@@VY&Y&XR 5@@@QDQDQDR 5@@$IBP&TQB 5$IBP$I&T@" 3L3L3L3L3@"H @@@@@@@@@"H"H"H"H"H"H"H"H"H"H"H"H"')
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   702
            colorMapFromArray:#[255 255 153 0 0 255 248 224 128 153 153 0 204 204 102 255 255 204 255 255 255 4 4 4 232 192 64 255 204 153 221 221 221]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   703
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@_>?G?>?O?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?8?_?8?@@@?@@@?@@@?'); yourself); yourself]
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   704
!
ad6415741642 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6781
diff changeset
   705
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   706
fileTypeBinaryFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   707
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   708
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   709
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   710
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   711
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   712
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   713
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   714
     self fileTypeBinaryFileIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   715
     ImageEditor openOnClass:self andSelector:#fileTypeBinaryFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   716
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   717
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   718
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   719
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   720
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   721
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   722
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeBinaryFileIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   723
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   724
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#G@@@C0<OC0<ORS@0LA<?O3<VOG4@C0<OC0<OGC@RL3(TH"HVKB\6C0<OC0<OK#@3N#(TH!!.F 65CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   725
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM%1OE%1OE%1^W"(PC0<OC0<OF% VS1YOE$=\WB(;C0<OC0<OM5HVS1YOE%1\WB(-C0<OC0<OH6MO&$=OE$=\WB)JC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   726
C0<OPY"YS4=OS4=\WBTW@@@@C0<OMY]OE$=OE$>RE!!IG@@@@C0<OHI%OE%LVVAY\E!!HX@@@@C0<OFRUOE$<VS1YME!!H!!@@@@C0<OD3BYE%UUE$>VE!!HQ@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   727
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   728
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178 229 229 229 222 222 222 169 169 169 120 182 231 89 166 227 167 207 238 243 245 247 88 166 227 140 193 234 233 241 247 16 128 216 179 213 239 1 121 214 83 163 226 150 197 235 189 218 241 90 167 227 160 203 236 159 160 160 25 133 218 19 130 217 227 237 245 191 219 242 201 224 242 198 198 198 3 122 214 229 238 246 211 211 211 74 158 225 16 129 216 222 235 245 123 184 231 151 198 235 41 141 220 243 246 248 246 247 249 0 120 214 138 191 233 107 176 230 247 247 247 220 220 220 231 231 231 225 225 225 244 244 240 246 246 246 245 245 245 248 248 248 177 177 177]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   729
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   730
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   731
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   732
fileTypeCPlusPlusSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   733
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   734
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   735
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   736
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   737
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   738
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   739
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   740
     self fileTypeCPlusPlusSourceIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   741
     ImageEditor openOnClass:self andSelector:#fileTypeCPlusPlusSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   742
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   743
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   744
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   745
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   746
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   747
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   748
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeCPlusPlusSourceIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   749
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   750
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#G@@@C0<OC0<ORS@0LA<?O3<VOG4@C0<OC0<OGC@RL3(TH"HVKB\6C0<OC0<OK#@3N#(TH!!.F 65CC0<O
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
   751
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM!!<:N#(:L3L3MB(PC0<OC0<OF#<:ZV%*EAPTEB(;C0<OC0<OM3=)Z!!PTEAPTEB(-C0<OC0<OH3=)Z!!PTZQQ)T")JC0<O
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
   752
C0<OPTI)Z$=)ZV))ZRTW@@@@C0<OMSE)Z$5MZT=)$!!IG@@@@C0<OHCE)Z$5MIT5OS1HX@@@@C0<OFR(TZV%*NDYFQ!!H!!@@@@C0<OD2(UES%FQ$YFQ!!HQ@@@@
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   753
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   754
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178 229 229 229 222 222 222 169 169 169 120 182 231 89 166 227 167 207 238 243 245 247 88 166 227 140 193 234 233 241 247 16 128 216 179 213 239 1 121 214 83 163 226 150 197 235 189 218 241 90 167 227 160 203 236 159 160 160 25 133 218 19 130 217 227 237 245 191 219 242 201 224 242 198 198 198 3 122 214 229 238 246 211 211 211 74 158 225 16 129 216 222 235 245 123 184 231 151 198 235 41 141 220 243 246 248 246 247 249 0 120 214 138 191 233 107 176 230 247 247 247]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   755
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   756
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   757
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   758
fileTypeCSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   759
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   760
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   761
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   762
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   763
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   764
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   765
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   766
     self fileTypeCSourceIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   767
     ImageEditor openOnClass:self andSelector:#fileTypeCSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   768
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   769
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   770
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   771
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   772
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   773
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   774
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeCSourceIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   775
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   776
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#G@@@C0<OC0<ORS@0LA<?O3<VOG4@C0<OC0<OGC@RL3(TH"HVKB\6C0<OC0<OK#@3N#(TH!!.F 65CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   777
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM!!<:L3L3L3L3MB(PC0<OC0<OF#<TWF%)ZV)\IB(;C0<OC0<OM3<"ZV(3L6%*ER(-C0<OC0<OH3<[ZV)\WE1\ER)JC0<O
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
   778
C0<OPTH]ZV)OS4>RERTW@@@@C0<OMSD4ZV)OS4>RNQIG@@@@C0<OHCD&ZV)MSV%*Q!!HX@@@@C0<OFR(U$6%)ZV)MQ!!H!!@@@@C0<OD2(UES%FQ$YFQ!!HQ@@@@
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   779
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   780
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178 229 229 229 222 222 222 169 169 169 120 182 231 89 166 227 167 207 238 243 245 247 88 166 227 140 193 234 233 241 247 16 128 216 179 213 239 1 121 214 83 163 226 150 197 235 189 218 241 90 167 227 160 203 236 159 160 160 25 133 218 19 130 217 227 237 245 191 219 242 201 224 242 198 198 198 3 122 214 229 238 246 211 211 211 74 158 225 16 129 216 222 235 245 123 184 231 151 198 235 41 141 220 243 246 248 246 247 249 0 120 214 138 191 233 107 176 230 247 247 247 220 220 220]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   781
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   782
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   783
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   784
fileTypeDesktopIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   785
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   786
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   787
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   788
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   789
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   790
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   791
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   792
     self fileTypeDesktopIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   793
     ImageEditor openOnClass:self andSelector:#fileTypeDesktopIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   794
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   795
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   796
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   797
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   798
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   799
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   800
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeDesktopIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   801
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   802
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@EIRT%IRT%IRT%IRT%IRT%H@@EJD!!HRD!!HRD!!F"I (%K VL@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   803
@EJD!!HRD!!HRD!!HFI W5+RWT@@EJD!!HRD!!HRD[D-YRVY-]E@@@EJD!!HRD!!HQJ"G57 798Z''H@@EJD!!HRD!!E*AYG]4!!V])W8,@@EJD!!HRD!!FQY]7Q8^''-^\D\@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   804
@EJD!!HRDY(EI 7!!:YU-"TWL@@EJD!!HQS"W5&_(Y;V7YV_50@@EJD!!E)K"F.C^F%^X%Y!!!!7$@@EILS5VJ[$6@VG1 S"-TJ80@@EIRT%IRU55P\(-G\51/#D @
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   805
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   806
            colorMapFromArray:#[100 158 254 184 205 219 59 97 74 103 142 182 200 232 255 217 239 255 128 162 193 157 183 206 119 173 254 44 73 67 193 209 223 62 105 143 61 104 145 71 118 169 68 104 84 185 218 255 156 181 203 182 211 242 219 240 255 149 193 254 195 225 255 210 231 250 85 128 116 96 141 139 209 235 255 191 222 255 67 115 171 119 154 143 68 116 169 128 162 158 215 238 255 142 178 191 165 165 165 187 206 220 118 147 167 198 232 255 195 211 224 173 196 214 228 242 255 101 137 125 165 204 254 164 204 255 117 153 188 255 255 255 64 105 76 49 81 68 182 201 217 204 227 248 138 163 181 110 142 167 138 185 254 177 200 216 175 211 254 207 232 247 76 115 150 205 227 248 91 131 112 157 199 254 201 233 255 62 105 144 167 192 212 75 117 96 76 120 92 189 210 212 83 127 173 179 203 206 181 215 255 108 143 133 56 92 72 149 181 182 43 71 67 23 128 191 41 135 191 11 163 255 21 166 254 3 160 255 254 254 254 7 89 140 24 96 140 27 104 151 11 124 191 44 175 255 0 120 191 22 166 254 31 99 140 8 92 143 47 176 255 4 121 191 14 92 140 7 162 255 25 167 254 37 173 255 31 131 191 8 122 191 35 172 255 31 170 255 21 95 140 52 178 255 41 174 255 3 121 191 9 162 255 33 171 255 14 164 255 26 168 255 24 167 254 29 170 255 25 168 255 10 163 255 12 163 255 16 165 255 3 88 140 35 132 191 38 173 255 255 255 255 15 125 191 27 129 191 18 166 255 7 122 191 43 174 255 13 164 255 23 167 255 34 132 191 28 169 255 32 171 255 17 94 140 8 162 255 20 166 255 50 177 255 10 91 140 5 161 255 0 159 255 17 165 255 27 168 254 22 167 255 26 169 255 56 180 255 4 160 255 2 160 255 0 87 140 19 127 191 38 133 191]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   807
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@@@?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?@@@?@@@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   808
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   809
6764
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   810
fileTypeDirectoryGrayIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   811
    "This resource specification was automatically generated
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   812
     by the ImageEditor of ST/X."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   813
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   814
    "Do not manually edit this!! If it is corrupted,
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   815
     the ImageEditor may not be able to read the specification."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   816
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   817
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   818
     self fileTypeDirectoryGrayIcon inspect
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   819
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryGrayIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   820
     Icon flushCachedIcons
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   821
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   822
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   823
    <resource: #image>
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   824
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   825
    ^Icon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   826
        constantNamed:'VistaToolbarIconLibrary class fileTypeDirectoryGrayIcon'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   827
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   828
@@@@@@@@@@@@@@DRH#L3L4@@@@EUU&Y&]3@@@@IUY&Y'']3@@@@IVY&Y7^C@@@@I&Y&]7"I@@@@M&Y'']8")@@@@M&Y7^H*)@@@@M&]7"J* @@@@M'']8"**0@@
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   829
@@M7^H**+C4@@@M7"J**(K@@@@M8"***(J@@@@NH****,K@@@@NJ***+/+8@@@N****;/+8@@@&Y@@@N;.<@@@@@@@@@@@@@')
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   830
            colorMapFromArray:#[191 191 191 204 204 204 199 199 199 196 196 196 207 207 207 229 229 229 228 228 228 228 228 228 223 223 223 192 192 192 222 222 222 221 221 221 198 198 198 205 205 205 188 188 188 192 192 192]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   831
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?<?G?<?G?<?G?<?G?<?G?<?G?<?@@@?'); yourself); yourself]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   832
!
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   833
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   834
fileTypeDirectoryIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   835
    "This resource specification was automatically generated
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   836
     by the ImageEditor of ST/X."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   837
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   838
    "Do not manually edit this!! If it is corrupted,
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   839
     the ImageEditor may not be able to read the specification."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   840
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   841
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   842
     self fileTypeDirectoryIcon inspect
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   843
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   844
     Icon flushCachedIcons
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   845
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   846
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   847
    <resource: #image>
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   848
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   849
    ^Icon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   850
        constantNamed:'VistaToolbarIconLibrary class fileTypeDirectoryIcon'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   851
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   852
??????????????&Z*$QDQL????$QG.;.Y$????(Q;.;&Y$????(^;.9&Y4????+.;.Y&]2????S.;&Y''\2????S.9&Y7L2????S.Y&]3L?????S&Y''\3LO??
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   853
??Q&Y7L3N47???Q&]3L3O0????Q''\3L3O3????Q7L3L3C0????Q3L3L0B@#???P3L3L@B@#???H"???8"HW?????????????')
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   854
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   855
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?8?G?<?G?<?G?<?G?<?G?<?G?<?G?<?@@@?'); yourself); yourself]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   856
!
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   857
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   858
fileTypeDirectoryNetworkIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   859
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   860
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   861
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   862
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   863
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   864
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   865
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   866
     self fileTypeDirectoryNetworkIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   867
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryNetworkIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   868
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   869
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   870
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   871
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   872
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   873
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   874
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeDirectoryNetworkIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   875
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   876
% @@@@@@@@@@@@@@@@@@@@@@% @@@@@@@@A3&)''H0X@@@@@@% @@@@@@@K=STH>:''&#@+0BV% @@@@@@!!''*G0*"1'';VI1PBV@@@@@@@@^=IW$H6&%J^K.Y^V
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   877
@@@@@@A-UE%" ;N4**^8Z*&V@@@@@@CGWG7OXD^E$X))05VV@K^7-;^7-;^7-;_N.6M+&GVV@K]XV$=>4UE02(Q!!SFVR^GH@@K][/%5,(EF]-&^2/GR\]70@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   878
@K]XV$=>%XF6,LQN^\6-Y@@@@K_T5L''Q(;[P1&>BRTZ,@@@@@K^=(GEH!!GYJ$59V20@@@@@@@L:# Z9KS$5^"E>V&0@@@@@@@G>!![+19Y(3KT,2[)P@@@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   879
% @@@@@@(*H@@@@@@@@@@@@@% @@@H:N#(:N# @@@@@@@@BV% @@@@@@@@@@@@@@@@@@@@BV')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   880
            colorMapFromArray:#[130 132 132 210 212 216 221 223 226 215 218 221 50 50 50 180 184 188 182 187 190 162 166 169 0 0 0 45 45 45 198 203 207 160 163 167 165 169 172 185 190 194 157 161 165 109 204 233 241 242 244 209 214 218 213 216 220 219 221 225 191 238 252 39 99 39 176 180 184 163 167 171 91 91 91 169 172 176 127 221 248 57 57 57 78 78 78 230 233 235 161 165 168 44 44 44 92 255 92 159 162 166 223 225 228 235 236 237 167 170 174 187 192 195 32 196 244 52 101 52 157 160 164 34 98 34 66 66 66 175 179 183 53 53 53 157 161 164 177 182 186 61 61 61 42 99 42 202 205 210 208 210 215 221 227 232 188 193 197 166 214 230 72 72 72 181 185 189 158 162 165 110 205 233 178 183 187 0 188 242 184 188 192 176 181 184 206 209 213 212 214 218 217 220 223 210 215 219 156 160 164 177 181 185 84 84 84 204 207 211 54 102 125 81 165 208 104 197 255 54 120 159 61 182 255 76 187 255 61 122 159 59 181 255 62 182 255 123 204 255 198 230 238 106 198 255 51 118 159 191 224 231 148 201 222 166 205 215 53 179 255 185 226 241 126 206 255 156 209 232 127 206 255 130 207 255 88 169 209 125 205 255 56 180 255 51 178 255 93 175 216 72 185 255 120 193 227 63 133 167 118 147 160 59 126 158 55 120 159 70 185 255 175 213 225 89 147 174 205 234 240 56 120 150 119 203 255 222 238 246 59 121 159 60 181 255 100 196 255 109 199 255 105 138 153 235 244 247 54 117 146 46 94 117 64 183 255 39 89 112 44 98 123 56 120 159 190 224 231 176 214 226 200 211 216 153 207 229 117 202 255 62 122 159 214 234 239 103 197 255 58 180 255 85 173 217 79 188 255 77 158 198 229 241 244 210 237 243 54 179 255 197 228 235 66 137 172 137 184 204 54 119 159 83 168 210 145 161 179 204 234 241 94 177 219 72 149 187 52 113 142 58 181 255 73 151 189 111 200 255 48 177 255 203 228 233 77 128 151 183 218 229 211 233 238 49 118 159 47 104 131 99 195 255 77 148 183 72 148 186 113 201 255 60 122 159 198 208 215 105 198 255 250 252 253 47 117 159 79 160 201 67 139 175 179 221 237 185 219 226 73 151 190 255 255 255 159 180 190 41 92 117 99 196 255 232 241 243 68 184 255 113 179 210 67 184 255 83 168 211 79 161 202 75 143 176 80 188 255 65 123 159 140 186 205 198 229 235 109 173 203 63 123 159 58 121 159 114 201 255 131 207 255 226 240 243 191 223 231 146 191 209 211 239 247 206 235 240 65 183 255 156 194 207 63 182 255 211 231 241 122 178 201 118 203 255 93 193 255 52 119 159 50 118 159 48 105 132 64 123 159 146 205 231 66 183 255 112 200 255 152 206 229 244 249 250 121 204 255]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   881
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@O0?@_<?@?<?@?>?A?>?A?>?_?>?_?>?_?>?_?<?_?8?_? ?_? ?_? ?@0@?C<@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   882
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   883
6764
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   884
fileTypeDirectoryOpenIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   885
    "This resource specification was automatically generated
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   886
     by the ImageEditor of ST/X."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   887
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   888
    "Do not manually edit this!! If it is corrupted,
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   889
     the ImageEditor may not be able to read the specification."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   890
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   891
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   892
     self fileTypeDirectoryOpenIcon inspect
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   893
     ImageEditor openOnClass:self andSelector:#fileTypeDirectoryOpenIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   894
     Icon flushCachedIcons
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   895
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   896
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   897
    <resource: #image>
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   898
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   899
    ^Icon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   900
        constantNamed:'VistaToolbarIconLibrary class fileTypeDirectoryOpenIcon'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   901
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   902
@@@@@@@@@@@@@@@@@@@@@@@@@@@BPTPQ!!G<6"6@5]"0@@@@@@@YMZ#5\F7 DWU5]O8X@@@@@@@AMU5\!!HR!!+\UQ>S8$@@@@@@@AMU5]WE#M;NT=''W"8@@@@@
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   903
@@@-U5]WHTA,B58SZA0@@@@@@@AJU5\JD!! 8O& WC!!@@@@@@@@@ U0)SLD,A]0:ELXM"@@@@@@@$B%M#J 5%VSD&TB$2@@@@@@A=T6M5M2JAC5@)XV8_@@@@
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   904
@@AZX7T7RH\4Y&D:@69N@@@@@@@E]S]HP''0+IPL^A69[@@@@@@@TM4!!BSD]/BP\]GTLH@@@@@@@LRDIL"%UR^!!4]GWAX@@@@@@@;P$2J\%T#^!!4]GV%E@@@@
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   905
@@BHRXHYEUT<TUYXQ&Q9@@@@@@@@@A)4\5</@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   906
            colorMapFromArray:#[252 252 252 205 185 103 247 236 174 225 199 90 250 245 188 233 216 120 251 251 250 223 195 81 216 192 93 216 186 81 249 245 176 227 207 124 228 209 111 210 186 81 240 226 144 220 194 98 223 201 106 242 224 137 254 253 244 245 236 165 231 212 116 214 191 95 255 255 255 242 229 151 215 192 89 214 191 93 234 225 184 237 223 135 225 202 109 222 193 77 224 197 85 219 195 98 242 227 136 255 255 252 208 183 77 195 166 66 240 224 132 217 188 85 234 215 121 245 241 229 224 203 104 230 208 108 246 241 198 198 172 77 242 231 190 245 230 141 226 204 111 218 207 172 252 250 232 236 218 130 220 197 100 221 200 99 200 175 83 234 213 124 239 219 134 236 225 146 206 188 109 229 210 129 227 202 95 225 206 107 193 166 74 253 251 233 225 204 117 249 244 182 218 196 94 245 231 142 228 212 128 92 185 221 244 228 141 219 199 114 214 190 91 202 176 68 232 219 137 217 195 94 243 229 138 212 189 85 224 206 118 245 231 141 218 194 97 250 244 183 232 211 114 212 184 85 196 168 68 247 241 170 252 249 191 202 175 67 215 192 93 251 247 180 215 191 92 222 198 104 236 219 124 217 193 95 244 234 153 253 250 194 247 239 172 196 175 99 236 215 128 228 205 101 234 220 164 244 236 163 219 199 113 203 182 96 218 191 91 249 242 177 243 233 158 221 193 79 251 246 177 213 198 126 208 190 115 0 0 0 236 236 236 196 169 72 72 165 211 246 238 174 218 196 102 204 179 76 218 200 125 240 231 155 235 216 138 224 201 111 220 205 120 234 224 179 215 184 77 209 192 119 204 178 70 238 222 129 251 247 187 241 221 137 247 245 234 201 178 90 214 192 92 226 204 110 241 222 136 238 222 137 232 213 134 206 180 73 230 214 141 228 205 113 221 201 110 238 217 131]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   907
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?O?0?_?0?O?0?O?0?O?0?O?0?O?8?O?8?O?8?O?8?O?8?O?8?O?8?O?8?O?8?C8@?@@@?'); yourself); yourself]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   908
!
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
   909
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   910
fileTypeDocumentIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   911
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   912
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   913
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   914
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   915
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   916
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   917
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   918
     self fileTypeDocumentIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   919
     ImageEditor openOnClass:self andSelector:#fileTypeDocumentIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   920
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   921
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   922
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   923
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   924
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   925
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   926
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeDocumentIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   927
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   928
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@0LC@0LA,VJ2-CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   929
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM!!<0LC@0LC@0LB(PC0<OC0<OF#<TH"H"F3P4IB(;C0<OC0<OM3<0LC@0LC@0LB(-C0<OC0<OH3<[F144MCP&ER)JC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   930
C0<OPS@0LC@0LC@0LBTW@@@@C0<OMSD4MCP$EQTUNQIG@@@@C0<OHCD0LC@0LC@0LAHX@@@@C0<OFR(UEQTUNDYFQ!!H!!@@@@C0<OD2(0LC@0LC@0LAHQ@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   931
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   932
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   933
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   934
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   935
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   936
fileTypeDocumentsIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   937
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   938
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   939
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   940
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   941
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   942
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   943
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   944
     self fileTypeDocumentsIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   945
     ImageEditor openOnClass:self andSelector:#fileTypeDocumentsIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   946
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   947
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   948
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   949
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   950
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   951
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   952
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeDocumentsIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   953
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   954
%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZVA)DD@;LB#PFJAP0Q%)ZV%)ZV$P<OC;CQ6=,GB(<L%)ZV%)ZVA@>.6Y"85=\GB0&2%)ZV%)ZV@0?Y-4^8"J4G@@A9%)ZV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   955
%)ZV,0?NW%;M5:7V5])7%)ZV%)ZV@-A^/$^="H"H"M)2%)ZV%)ZV#]/X5=_W+]WU+M)0%)ZV%)ZV@],;N3,;N3,;N=*C%)ZV%)ZV"-.-+][U5]WT4=)%%)ZV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   956
%)ZV,P8HB@#U&:J[&P5"%)ZV%)ZV *?U5]V,%YR<2Z9]%)ZV%)ZV Z<HB@#SE1(^U*9Z%)ZV%)ZV_=+S4=OS*=KR4*9T%)ZV%)ZV_](HB@ HB@ HBJ9P%)ZV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   957
%)ZV^Z:.+*:.+*:.+*9M%)ZV%)ZV]7I0 6U"WU)TTD5J%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   958
            colorMapFromArray:#[140 140 140 155 155 155 158 158 158 161 161 161 162 162 162 163 163 163 165 165 165 166 166 166 179 179 179 213 213 213 214 214 214 234 234 234 235 235 235 251 251 251 252 252 252 253 253 253 254 254 254 255 255 255 255 255 255 64 105 76 43 71 67 44 73 67 49 81 68 51 84 70 56 92 72 59 97 74 66 105 84 68 104 84 75 117 96 76 120 92 82 120 103 85 128 116 91 131 112 101 137 125 108 143 133 119 154 143 0 87 140 3 88 140 7 89 140 10 91 140 8 92 143 14 92 140 17 94 140 21 95 140 24 96 140 31 99 140 27 104 151 0 120 191 3 121 191 4 121 191 7 122 191 8 122 191 11 124 191 62 105 143 62 105 144 61 104 145 15 125 191 19 127 191 23 128 191 0 137 217 27 129 191 31 131 191 34 132 191 96 141 139 76 115 150 35 132 191 38 133 191 41 135 191 68 116 169 67 115 171 71 118 169 31 151 221 0 159 255 83 127 173 127 129 130 2 160 255 3 160 255 128 130 131 4 160 255 5 161 255 130 132 132 7 162 255 8 162 255 9 162 255 131 133 134 10 163 255 116 150 147 11 163 255 12 163 255 128 162 158 133 134 135 13 164 255 14 164 255 134 136 136 47 158 223 16 165 255 17 165 255 18 166 255 136 137 138 21 166 254 20 166 255 137 138 139 22 166 254 110 142 167 22 167 255 23 167 255 24 167 254 25 167 254 25 168 255 27 168 254 26 168 255 26 169 255 140 141 142 28 169 255 141 143 143 29 170 255 118 147 167 31 170 255 32 171 255 143 144 145 33 171 255 144 146 146 35 172 255 37 173 255 38 173 255 146 147 147 41 174 255 147 148 149 43 174 255 149 150 150 150 151 151 139 140 141 103 142 182 44 175 255 47 176 255 117 153 188 71 180 234 50 177 255 153 154 154 52 178 255 56 180 255 156 157 157 138 163 181 160 161 161 128 162 193 163 164 164 149 181 182 142 178 191 148 184 190 158 188 190 100 158 254 156 181 203 125 194 234 107 164 254 157 183 206 114 168 254 119 173 254 167 192 212 179 203 206 173 196 214 177 200 216 189 210 212 137 182 254 138 185 254 182 201 217 184 205 219 149 193 254 187 206 220 157 199 254 193 209 223 195 211 224 246 247 247 247 248 248 248 249 249 250 251 251 251 252 252 252 253 253 152 152 153 158 158 159 159 159 160 165 204 254 164 204 255 182 211 242 187 222 242 187 221 242 175 211 254 181 215 255 185 218 255 202 227 239 202 228 243 202 228 244 191 222 255 195 225 255 204 227 248 205 227 248 198 232 255 207 232 247 200 232 255 201 233 255 210 231 250 209 235 255 213 235 255 215 238 255 217 239 255 219 240 255 233 242 248 234 243 248 228 242 255 236 246 251 236 245 251 245 246 247 246 247 248 247 247 248 247 248 249 248 248 249 248 249 250 249 249 250 250 250 251 251 251 252 252 252 253]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   959
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   960
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   961
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   962
fileTypeDownloadsIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   963
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   964
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   965
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   966
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   967
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   968
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   969
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   970
     self fileTypeDownloadsIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   971
     ImageEditor openOnClass:self andSelector:#fileTypeDownloadsIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   972
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   973
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   974
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   975
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   976
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   977
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   978
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeDownloadsIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   979
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   980
%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV% @@@@@@VG=?_7=!!@@@@@@BV% @@@@@@ZFY&Y&Y4@@@@@@BV% @@@@@@\5MST5M>@@@@@@BV% @@@@@@^G-;^7-R@@@@@@BV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   981
% @@@@@@WXVE!!XU=@@@@@@BV% @@@@@@_VU%YVU5@@@@@@BV% @@@@@@[%UUUUVG@@@@@@BV% @@@@@@\V)*Z&*C@@@@@@BV%&Q: 8NCVW1<_G1Y!!(ZFV(BV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   982
% A''\&5-[V5-[V5-[V6DX0BV% @@XF10\GA0\GA0\E-/@@BV% @@@F=[ZV%)ZV%)W%P@@@BV% @@@@A_ &I"X&JAU0@@@@BV% @@@@@@U5ZH"EY+@@@@@@BV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   983
% @@@@@@@GY\WGX@@@@@@@BV% @@@@@@@@A9^P@@@@@@@@BV%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   984
            colorMapFromArray:#[130 132 132 152 152 153 163 163 163 158 188 190 114 168 254 236 246 251 252 252 253 136 137 138 158 158 158 141 143 143 125 194 234 161 161 161 247 248 248 47 158 223 147 148 149 163 164 164 250 250 251 128 130 131 247 248 249 214 214 214 235 235 235 131 133 134 153 154 154 159 159 160 245 246 247 251 251 252 137 182 254 202 227 239 248 249 250 143 144 145 165 165 165 251 252 252 236 245 251 249 249 250 127 129 130 51 84 70 155 155 155 133 134 135 149 150 150 234 243 248 246 247 248 213 213 213 234 234 234 255 255 255 179 179 179 31 151 221 160 161 161 166 166 166 252 253 253 247 247 248 213 235 255 148 184 190 158 158 159 140 140 140 144 146 146 66 105 84 253 253 253 150 151 151 139 140 141 116 150 147 202 228 243 250 251 251 134 136 136 187 221 242 71 180 234 248 248 249 137 138 139 202 228 244 251 251 251 107 164 254 187 222 242 140 141 142 162 162 162 82 120 103 156 157 157 248 249 249 233 242 248 146 147 147 0 137 217 246 247 247 252 252 252 100 158 254 52 133 199 64 158 232 110 159 200 59 155 232 39 132 207 109 158 200 54 124 183 50 142 216 34 113 178 43 134 207 37 131 207 51 133 199 42 133 207 111 159 200 114 161 200 53 124 183 52 152 232 113 160 200 117 162 200 60 156 232 65 158 232 116 161 200 57 135 199 53 153 232 58 155 232 108 158 200 45 134 207 55 154 232 48 131 199 112 160 200 54 153 232 46 130 199 46 135 207 55 134 199 56 134 199 49 131 199 107 158 200 255 255 255 53 133 199 106 157 200 39 118 183 63 157 232 57 154 232 50 132 199 54 134 199 58 136 199 114 160 200 40 133 207 41 133 207 45 130 199 44 135 207 62 157 232 43 129 199 47 131 199 50 152 232]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   985
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@?@?@?@?@?@?@?@?@?@?@?@?@?@?@?@?_?>?O?<?G?8?C?0?A? ?@?@?@^@?@L@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   986
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   987
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   988
fileTypeDriveIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   989
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   990
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   991
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   992
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   993
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   994
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   995
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   996
     self fileTypeDriveIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   997
     ImageEditor openOnClass:self andSelector:#fileTypeDriveIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   998
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
   999
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1000
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1001
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1002
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1003
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1004
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeDriveIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1005
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1006
% @@@@@@@@@@@@@@@@@@@@@@% @@@@@@@@@@@@@@@@@@@@@@% @@@@A_WU4@@@@@@@@@@@BV% A4U@ATUEP@@@@@@@@@@@BV@@ATU@ATUEP@@@@@@@@@@@BV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1007
@@@@@@@@@@@@@@@@@@@@@@BV@@ATU@ATUEP@@@@@@@@@@@BV@@A4U@ATUEQ.S&UKWEM5@@BV@@@@@HM7U%).S&UKWEM5[ @@@@@@#H5QTD1.S&UKWEM5X%8@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1008
@@@@Y6M!!_(FF!!8-[#''A,"H@@@@@@XD)=Z8%)ZGE-^HVJVU @@@@@XD)=Z8%)ZGE-\''=&VU @@@@@XD)=Z8%)ZGE-^G.JVU @@@@@!!FQ6_HIH^W)URT=RZ$4@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1009
% @@@@@@@@@@@@@@@@@@@@@@% @@@@@@@@@@@@@@@@@@@@BV% @@@@@@@@@@@@@@@@@@@@BV')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1010
            colorMapFromArray:#[130 132 132 0 0 0 135 32 109 197 202 74 92 135 183 64 112 195 90 99 48 136 71 30 71 124 216 235 222 17 194 103 130 246 167 93 127 127 127 119 152 189 104 95 127 186 197 156 151 150 120 82 124 215 105 77 121 155 178 167 148 113 137 133 122 25 133 64 99 32 106 56 177 177 84 139 141 135 135 119 43 144 151 199 232 105 39 86 110 189 176 188 147 58 100 172 41 43 65 154 132 28 73 118 53 78 151 141 91 67 31 130 164 187 78 87 119 152 162 128 64 167 227 255 255 255 210 171 22 94 129 180 214 104 101 138 48 115 96 135 212 13 12 9 140 128 26 152 97 45 43 43 43 185 172 16 169 163 25 51 40 46 84 133 180 179 156 39 67 117 206 97 145 211 32 90 48 103 92 38 225 204 17 0 124 62 74 129 227 119 117 45 172 154 97 176 193 180 76 113 195 134 99 167 140 161 202 42 93 140 199 188 14 96 62 94 181 185 189 177 181 185 91 91 91 210 212 216 217 220 223 209 214 218 213 216 220 176 181 184 219 221 225 221 223 226 176 180 184 206 209 213 0 188 242 177 182 186 110 205 233 248 249 249 156 160 164 44 44 44 109 204 233 159 162 166 208 210 215 127 221 248 235 236 237 191 238 252 188 193 197 167 170 174 202 205 210 169 172 176 187 192 195 212 214 218 34 98 34 210 215 219 61 61 61 66 66 66 175 179 183 78 78 78 157 161 164 53 53 53 215 218 221 251 251 251 157 161 165 57 57 57 52 101 52 255 255 255 32 196 244 204 207 211 185 190 194 166 214 230 50 50 50 180 184 188 178 183 187 42 99 42 184 188 192 84 84 84 165 169 172 92 255 92 198 203 207 163 167 171 182 187 190 230 233 235 221 227 232 39 99 39 162 166 169 161 165 168 157 160 164 72 72 72 45 45 45 160 163 167 241 242 244 223 225 228 158 162 165]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1011
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?A0@?M0@?M0@?@@@?M0@?M?8?C?<?G?>?G?>?G?>?G?>?G?>?G?>?@@@?@@@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1012
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1013
6764
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1014
fileTypeExecutableFileIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1015
    "This resource specification was automatically generated
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1016
     by the ImageEditor of ST/X."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1017
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1018
    "Do not manually edit this!! If it is corrupted,
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1019
     the ImageEditor may not be able to read the specification."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1020
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1021
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1022
     self fileTypeExecutableFileIcon inspect
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1023
     ImageEditor openOnClass:self andSelector:#fileTypeExecutableFileIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1024
     Icon flushCachedIcons
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1025
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1026
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1027
    <resource: #image>
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1028
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1029
    ^Icon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1030
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeExecutableFileIcon'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1031
        ifAbsentPut:[(Depth4Image width:18 height:18) bits:(ByteArray fromPackedString:'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1032
]2H"H"H"H"I7]2H"H"H"H"I7]2H"H"H"H"I7\QDQDQDQDQDW\QDQDQDQFA W\SL3L3L3L3LW\SL9&Y&Y&Y$W\SL9***P@@$W\SL9)F*Y&Y$W\SL9)%*P@@$W
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1033
\SL9)Z*Y&Y$R\SL9***P@I$R\SL9***Y&Y$R\SL9&Y&Y&Y$R\QDQDQDQDQDR]2H"H"H"H"H"]2H"H"H"H"H"]2H"H"H"H"H"')
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1034
            colorMapFromArray:#[153 153 153 133 137 140 248 224 128 230 230 230 14 127 217 1 121 215 7 124 216 232 192 64 194 196 198 250 250 250 0 120 215]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1035
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@@@?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?@@@?@@@?@@@?'); yourself); yourself]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1036
!
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1037
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1038
fileTypeFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1039
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1040
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1041
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1042
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1043
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1044
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1045
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1046
     self fileTypeFileIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1047
     ImageEditor openOnClass:self andSelector:#fileTypeFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1048
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1049
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1050
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1051
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1052
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1053
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1054
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeFileIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1055
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1056
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@0LC@0LA,VJ2-CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1057
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM!!<0LC@0LC@0LB(PC0<OC0<OF#<TH"H"F3P4IB(;C0<OC0<OM3<0LC@0LC@0LB(-C0<OC0<OH3<[F144MCP&ER)JC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1058
C0<OPS@0LC@0LC@0LBTW@@@@C0<OMSD4MCP$EQTUNQIG@@@@C0<OHCD0LC@0LC@0LAHX@@@@C0<OFR(UEQTUNDYFQ!!H!!@@@@C0<OD2(0LC@0LC@0LAHQ@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1059
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1060
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1061
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1062
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1063
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1064
fileTypeHeaderFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1065
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1066
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1067
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1068
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1069
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1070
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1071
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1072
     self fileTypeHeaderFileIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1073
     ImageEditor openOnClass:self andSelector:#fileTypeHeaderFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1074
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1075
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1076
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1077
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1078
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1079
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1080
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeHeaderFileIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1081
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1082
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@RL3(TH#@/J2-CC0<O
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1083
C0<OO#@0V%,0LC@0MB)HC0<OC0<OM!!<:V%,0LC@0LB(PC0<OC0<OF#<0V%,0LC@0LB(;C0<OC0<OM3<TV%)ZV%,0LB(-C0<OC0<OH3<0V%-PLE)[LB)JC0<O
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1084
C0<OPS@[V%,0LE)[LBTW@@@@C0<OMSD0V%,0LE)[LAIG@@@@C0<OHCD4V%,0LE)[LAHX@@@@C0<OFR(0V%,0LE)[LAH!!@@@@C0<OD2(0LC@0LC@0LAHQ@@@@
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1085
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1086
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1087
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1088
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1089
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1090
fileTypeHostIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1091
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1092
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1093
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1094
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1095
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1096
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1097
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1098
     self fileTypeHostIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1099
     ImageEditor openOnClass:self andSelector:#fileTypeHostIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1100
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1101
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1102
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1103
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1104
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1105
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1106
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeHostIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1107
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1108
% @@@@@@@@@@@@@@@@@@@@@@%+^7-;^7-;^7-;^7-;^73+,@%+]]V-UO[O"UT_W]2-#_<42V%+_./.9]7NFU;][]6M)'',F:V@K_2/.9]7NFUTWC%Y;CP].JV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1109
@K]]V%5O[K51 ^+''=''YN[6ZV@K_ 8NA,>M'',9+KD1/]M:H2V@K]>2^F \]YK4LYJS^#[U,.V@K_Q%]%Q\M)6S&>BW%Y_8<0@@L:#RM[4949/$5:H;>.V<I,@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1110
@G=L(V:<8''%&#N''KT,2[<ZT@@@@@@@@@@@B"( @@@@@@@@@@@@@@@@BN#(:N#(:N# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M;$5:J"(*J"(*J"(*KW9M8@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1111
%(:N#(:N#(:N#(:N#(:N#(8@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1112
            colorMapFromArray:#[130 132 132 210 212 216 221 223 226 215 218 221 50 50 50 180 184 188 182 187 190 162 166 169 0 0 0 45 45 45 198 203 207 160 163 167 165 169 172 185 190 194 157 161 165 109 204 233 241 242 244 209 214 218 213 216 220 219 221 225 191 238 252 39 99 39 176 180 184 163 167 171 91 91 91 169 172 176 127 221 248 57 57 57 78 78 78 230 233 235 161 165 168 44 44 44 92 255 92 159 162 166 223 225 228 235 236 237 167 170 174 187 192 195 32 196 244 52 101 52 157 160 164 34 98 34 66 66 66 175 179 183 53 53 53 157 161 164 177 182 186 61 61 61 42 99 42 202 205 210 208 210 215 221 227 232 188 193 197 166 214 230 72 72 72 181 185 189 158 162 165 110 205 233 178 183 187 0 188 242 184 188 192 176 181 184 206 209 213 212 214 218 217 220 223 210 215 219 156 160 164 177 181 185 84 84 84 204 207 211 54 102 125 81 165 208 104 197 255 54 120 159 61 182 255 76 187 255 61 122 159 59 181 255 62 182 255 123 204 255 198 230 238 106 198 255 51 118 159 191 224 231 148 201 222 166 205 215 53 179 255 185 226 241 126 206 255 156 209 232 127 206 255 130 207 255 88 169 209 125 205 255 56 180 255 51 178 255 93 175 216 72 185 255 120 193 227 63 133 167 118 147 160 59 126 158 55 120 159 70 185 255 175 213 225 89 147 174 205 234 240 56 120 150 119 203 255 222 238 246 59 121 159 60 181 255 100 196 255 109 199 255 105 138 153 235 244 247 54 117 146 46 94 117 64 183 255 39 89 112 44 98 123 56 120 159 190 224 231 176 214 226 200 211 216 153 207 229 117 202 255 62 122 159 214 234 239 103 197 255 58 180 255 85 173 217 79 188 255 77 158 198 229 241 244 210 237 243 54 179 255 197 228 235 66 137 172 137 184 204 54 119 159 83 168 210 145 161 179 204 234 241 94 177 219 72 149 187 52 113 142 58 181 255 73 151 189 111 200 255 48 177 255 203 228 233 77 128 151 183 218 229 211 233 238 49 118 159 47 104 131 99 195 255 77 148 183 72 148 186 113 201 255 60 122 159 198 208 215 105 198 255 250 252 253 47 117 159 79 160 201 67 139 175 179 221 237 185 219 226 73 151 190 255 255 255 159 180 190 41 92 117 99 196 255 232 241 243 68 184 255 113 179 210 67 184 255 83 168 211 79 161 202 75 143 176 80 188 255 65 123 159 140 186 205 198 229 235 109 173 203 63 123 159 58 121 159 114 201 255 131 207 255 226 240 243 191 223 231 146 191 209 211 239 247 206 235 240 65 183 255 156 194 207 63 182 255 211 231 241 122 178 201 118 203 255 93 193 255 52 119 159 50 118 159 48 105 132 64 123 159 146 205 231 66 183 255 112 200 255 152 206 229 244 249 250 121 204 255 126 205 255 102 197 255 202 211 218 85 190 255 110 199 255 72 186 255 55 179 255 120 204 255 97 195 255 237 240 242 74 186 255 122 204 255 116 202 255 57 121 159 49 178 255 219 226 230 86 191 255 80 189 255 69 184 255 57 180 255 53 119 159 82 189 255 50 178 255 104 198 255 107 198 255 129 207 255 52 178 255 46 176 255 48 117 159 128 207 255 71 185 255 93 194 255 102 196 255 67 183 255 61 181 255 115 201 255]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1113
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?@L@?A? ?@@@?_?>?_?>?@@@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1114
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1115
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1116
fileTypeImageFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1117
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1118
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1119
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1120
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1121
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1122
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1123
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1124
     self fileTypeImageFileIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1125
     ImageEditor openOnClass:self andSelector:#fileTypeImageFileIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1126
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1127
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1128
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1129
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1130
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1131
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1132
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeImageFileIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1133
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1134
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@APTEAPTEAPTEAPTEAPTEAP@@APGA0\GA0\GA0\GA0\GA1P@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1135
@APGIBP$IBP$IBP$IBP$A1P@@APGNA0(PC 8NC 8NC 8A1P@@APGD#X9I$D1N3,<IRDJA1P@@APGFA4EFTX@A@P@@@@^A1P@@APGG3PVHB8?H"(KC DAA1P@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1136
@APGF0X=H0LCMAT,L!!DZA1P@@APGMR,3DDMDKS9BCP$:A1P@@APGC2<0JP BE1MEI3\LA1P@@APGA0\GA0\GA0\GA0\GA1P@@APTEAPTEAPTEAPTEAPTEAP@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1137
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1138
            colorMapFromArray:#[215 238 255 228 242 255 117 153 188 59 97 74 219 240 255 128 162 158 44 73 67 255 255 255 103 142 182 195 211 224 165 204 254 204 227 248 184 205 219 193 209 223 210 231 250 67 115 171 76 115 150 142 178 191 191 222 255 157 183 206 165 165 165 75 117 96 76 120 92 128 162 193 101 137 125 149 181 182 189 210 212 43 71 67 138 185 254 108 143 133 217 239 255 68 104 84 91 131 112 185 218 255 205 227 248 56 92 72 100 158 254 181 215 255 201 233 255 173 196 214 164 204 255 83 127 173 182 211 242 62 105 144 85 128 116 138 163 181 119 154 143 68 116 169 71 118 169 195 225 255 96 141 139 62 105 143 64 105 76 61 104 145 200 232 255 177 200 216 119 173 254 198 232 255 187 206 220 157 199 254 175 211 254 49 81 68 156 181 203 179 203 206 149 193 254 209 235 255 182 201 217 110 142 167 118 147 167 167 192 212 207 232 247]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1139
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@@@?@@@?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?_?>?@@@?@@@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1140
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1141
6764
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1142
fileTypeImageGIFIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1143
    "This resource specification was automatically generated
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1144
     by the ImageEditor of ST/X."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1145
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1146
    "Do not manually edit this!! If it is corrupted,
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1147
     the ImageEditor may not be able to read the specification."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1148
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1149
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1150
     self fileTypeImageGIFIcon inspect
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1151
     ImageEditor openOnClass:self andSelector:#fileTypeImageGIFIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1152
     Icon flushCachedIcons
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1153
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1154
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1155
    <resource: #image>
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1156
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1157
    ^Icon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1158
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeImageGIFIcon'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1159
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1160
Q4]HRD!!HRD!!HRD!!HRD!!HRD]GRD!!HAB8C@#TAK@@+@00PRD!!GRD!!HK <OC39EQTTEB"4LRD!!GRD!!H@0<<P3-BPTDEB0$ARD!!GRD!!H@ =CN3-BPS(HA0X RD!!G
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1161
RD!!HMP<QDQDQDQDQDTP$RD!!HRD!!H@S8QP#1APT@9DTP#RD!!HRD!!HKDTQL2(ON#$9DTP"RD!!HRD!!H@DTQJQD/Q!!$1DTP!!RD!!HRD!!HJ4TQDQDQL!!<RDTP^RD!!H
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1162
RD!!HM@8QDQDQD3@QDP4]RD!!HRD!!HJC4QDQDQDQ0TDS0[RD!!HRD!!HI34QDQDQDQDQDS0ZRD!!HRD!!HI$P8NC 8M3X6M#0XRD!!HRD!!HITP8NC<6M#X6M#0WRD!!H
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1163
RD!!HHC0<OC0<OC0<OC0VRD!!HRD!!HIBL"HQ8]F1(XE1XURD!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!H')
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1164
            colorMapFromArray:#[155 155 155 158 158 158 161 161 161 162 162 162 165 165 165 166 166 166 169 169 169 198 198 198 211 211 211 213 213 213 214 214 214 234 234 234 235 235 235 251 251 251 252 252 252 253 253 253 255 255 255 0 120 215 15 128 217 16 128 218 32 137 220 127 129 130 128 130 131 130 132 132 131 133 134 46 144 221 133 134 135 134 136 136 48 145 223 136 137 138 137 138 139 64 154 225 144 146 146 139 140 141 140 141 142 141 143 143 143 144 145 146 147 147 147 148 149 149 150 150 150 151 151 78 160 226 79 162 227 153 154 154 156 157 157 159 160 160 163 164 164 112 179 233 143 196 238 170 208 238 175 213 243 233 241 248 152 152 153 159 159 160 245 246 247 246 247 247 246 247 248 247 248 249 248 249 249 249 250 250 250 251 251 251 252 252 252 253 253 246 246 247 248 248 249 248 249 250 249 249 250 250 250 251 251 251 252 252 252 253 253 253 254 195 0 17 250 192 197]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1165
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?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?@@@?'); yourself); yourself]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1166
!
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1167
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1168
fileTypeJavaScriptSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1169
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1170
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1171
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1172
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1173
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1174
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1175
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1176
     self fileTypeJavaScriptSourceIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1177
     ImageEditor openOnClass:self andSelector:#fileTypeJavaScriptSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1178
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1179
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1180
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1181
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1182
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1183
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1184
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeJavaScriptSourceIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1185
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1186
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@0D!!HRLC@/J2-CC0<O
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1187
C0<OO#@RD&Q$D!!HRW")HC0<OC0<OM!!<RD&U$D!!HRW"(PC0<OC0<OF#<RD!!HRD&Q$YB(;C0<OC0<OM3<RD&U$Y&U$YQH-C0<OC0<OH3<RD&U$Y&TRWR)JC0<O
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1188
C0<OPS@RD&U$WFU%WRTW@@@@C0<OMSD%SVU$D%1$YQIG@@@@C0<OHCE$D&U$YVQ$YQHX@@@@C0<OFR)%YVPRYVU%W1H!!@@@@C0<OD2(0YFP0LC@0LAHQ@@@@
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1189
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1190
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1191
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1192
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1193
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1194
fileTypeJavaSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1195
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1196
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1197
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1198
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1199
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1200
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1201
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1202
     self fileTypeJavaSourceIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1203
     ImageEditor openOnClass:self andSelector:#fileTypeJavaSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1204
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1205
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1206
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1207
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1208
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1209
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1210
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeJavaSourceIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1211
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1212
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@0D!!HRLC@/J2-CC0<O
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1213
C0<OO#@RD!!HRLC@RD")HC0<OC0<OM!!<RL3L3YVP3D"(PC0<OC0<OF#<RL3L3L3LRD"(;C0<OC0<OM3<RL3L3YVPRD!!H-C0<OC0<OH3<RS3L3YVPRD")JC0<O
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1214
C0<OPS@RST5OYVPRD"TW@@@@C0<OMSDRIRUMYVPRD!!IG@@@@C0<OHCDRYVP3YVPRD!!HX@@@@C0<OFR(RLFU%YEXRD!!H!!@@@@C0<OD2(0LC@0LC@0LAHQ@@@@
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1215
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1216
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1217
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1218
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1219
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1220
fileTypeLispSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1221
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1222
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1223
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1224
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1225
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1226
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1227
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1228
     self fileTypeLispSourceIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1229
     ImageEditor openOnClass:self andSelector:#fileTypeLispSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1230
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1231
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1232
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1233
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1234
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1235
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1236
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeLispSourceIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1237
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1238
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@0D!!HRLC@/J2-CC0<O
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1239
C0<OO#@RL3L3D!!HRD")HC0<OC0<OM!!<RL3L3D!!HRD"(PC0<OC0<OF#<RZ!!HRD!!HRD"(;C0<OC0<OM3<RZV(RD!!HRD!!H-C0<OC0<OH3<RUV%*D!!HRD")JC0<O
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1240
C0<OPS@RUT9)Z!!HRD"TW@@@@C0<OMSDRUV%*ZV)RD!!IG@@@@C0<OHCDRZV(RD&%*D!!HX@@@@C0<OFR(RZV(RD&%*D!!H!!@@@@C0<OD2(0LC@0LC@0LAHQ@@@@
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1241
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1242
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1243
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1244
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1245
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1246
fileTypeMusicIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1247
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1248
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1249
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1250
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1251
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1252
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1253
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1254
     self fileTypeMusicIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1255
     ImageEditor openOnClass:self andSelector:#fileTypeMusicIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1256
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1257
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1258
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1259
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1260
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1261
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1262
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeMusicIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1263
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1264
%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV% @@@@@@@@@@#(0@@@@@@@BV% @@@@@@@@@@*9"(@@@@@@BV% @@@@@@@@@@*:&K@@@@@@BV@@@@@@@@@@@@*:.W(P@@@@BV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1265
@@@@@@@@@@@@*:.++YL@@@BV@@@@@@@@@@@@*9R,*9:.@@BV@@@@@@@@@@@@*9P@''9""@@BV@@@@@@@@@@@@*9P@@J2O@@@@@@@@@@@@@@@@*9P@@IVI@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1266
@@@@@@@@@@@@*9P@@JNO@@@@@@@@@@@@@@@@*9P@@JR%@@@@@@@@@@@@''9BN*9P@&9JJ@@@@@@@@@J>N*:.+*9P@@H4@@@@@@@@@@JN+*:.+$Y4@@@@@@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1267
% @@@JN+*:.+''IX@@@@@@@@@% @@@@BY**Z0)0@@@@@@@@BV%)ZV% @@@@@@@@@@@@@@%)ZV')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1268
            colorMapFromArray:#[130 132 132 152 152 153 163 163 163 158 188 190 114 168 254 236 246 251 252 252 253 136 137 138 158 158 158 141 143 143 125 194 234 161 161 161 247 248 248 47 158 223 147 148 149 163 164 164 250 250 251 128 130 131 247 248 249 214 214 214 235 235 235 131 133 134 153 154 154 159 159 160 245 246 247 251 251 252 137 182 254 202 227 239 248 249 250 143 144 145 165 165 165 251 252 252 236 245 251 249 249 250 127 129 130 51 84 70 155 155 155 133 134 135 149 150 150 234 243 248 246 247 248 213 213 213 234 234 234 255 255 255 179 179 179 31 151 221 160 161 161 166 166 166 252 253 253 247 247 248 213 235 255 148 184 190 158 158 159 140 140 140 144 146 146 66 105 84 253 253 253 150 151 151 139 140 141 116 150 147 202 228 243 250 251 251 134 136 136 187 221 242 71 180 234 248 248 249 137 138 139 202 228 244 251 251 251 107 164 254 187 222 242 140 141 142 162 162 162 82 120 103 156 157 157 248 249 249 233 242 248 146 147 147 0 137 217 246 247 247 252 252 252 100 158 254 52 133 199 64 158 232 110 159 200 59 155 232 39 132 207 109 158 200 54 124 183 50 142 216 34 113 178 43 134 207 37 131 207 51 133 199 42 133 207 111 159 200 114 161 200 53 124 183 52 152 232 113 160 200 117 162 200 60 156 232 65 158 232 116 161 200 57 135 199 53 153 232 58 155 232 108 158 200 45 134 207 55 154 232 48 131 199 112 160 200 54 153 232 46 130 199 46 135 207 55 134 199 56 134 199 49 131 199 107 158 200 255 255 255 53 133 199 106 157 200 39 118 183 63 157 232 57 154 232 50 132 199 54 134 199 58 136 199 114 160 200 40 133 207 41 133 207 45 130 199 44 135 207 62 157 232 43 129 199 47 131 199 50 152 232 0 145 229 191 227 247 64 180 247 16 165 250 207 234 250 16 168 255 0 144 227 48 180 255 0 160 253 0 149 234 96 186 239 0 143 227 112 203 255 64 167 227 0 159 250 0 160 251 64 182 251 239 249 255 207 237 255 0 146 231 0 139 219 0 151 238 96 197 255 239 249 254 96 190 243 48 162 228 127 208 255 96 195 251 64 170 230 0 150 236 96 181 231 175 224 252 0 161 254 0 153 241 0 162 255 32 174 255 0 157 247 159 212 243 223 243 255 0 140 222]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1269
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?@F@?@G@?@G@?@G ?@G0?@G8?@F8?@FX?@FX?@FX?@FX?@>8?C>P?C>@?C>@?A<@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1270
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1271
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1272
fileTypeSmalltalkSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1273
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1274
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1275
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1276
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1277
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1278
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1279
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1280
     self fileTypeSmalltalkSourceIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1281
     ImageEditor openOnClass:self andSelector:#fileTypeSmalltalkSourceIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1282
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1283
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1284
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1285
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1286
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1287
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1288
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeSmalltalkSourceIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1289
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1290
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@0D!!HRLC@/J2-CC0<O
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1291
C0<OO#@0LC@0LC@0LB)HC0<OC0<OM#@0YVT0YVU%YR(PC0<OC0<OF!!=%YFQ%YFU$YB(;C0<OC0<OM3=%YC@0LFU$TAH-C0<OC0<OH3=$YS@0LFU$LB)JC0<O
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1292
C0<OPS=TYFUOLFU$T"TW@@@@C0<OMSARIVQ%LFU$S1IG@@@@C0<OHCE%YFQ%LFU$S1HX@@@@C0<OFSE$YVT0LFU$LAH!!@@@@C0<OD2(0LC@0LC@0LAHQ@@@@
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1293
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1294
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1295
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1296
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1297
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1298
fileTypeTextDocumentIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1299
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1300
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1301
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1302
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1303
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1304
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1305
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1306
     self fileTypeTextDocumentIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1307
     ImageEditor openOnClass:self andSelector:#fileTypeTextDocumentIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1308
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1309
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1310
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1311
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1312
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1313
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1314
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeTextDocumentIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1315
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1316
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@/K2</K1,VJ2-CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1317
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM!!</K2</K2</K2(PC0<OC0<OF#<TH"H"F3P4IB(;C0<OC0<OM3</K2</K2</K2(-C0<OC0<OH3<[F144MCP&ER)JC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1318
C0<OPTH/K2</K2</K2TW@@@@C0<OMSD4MCP$EQTUNQIG@@@@C0<OHCD/K2</K2</K1HX@@@@C0<OFR(UEQTUNDYFQ!!H!!@@@@C0<OD2(/K2</K2</K1HQ@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1319
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1320
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1321
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1322
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1323
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1324
fileTypeTextHtmlIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1325
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1326
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1327
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1328
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1329
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1330
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1331
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1332
     self fileTypeTextHtmlIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1333
     ImageEditor openOnClass:self andSelector:#fileTypeTextHtmlIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1334
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1335
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1336
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1337
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1338
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1339
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1340
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeTextHtmlIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1341
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1342
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#G@@@C0<OC0<ORS@0LA<?O3<VOG4@C0<OC0<OGC@RL3(TH"HVKB\6C0<OC0<OK#@3N#(TH!!.F 65CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1343
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM!!<:EHE2!!8.NMB(PC0<OC0<OF#<T^''9;^H>JIB(;C0<OC0<OM3<"\9E0 ''>HER(-C0<OC0<OH3<[]HRO#8>OER)JC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1344
C0<OPTH]!!X=6IGFIERTW@@@@C0<OMSD4MF=7#GVPNQIG@@@@C0<OHCD&I(5<[''&@Q!!HX@@@@C0<OFR(UEQTUNDYFQ!!H!!@@@@C0<OD2(UES%FQ$YFQ!!HQ@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1345
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1346
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139 217 217 217 228 228 228 250 250 250 221 221 221 249 249 249 233 233 233 224 224 224 242 242 242 237 237 237 230 230 230 241 241 241 232 232 232 238 238 238 240 240 240 236 236 236 120 4 4 183 90 90 252 250 250 255 254 250 252 252 250 248 250 250 232 230 230 224 224 220 219 219 219 243 243 243 55 146 70 0 91 12 105 173 116 226 226 226 218 218 218 15 15 116 93 93 178 229 229 229 222 222 222 169 169 169 120 182 231 89 166 227 167 207 238 243 245 247 88 166 227 140 193 234 233 241 247 16 128 216 179 213 239 1 121 214 83 163 226 150 197 235 189 218 241 90 167 227 160 203 236 159 160 160 25 133 218 19 130 217 227 237 245 191 219 242 201 224 242 198 198 198 3 122 214 229 238 246 211 211 211 74 158 225 16 129 216 222 235 245 123 184 231 151 198 235 41 141 220 243 246 248 246 247 249 0 120 214 138 191 233 107 176 230]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1347
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1348
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1349
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1350
fileTypeTextIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1351
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1352
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1353
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1354
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1355
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1356
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1357
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1358
     self fileTypeTextIcon inspect
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1359
     ImageEditor openOnClass:self andSelector:#fileTypeTextIcon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1360
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1361
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1362
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1363
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1364
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1365
    ^Icon
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1366
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeTextIcon'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1367
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1368
C0<OC0<OC0<OC0<OC0<OC0<OC0<OJT$\K#86F#\#Q@@@C0<OC0<ORS@0LA<?O3<VOCH@C0<OC0<OGC@RL3(TH"HVKB]EC0<OC0<OK#@/K2</K1,VJ2-CC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1369
C0<OO#@:N!!P"H!!,]MB)HC0<OC0<OM!!</K2</K2</K2(PC0<OC0<OF#<TH"H"F3P4IB(;C0<OC0<OM3</K2</K2</K2(-C0<OC0<OH3<[F144MCP&ER)JC0<O
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1370
C0<OPTH/K2</K2</K2TW@@@@C0<OMSD4MCP$EQTUNQIG@@@@C0<OHCD/K2</K2</K1HX@@@@C0<OFR(UEQTUNDYFQ!!H!!@@@@C0<OD2(/K2</K2</K1HQ@@@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1371
C0<OP1HRD!!HRD!!HRD!!H=@@@@C0<ORA@;KT(WQ1 !!DS4^@@@@C0<OC0<OC0<OC0<OC0<O@@@@')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1372
            colorMapFromArray:#[248 224 128 248 232 160 232 192 72 248 224 136 232 200 72 232 192 80 248 232 144 248 224 144 224 192 64 240 208 72 240 200 72 232 200 88 240 208 104 232 208 112 248 232 152 232 192 64 141 143 143 130 132 132 250 251 251 146 147 147 249 249 250 246 247 248 166 166 166 136 137 138 133 134 135 147 148 149 156 157 157 248 249 249 162 162 162 248 248 249 127 129 130 252 253 253 149 150 150 131 133 134 248 249 250 153 154 154 247 248 248 251 251 251 247 247 248 213 213 213 255 255 255 165 165 165 251 251 252 140 140 140 234 234 234 139 140 141 161 161 161 173 173 173 253 253 253 251 252 252 160 161 161 250 250 251 247 248 249 150 151 151 158 158 158 155 155 155 246 247 247 246 246 247 249 250 250 140 141 142 214 214 214 128 130 131 159 159 160 252 252 253 235 235 235 152 152 153 252 252 252 144 146 146 163 163 163 158 158 159 245 246 247 134 136 136 143 144 145 163 164 164 137 138 139]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1373
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?G? ?G?0?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?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1374
!
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1375
6764
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1376
fileTypeTextXMLIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1377
    "This resource specification was automatically generated
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1378
     by the ImageEditor of ST/X."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1379
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1380
    "Do not manually edit this!! If it is corrupted,
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1381
     the ImageEditor may not be able to read the specification."
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1382
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1383
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1384
     self fileTypeTextXMLIcon inspect
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1385
     ImageEditor openOnClass:self andSelector:#fileTypeTextXMLIcon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1386
     Icon flushCachedIcons
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1387
    "
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1388
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1389
    <resource: #image>
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1390
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1391
    ^Icon
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1392
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeTextXMLIcon'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1393
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1394
Q4]HRD!!HRD!!HRD!!HRD!!HRD]GRD!!]WU5]WU5]WU5]XP@@@D!!GRD!!][1@PDA@PDA@PVFL@@D!!GRD!!!![6<PDA@PDA@PV7I#@D!!GRD!!!![6=/DA@PDA@PX6M#X4!!G
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1395
RD!!!![6=/[6I''WEXPDD1 X4!!HRD!!#W5QM[7A%S&XPSU@PX4!!HRD!!#R$5/[7QK[%8PDD53X4!!HRD!!)\%QM[4=$Z%TPSUDPZT!!HRD!!+\''IRW6=/[6=/DA@PZ4!!H
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1396
RD!!+\''I2T%=/[6=/[1@PZ4!!HRD!!,\7IWU5]WU5%YVV=/[D!!HRD!!,\7M2\''IRT%I/[6=/[D!!HRD!!-\7MWU5]WU5%YVV=/[T!!HRD!!1\7M3\7I2\''I2T%=/\T!!H
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1397
RD!!I\7M3\7M2\''I2\%I_RT!!HRD!!ZV%)ZV%)ZV%)ZV%)ZV$!!HRD!!HRD!!HRD!!HRD!!HRD!!HRD!!H')
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1398
            colorMapFromArray:#[155 155 155 158 158 158 161 161 161 162 162 162 165 165 165 166 166 166 169 169 169 198 198 198 211 211 211 213 213 213 214 214 214 234 234 234 235 235 235 251 251 251 252 252 252 253 253 253 255 255 255 0 120 215 15 128 217 16 128 218 32 137 220 127 129 130 128 130 131 130 132 132 131 133 134 46 144 221 133 134 135 134 136 136 48 145 223 136 137 138 137 138 139 64 154 225 144 146 146 139 140 141 140 141 142 141 143 143 143 144 145 146 147 147 147 148 149 149 150 150 150 151 151 78 160 226 79 162 227 153 154 154 156 157 157 159 160 160 163 164 164 112 179 233 143 196 238 170 208 238 175 213 243 233 241 248 152 152 153 159 159 160 245 246 247 246 247 247 246 247 248 247 248 249 248 249 249 249 250 250 250 251 251 251 252 252 252 253 253 246 246 247 248 248 249 248 249 250 249 249 250 250 250 251 251 251 252 252 252 253 253 253 254 195 0 17 250 192 197 132 134 132 239 235 239 41 174 181 231 231 231 115 113 123 99 199 247 181 182 222 222 215 222 231 227 231 255 247 247 245 245 245 214 211 214 140 146 189 181 190 214 156 154 173 206 203 206 156 150 173 123 121 123 198 199 198 99 154 198 198 195 198 41 113 123 255 251 247 231 223 222 189 190 189 214 227 231 189 186 189 33 146 82 132 227 189 74 166 115 123 186 156 243 244 243 181 182 181 24 154 99 181 178 181 173 174 173 156 158 156 66 174 198 255 251 255 99 158 132 148 146 148 247 247 247 247 243 247 57 97 173]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1399
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?O? ?O?0?O?8?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?@@@?'); yourself); yourself]
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1400
!
87237573a640 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 6763
diff changeset
  1401
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1402
fileTypeVideoIcon
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1403
    "This resource specification was automatically generated
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1404
     by the ImageEditor of ST/X."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1405
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1406
    "Do not manually edit this!! If it is corrupted,
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1407
     the ImageEditor may not be able to read the specification."
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1408
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1409
    "
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1410
     self fileTypeVideoIcon inspect
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1411
     ImageEditor openOnClass:self andSelector:#fileTypeVideoIcon
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1412
     Icon flushCachedIcons
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1413
    "
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1414
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1415
    <resource: #image>
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1416
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1417
    ^Icon
6767
3cf55e16d823 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6766
diff changeset
  1418
        constantNamed:'Windows8ToolbarIconLibrary class fileTypeVideoIcon'
6763
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1419
        ifAbsentPut:[(Depth8Image width:18 height:18) bits:(ByteArray fromPackedString:'
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1420
%)ZV%)ZV%)ZV%)ZV%)ZV%)ZV% B;.=ST5MST5MST5MR;.0BV% B;J=S0<OC0<OC0<MP+.0BV% B;.=S 8NC 8>G_9=R;.0BV@@B;J=SL/_K^<;W@2-P+.0BV
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1421
@@B;.=SY-MGZ-<7F7MR;.0BV@@B;J=SX:/G,9+;V=MP+.0BV@@B;.=R99]OH/</]5]R;.0BV@@B;J=ST5MST5MST5MP+.0@@@@B;.=S0<OC0:[OP4-R;.0@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1422
@@B;J=S 8NC 8M^21]P+.0@@@@B;.=S$9NS$9NSN9MR;.0@@@@B;J=S[6=/[8+2:6=P+.0@@@@B;.=S6:N7G2^//0-R;.0@@@@B;J=SC1LF8-,?5;-P+.0@@
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1423
% B;.=ST5MST5MST5MR;.0@@% @@@@@@@@@@@@@@@@@@@@BV%)ZV@@@@@@@@@@@@@@@@%)ZV')
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1424
            colorMapFromArray:#[130 132 132 152 152 153 163 163 163 158 188 190 114 168 254 236 246 251 252 252 253 136 137 138 158 158 158 141 143 143 125 194 234 161 161 161 247 248 248 47 158 223 147 148 149 163 164 164 250 250 251 128 130 131 247 248 249 214 214 214 235 235 235 131 133 134 153 154 154 159 159 160 245 246 247 251 251 252 137 182 254 202 227 239 248 249 250 143 144 145 165 165 165 251 252 252 236 245 251 249 249 250 127 129 130 51 84 70 155 155 155 133 134 135 149 150 150 234 243 248 246 247 248 213 213 213 234 234 234 255 255 255 179 179 179 31 151 221 160 161 161 166 166 166 252 253 253 247 247 248 213 235 255 148 184 190 158 158 159 140 140 140 144 146 146 66 105 84 253 253 253 150 151 151 139 140 141 116 150 147 202 228 243 250 251 251 134 136 136 187 221 242 71 180 234 248 248 249 137 138 139 202 228 244 251 251 251 107 164 254 187 222 242 140 141 142 162 162 162 82 120 103 156 157 157 248 249 249 233 242 248 146 147 147 0 137 217 246 247 247 252 252 252 100 158 254 52 133 199 64 158 232 110 159 200 59 155 232 39 132 207 109 158 200 54 124 183 50 142 216 34 113 178 43 134 207 37 131 207 51 133 199 42 133 207 111 159 200 114 161 200 53 124 183 52 152 232 113 160 200 117 162 200 60 156 232 65 158 232 116 161 200 57 135 199 53 153 232 58 155 232 108 158 200 45 134 207 55 154 232 48 131 199 112 160 200 54 153 232 46 130 199 46 135 207 55 134 199 56 134 199 49 131 199 107 158 200 255 255 255 53 133 199 106 157 200 39 118 183 63 157 232 57 154 232 50 132 199 54 134 199 58 136 199 114 160 200 40 133 207 41 133 207 45 130 199 44 135 207 62 157 232 43 129 199 47 131 199 50 152 232 0 145 229 191 227 247 64 180 247 16 165 250 207 234 250 16 168 255 0 144 227 48 180 255 0 160 253 0 149 234 96 186 239 0 143 227 112 203 255 64 167 227 0 159 250 0 160 251 64 182 251 239 249 255 207 237 255 0 146 231 0 139 219 0 151 238 96 197 255 239 249 254 96 190 243 48 162 228 127 208 255 96 195 251 64 170 230 0 150 236 96 181 231 175 224 252 0 161 254 0 153 241 0 162 255 32 174 255 0 157 247 159 212 243 223 243 255 0 140 222 239 248 253 0 0 0 179 156 39 119 152 189 210 171 22 140 128 26 133 122 25 152 162 128 246 167 93 86 110 189 127 127 127 58 100 172 176 188 147 199 188 14 32 106 56 135 119 43 84 133 180 148 113 137 140 161 202 130 164 187 42 93 140 103 92 38 96 135 212 73 118 53 152 97 45 172 154 97 13 12 9 186 197 156 225 204 17 78 87 119 235 222 17 135 32 109 94 129 180 90 99 48 232 105 39 43 43 43 0 124 62 185 172 16 51 40 46 194 103 130 144 151 199 151 150 120 74 129 227 177 177 84 32 90 48 139 141 135 96 62 94 67 117 206 41 43 65 82 124 215 105 77 121 71 124 216 214 104 101 169 163 25 76 113 195 155 178 167 133 64 99 134 99 167 136 71 30 104 95 127 97 145 211 197 202 74 91 67 31 64 112 195 138 48 115 92 135 183 154 132 28 78 151 141 119 117 45 176 193 180]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1425
            mask:((ImageMask width:18 height:18) bits:(ByteArray fromPackedString:'@@@?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?O?<?@@@?@@@?'); yourself); yourself]
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1426
! !
c57d17283c6f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 6049
diff changeset
  1427
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1428
!Windows8ToolbarIconLibrary class methodsFor:'documentation'!
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1429
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1430
version
6049
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
  1431
    ^ '$Header$'
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1432
!
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1433
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1434
version_CVS
6049
912263613f7d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 5171
diff changeset
  1435
    ^ '$Header$'
4508
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1436
! !
a4ba60427d79 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1437