]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/image.h
headermove osx - header files
[wxWidgets.git] / include / wx / image.h
index ffb1e3777b9025115efecc1a81c1bab59144a9e3..fd7695684176e7140d1493b2dcea06df61c42f18 100644 (file)
@@ -240,6 +240,9 @@ public:
     bool Create( char** xpmData ) { return Create(const_cast<const char* const*>(xpmData)); }
 #endif
     void Destroy();
+   
+    // initialize the image data with zeroes
+    void Clear(unsigned char value = 0);
 
     // creates an identical copy of the image (the = operator
     // just raises the ref count)
@@ -361,6 +364,9 @@ public:
     int GetWidth() const;
     int GetHeight() const;
 
+    wxSize GetSize() const
+        { return wxSize(GetWidth(), GetHeight()); }
+
     // Gets the type of image found by LoadFile or specified with SaveFile
     wxBitmapType GetType() const;