]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/bitmap.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __GTKBITMAPH__
13 #define __GTKBITMAPH__
20 #include "wx/object.h"
21 #include "wx/string.h"
22 #include "wx/palette.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 //-----------------------------------------------------------------------------
42 class wxMask
: public wxObject
44 DECLARE_DYNAMIC_CLASS(wxMask
)
49 wxMask( const wxBitmap
& bitmap
, const wxColour
& colour
);
50 wxMask( const wxBitmap
& bitmap
, const int paletteIndex
);
51 wxMask( const wxBitmap
& bitmap
);
60 friend wxBitmapButton
;
61 friend wxStaticBitmap
;
63 GdkBitmap
*GetBitmap(void) const;
71 //-----------------------------------------------------------------------------
73 //-----------------------------------------------------------------------------
75 // CMB 20/5/98: added xbm constructor and GetBitmap() method
76 class wxBitmap
: public wxObject
78 DECLARE_DYNAMIC_CLASS(wxBitmap
)
83 wxBitmap( const int width
, const int height
, const int depth
= -1 );
84 wxBitmap( const char bits
[], const int width
, const int height
, const int depth
= 1 );
85 wxBitmap( char **bits
);
86 wxBitmap( const wxBitmap
& bmp
);
87 wxBitmap( const wxBitmap
* bmp
);
88 wxBitmap( const wxString
&filename
, const int type
);
90 wxBitmap
& operator = ( const wxBitmap
& bmp
);
91 bool operator == ( const wxBitmap
& bmp
);
92 bool operator != ( const wxBitmap
& bmp
);
95 int GetHeight(void) const;
96 int GetWidth(void) const;
97 int GetDepth(void) const;
98 void SetHeight( const int height
);
99 void SetWidth( const int width
);
100 void SetDepth( const int depth
);
102 wxMask
*GetMask(void) const;
103 void SetMask( wxMask
*mask
);
105 bool SaveFile( const wxString
&name
, const int type
, wxPalette
*palette
= NULL
);
106 bool LoadFile( const wxString
&name
, const int type
);
108 wxPalette
*GetPalette(void) const;
109 wxPalette
*GetColourMap(void) const
110 { return GetPalette(); };
118 friend wxBitmapButton
;
119 friend wxStaticBitmap
;
121 GdkPixmap
*GetPixmap(void) const;
122 GdkBitmap
*GetBitmap(void) const;
127 #endif // __GTKBITMAPH__