Windows8ToolbarIconLibrary.st
changeset 5037 47d11d896636
parent 4547 021a913484e6
child 5171 9519ad3ccfb7
equal deleted inserted replaced
5036:595a512d636c 5037:47d11d896636
    21 ! !
    21 ! !
    22 
    22 
    23 !Windows8ToolbarIconLibrary class methodsFor:'image specs'!
    23 !Windows8ToolbarIconLibrary class methodsFor:'image specs'!
    24 
    24 
    25 downArrowEnteredIcon
    25 downArrowEnteredIcon
       
    26     <resource: #image>
    26     "This resource specification was automatically generated
    27     "This resource specification was automatically generated
    27      by the ImageEditor of ST/X."
    28      by the ImageEditor of ST/X."
    28 
       
    29     "Do not manually edit this!! If it is corrupted,
    29     "Do not manually edit this!! If it is corrupted,
    30      the ImageEditor may not be able to read the specification."
    30      the ImageEditor may not be able to read the specification."
    31 
       
    32     "
    31     "
    33      self downArrowEnteredIcon inspect
    32      self downArrowEnteredIcon inspect
    34      ImageEditor openOnClass:self andSelector:#downArrowEnteredIcon
    33      ImageEditor openOnClass:self andSelector:#downArrowEnteredIcon
    35      Icon flushCachedIcons
    34      Icon flushCachedIcons"
    36     "
    35     
    37 
    36     ^ Icon constantNamed:'Windows8ToolbarIconLibrary downArrowEnteredIcon'
    38     <resource: #image>
    37         ifAbsentPut:[
    39 
    38             (Depth1Image new)
    40     ^Icon
    39                 width:15;
    41         constantNamed:'Windows8ToolbarIconLibrary downArrowEnteredIcon'
    40                 height:14;
    42         ifAbsentPut:[(Depth1Image new) width: 15; height: 14; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@HH@1 C.@G0@N@@P@@@@@@@@@@@@@a') ; colorMapFromArray:#[240 240 240 0 0 0]; mask:((Depth1Image new) width: 15; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a') ; yourself); yourself]
    41                 photometric:(#palette);
       
    42                 bitsPerSample:(#[ 1 ]);
       
    43                 samplesPerPixel:(1);
       
    44                 bits:(ByteArray 
       
    45                             fromPackedString:'@@@@@@@@@@@HH@1 C.@G0@N@@P@@@@@@@@@@@@@a');
       
    46                 colorMapFromArray:#[ 240 240 240 0 0 0 ];
       
    47                 mask:((ImageMask new)
       
    48                             width:15;
       
    49                             height:14;
       
    50                             bits:(ByteArray 
       
    51                                         fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a');
       
    52                             yourself);
       
    53                 yourself
       
    54         ]
    43 !
    55 !
    44 
    56 
    45 downArrowPassiveIcon
    57 downArrowPassiveIcon
       
    58     <resource: #image>
    46     "This resource specification was automatically generated
    59     "This resource specification was automatically generated
    47      by the ImageEditor of ST/X."
    60      by the ImageEditor of ST/X."
    48 
       
    49     "Do not manually edit this!! If it is corrupted,
    61     "Do not manually edit this!! If it is corrupted,
    50      the ImageEditor may not be able to read the specification."
    62      the ImageEditor may not be able to read the specification."
    51 
       
    52     "
    63     "
    53      self downArrowPassiveIcon inspect
    64      self downArrowPassiveIcon inspect
    54      ImageEditor openOnClass:self andSelector:#downArrowPassiveIcon
    65      ImageEditor openOnClass:self andSelector:#downArrowPassiveIcon
    55      Icon flushCachedIcons
    66      Icon flushCachedIcons"
    56     "
    67     
    57 
    68     ^ Icon constantNamed:'Windows8ToolbarIconLibrary downArrowPassiveIcon'
    58     <resource: #image>
    69         ifAbsentPut:[
    59 
    70             (Depth1Image new)
    60     ^Icon
    71                 width:15;
    61         constantNamed:'Windows8ToolbarIconLibrary downArrowPassiveIcon'
    72                 height:14;
    62         ifAbsentPut:[(Depth1Image new) width: 15; height: 14; photometric:(#palette); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@HH@1 C.@G0@N@@P@@@@@@@@@@@@@a') ; colorMapFromArray:#[240 240 240 96 96 96]; mask:((Depth1Image new) width: 15; height: 14; photometric:(#blackIs0); bitsPerSample:(#[1]); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a') ; yourself); yourself]
    73                 photometric:(#palette);
       
    74                 bitsPerSample:(#[ 1 ]);
       
    75                 samplesPerPixel:(1);
       
    76                 bits:(ByteArray 
       
    77                             fromPackedString:'@@@@@@@@@@@HH@1 C.@G0@N@@P@@@@@@@@@@@@@a');
       
    78                 colorMapFromArray:#[ 240 240 240 96 96 96 ];
       
    79                 mask:((ImageMask new)
       
    80                             width:15;
       
    81                             height:14;
       
    82                             bits:(ByteArray 
       
    83                                         fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a');
       
    84                             yourself);
       
    85                 yourself
       
    86         ]
    63 ! !
    87 ! !
    64 
    88 
    65 !Windows8ToolbarIconLibrary class methodsFor:'documentation'!
    89 !Windows8ToolbarIconLibrary class methodsFor:'documentation'!
    66 
    90 
    67 version
    91 version
    68     ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.2 2013-04-03 13:07:34 cg Exp $'
    92     ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.3 2014-05-23 08:18:10 stefan Exp $'
    69 !
    93 !
    70 
    94 
    71 version_CVS
    95 version_CVS
    72     ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.2 2013-04-03 13:07:34 cg Exp $'
    96     ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.3 2014-05-23 08:18:10 stefan Exp $'
    73 ! !
    97 ! !
    74 
    98