]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/bitmap.h
another compilation fix
[wxWidgets.git] / include / wx / gtk / bitmap.h
index 9e37103faeeb72df3742e823d60c940f7b580a57..41959d5ba6326fd0095af719e661f5e7244088be 100644 (file)
@@ -70,10 +70,12 @@ public:
     wxBitmap( const wxString &filename, int type = wxBITMAP_TYPE_XPM );
     ~wxBitmap();
     wxBitmap& operator = ( const wxBitmap& bmp );
-    bool operator == ( const wxBitmap& bmp );
-    bool operator != ( const wxBitmap& bmp );
+    bool operator == ( const wxBitmap& bmp ) const;
+    bool operator != ( const wxBitmap& bmp ) const;
     bool Ok() const;
 
+    bool Create(int width, int height, int depth = -1);
+    
     int GetHeight() const;
     int GetWidth() const;
     int GetDepth() const;
@@ -97,6 +99,7 @@ public:
     void SetWidth( int width );
     void SetDepth( int depth );
     void SetPixmap( GdkPixmap *pixmap );
+    void SetBitmap( GdkBitmap *bitmap );
 
     GdkPixmap *GetPixmap() const;
     GdkBitmap *GetBitmap() const;