]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/imaglist.h
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / interface / wx / imaglist.h
index 76a8eaf5dbc0fd0fa91c209c154159a69538146b..b2b7c55a0d6e75d07a30b7ecc5350006f12227be 100644 (file)
@@ -2,10 +2,28 @@
 // Name:        imaglist.h
 // Purpose:     interface of wxImageList
 // Author:      wxWidgets team
 // Name:        imaglist.h
 // Purpose:     interface of wxImageList
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /////////////////////////////////////////////////////////////////////////////
 
+/**
+   Flag values for Set/GetImageList
+*/
+enum
+{
+    wxIMAGE_LIST_NORMAL, // Normal icons
+    wxIMAGE_LIST_SMALL,  // Small icons
+    wxIMAGE_LIST_STATE   // State icons: unimplemented (see WIN32 documentation)
+};
+
+/**
+   Flags for Draw
+*/
+#define wxIMAGELIST_DRAW_NORMAL         0x0001
+#define wxIMAGELIST_DRAW_TRANSPARENT    0x0002
+#define wxIMAGELIST_DRAW_SELECTED       0x0004
+#define wxIMAGELIST_DRAW_FOCUSED        0x0008
+
+
 /**
     @class wxImageList
 
 /**
     @class wxImageList
 
@@ -100,6 +118,8 @@ public:
                  bitmap will automatically be split into smaller images, each
                  matching the dimensions of the image list.
                  This does not apply when adding icons.
                  bitmap will automatically be split into smaller images, each
                  matching the dimensions of the image list.
                  This does not apply when adding icons.
+
+        @onlyfor{wxmsw,wxosx}
     */
     int Add(const wxIcon& icon);
 
     */
     int Add(const wxIcon& icon);
 
@@ -206,6 +226,8 @@ public:
 
         @remarks The original bitmap or icon is not affected by the Replace()
                  operation, and can be deleted afterwards.
 
         @remarks The original bitmap or icon is not affected by the Replace()
                  operation, and can be deleted afterwards.
+
+        @onlyfor{wxmsw,wxosx}
     */
     bool Replace(int index, const wxIcon& icon);
 };
     */
     bool Replace(int index, const wxIcon& icon);
 };