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 WXDLLEXPORT wxBitmapHandler
: public wxBitmapHandlerBase
68 wxBitmapHandler() : wxBitmapHandlerBase() {}
70 DECLARE_DYNAMIC_CLASS(wxBitmapHandler
)
73 class WXDLLIMPEXP_CORE wxBitmap
: public wxBitmapBase
77 wxBitmap( int width
, int height
, int depth
= -1 );
78 wxBitmap( const char bits
[], int width
, int height
, int depth
= 1 );
79 wxBitmap( const char **bits
) { (void)CreateFromXpm(bits
); }
80 wxBitmap( char **bits
) { (void)CreateFromXpm((const char **)bits
); }
81 wxBitmap( const wxString
&filename
, wxBitmapType type
= wxBITMAP_TYPE_XPM
);
84 bool operator == ( const wxBitmap
& bmp
) const;
85 bool operator != ( const wxBitmap
& bmp
) const;
88 static void InitStandardHandlers();
90 bool Create(int width
, int height
, int depth
= -1);
91 bool Create(void* data
, wxBitmapType type
,
92 int width
, int height
, int depth
= -1);
93 // create the wxBitmap using a _copy_ of the pixmap
94 bool Create(WXPixmap pixmap
);
96 int GetHeight() const;
101 wxBitmap( const wxImage
& image
, int depth
= -1 ) { (void)CreateFromImage(image
, depth
); }
102 wxImage
ConvertToImage() const;
103 bool CreateFromImage(const wxImage
& image
, int depth
= -1);
104 #endif // wxUSE_IMAGE
106 // copies the contents and mask of the given (colour) icon to the bitmap
107 virtual bool CopyFromIcon(const wxIcon
& icon
);
109 wxMask
*GetMask() const;
110 void SetMask( wxMask
*mask
);
112 wxBitmap
GetSubBitmap( const wxRect
& rect
) const;
114 bool SaveFile( const wxString
&name
, wxBitmapType type
, const wxPalette
*palette
= (wxPalette
*) NULL
) const;
115 bool LoadFile( const wxString
&name
, wxBitmapType type
= wxBITMAP_TYPE_XPM
);
117 wxPalette
*GetPalette() const;
118 wxPalette
*GetColourMap() const
119 { return GetPalette(); };
120 virtual void SetPalette(const wxPalette
& palette
);
125 void SetHeight( int height
);
126 void SetWidth( int width
);
127 void SetDepth( int depth
);
128 void SetPixmap( WXPixmap pixmap
);
129 void SetBitmap( WXPixmap bitmap
);
131 WXPixmap
GetPixmap() const;
132 WXPixmap
GetBitmap() const;
134 WXPixmap
GetDrawable() const;
136 WXDisplay
*GetDisplay() const;
139 bool CreateFromXpm(const char **bits
);
142 DECLARE_DYNAMIC_CLASS(wxBitmap
)