Windows8ToolbarIconLibrary.st
changeset 5037 47d11d896636
parent 4547 021a913484e6
child 5171 9519ad3ccfb7
--- a/Windows8ToolbarIconLibrary.st	Fri May 23 10:16:34 2014 +0200
+++ b/Windows8ToolbarIconLibrary.st	Fri May 23 10:18:10 2014 +0200
@@ -23,52 +23,76 @@
 !Windows8ToolbarIconLibrary class methodsFor:'image specs'!
 
 downArrowEnteredIcon
+    <resource: #image>
     "This resource specification was automatically generated
      by the ImageEditor of ST/X."
-
     "Do not manually edit this!! If it is corrupted,
      the ImageEditor may not be able to read the specification."
-
     "
      self downArrowEnteredIcon inspect
      ImageEditor openOnClass:self andSelector:#downArrowEnteredIcon
-     Icon flushCachedIcons
-    "
-
-    <resource: #image>
-
-    ^Icon
-        constantNamed:'Windows8ToolbarIconLibrary downArrowEnteredIcon'
-        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]
+     Icon flushCachedIcons"
+    
+    ^ Icon constantNamed:'Windows8ToolbarIconLibrary downArrowEnteredIcon'
+        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:((ImageMask new)
+                            width:15;
+                            height:14;
+                            bits:(ByteArray 
+                                        fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a');
+                            yourself);
+                yourself
+        ]
 !
 
 downArrowPassiveIcon
+    <resource: #image>
     "This resource specification was automatically generated
      by the ImageEditor of ST/X."
-
     "Do not manually edit this!! If it is corrupted,
      the ImageEditor may not be able to read the specification."
-
     "
      self downArrowPassiveIcon inspect
      ImageEditor openOnClass:self andSelector:#downArrowPassiveIcon
-     Icon flushCachedIcons
-    "
-
-    <resource: #image>
-
-    ^Icon
-        constantNamed:'Windows8ToolbarIconLibrary downArrowPassiveIcon'
-        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]
+     Icon flushCachedIcons"
+    
+    ^ Icon constantNamed:'Windows8ToolbarIconLibrary downArrowPassiveIcon'
+        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:((ImageMask new)
+                            width:15;
+                            height:14;
+                            bits:(ByteArray 
+                                        fromPackedString:'@@D@@P@A@@DHHP1!!C.DG0PNA@PD@@P@A@@D@@P@a');
+                            yourself);
+                yourself
+        ]
 ! !
 
 !Windows8ToolbarIconLibrary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.2 2013-04-03 13:07:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.3 2014-05-23 08:18:10 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.2 2013-04-03 13:07:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/Windows8ToolbarIconLibrary.st,v 1.3 2014-05-23 08:18:10 stefan Exp $'
 ! !