1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBitmap class
4 // Author: Julian Smart, Robert Roebling
8 // Copyright: (c) Julian Smart, Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #include "wx/object.h"
17 #include "wx/string.h"
18 #include "wx/palette.h"
19 #include "wx/gdiobj.h"
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
25 class WXDLLIMPEXP_CORE wxMask
;
26 class WXDLLIMPEXP_CORE wxBitmap
;
27 class WXDLLIMPEXP_CORE wxImage
;
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 class WXDLLIMPEXP_CORE wxMask
: public wxObject
37 wxMask( const wxBitmap
& bitmap
, const wxColour
& colour
);
38 wxMask( const wxBitmap
& bitmap
, int paletteIndex
);
39 wxMask( const wxBitmap
& bitmap
);
42 bool Create( const wxBitmap
& bitmap
, const wxColour
& colour
);
43 bool Create( const wxBitmap
& bitmap
, int paletteIndex
);
44 bool Create( const wxBitmap
& bitmap
);
47 WXPixmap
GetBitmap() const { return m_bitmap
; }
48 void SetBitmap( WXPixmap bitmap
) { m_bitmap
= bitmap
; }
50 WXDisplay
*GetDisplay() const { return m_display
; }
51 void SetDisplay( WXDisplay
*display
) { m_display
= display
; }
58 DECLARE_DYNAMIC_CLASS(wxMask
)
61 //-----------------------------------------------------------------------------
63 //-----------------------------------------------------------------------------
65 class WXDLLIMPEXP_CORE wxBitmapHandler
: public wxBitmapHandlerBase
67 DECLARE_ABSTRACT_CLASS(wxBitmapHandler
)
70 class WXDLLIMPEXP_CORE wxBitmap
: public wxBitmapBase
74 wxBitmap( int width
, int height
, int depth
= -1 );
75 wxBitmap( const char bits
[], int width
, int height
, int depth
= 1 );
76 wxBitmap( const char* const* bits
);
77 #if defined (__GNUC__) && __GNUC__ < 3
81 *this = wxBitmap(wx_const_cast(const char* const*, data
));
84 wxBitmap( const wxString
&filename
, wxBitmapType type
= wxBITMAP_TYPE_XPM
);
87 bool Ok() const { return IsOk(); }
90 static void InitStandardHandlers();
92 bool Create(int width
, int height
, int depth
= -1);
93 bool Create(const void* data
, wxBitmapType type
,
94 int width
, int height
, int depth
= -1);
95 // create the wxBitmap using a _copy_ of the pixmap
96 bool Create(WXPixmap pixmap
);
98 int GetHeight() const;
100 int GetDepth() const;
103 wxBitmap( const wxImage
& image
, int depth
= -1 ) { (void)CreateFromImage(image
, depth
); }
104 wxImage
ConvertToImage() const;
105 bool CreateFromImage(const wxImage
& image
, int depth
= -1);
106 #endif // wxUSE_IMAGE
108 // copies the contents and mask of the given (colour) icon to the bitmap
109 virtual bool CopyFromIcon(const wxIcon
& icon
);
111 wxMask
*GetMask() const;
112 void SetMask( wxMask
*mask
);
114 wxBitmap
GetSubBitmap( const wxRect
& rect
) const;
116 bool SaveFile( const wxString
&name
, wxBitmapType type
, const wxPalette
*palette
= (wxPalette
*) NULL
) const;
117 bool LoadFile( const wxString
&name
, wxBitmapType type
= wxBITMAP_TYPE_XPM
);
119 wxPalette
*GetPalette() const;
120 wxPalette
*GetColourMap() const
121 { return GetPalette(); };
122 virtual void SetPalette(const wxPalette
& palette
);
127 void SetHeight( int height
);
128 void SetWidth( int width
);
129 void SetDepth( int depth
);
130 void SetPixmap( WXPixmap pixmap
);
131 void SetBitmap( WXPixmap bitmap
);
133 WXPixmap
GetPixmap() const;
134 WXPixmap
GetBitmap() const;
136 WXPixmap
GetDrawable() const;
138 WXDisplay
*GetDisplay() const;
141 virtual wxObjectRefData
*CreateRefData() const;
142 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
145 DECLARE_DYNAMIC_CLASS(wxBitmap
)
148 #endif // _WX_BITMAP_H_