]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/bitmap.h
wxNotebook interface (it may change!), implementation file is not yet
[wxWidgets.git] / include / wx / gtk / bitmap.h
index 3d7e90c69b83b9ce7b780f3c67df55fc699dfcea..4d5acb76f72436e41fc31d40349e6134ffa38410 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:
 // Author:      Robert Roebling
 // Created:     01/02/97
-// Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 // classes
 //-----------------------------------------------------------------------------
 
+class wxDC;
+class wxPaintDC;
+class wxMemoryDC;
+class wxToolBarGTK;
+class wxBitmapButton;
+class wxStaticBitmap;
+
 class wxMask;
 class wxBitmap;
 
@@ -44,8 +51,15 @@ class wxMask: public wxObject
     wxMask( const wxBitmap& bitmap );
     ~wxMask(void);
 
-  public:
+  private:
   
+    friend wxBitmap;
+    friend wxDC;
+    friend wxPaintDC;
+    friend wxToolBarGTK;
+    friend wxBitmapButton;
+    friend wxStaticBitmap;
+    
     GdkBitmap *GetBitmap(void) const;
     
   protected:
@@ -58,6 +72,7 @@ class wxMask: public wxObject
 // wxBitmap
 //-----------------------------------------------------------------------------
 
+// CMB 20/5/98: added xbm constructor and GetBitmap() method
 class wxBitmap: public wxObject
 {
   DECLARE_DYNAMIC_CLASS(wxBitmap)
@@ -66,6 +81,7 @@ class wxBitmap: public wxObject
 
     wxBitmap(void);
     wxBitmap( const int width, const int height, const int depth = -1 );
+    wxBitmap( const char bits[], const int width, const int height, const int depth = 1 );
     wxBitmap( char **bits );
     wxBitmap( const wxBitmap& bmp );
     wxBitmap( const wxBitmap* bmp );
@@ -93,9 +109,17 @@ class wxBitmap: public wxObject
     wxPalette *GetColourMap(void) const
       { return GetPalette(); };
 
-  public:
+  private:
+  
+    friend wxDC;
+    friend wxPaintDC;
+    friend wxMemoryDC;
+    friend wxToolBarGTK;
+    friend wxBitmapButton;
+    friend wxStaticBitmap;
 
     GdkPixmap *GetPixmap(void) const;
+    GdkBitmap *GetBitmap(void) const;
     
     // no data :-)
 };