1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/bitmap.h
3 // Purpose: wxBitmap class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/msw/gdiimage.h"
16 #include "wx/gdicmn.h"
17 #include "wx/palette.h"
19 class WXDLLEXPORT wxBitmap
;
20 class WXDLLEXPORT wxBitmapHandler
;
21 class WXDLLEXPORT wxBitmapRefData
;
22 class WXDLLEXPORT wxControl
;
23 class WXDLLEXPORT wxCursor
;
24 class WXDLLEXPORT wxDC
;
26 class WXDLLEXPORT wxDIB
;
28 class WXDLLEXPORT wxIcon
;
29 class WXDLLEXPORT wxImage
;
30 class WXDLLEXPORT wxMask
;
31 class WXDLLEXPORT wxPalette
;
32 class WXDLLEXPORT wxPixelDataBase
;
34 // ----------------------------------------------------------------------------
35 // wxBitmap: a mono or colour bitmap
36 // ----------------------------------------------------------------------------
38 class WXDLLEXPORT wxBitmap
: public wxGDIImage
41 // default ctor creates an invalid bitmap, you must Create() it later
44 // Initialize with raw data
45 wxBitmap(const char bits
[], int width
, int height
, int depth
= 1);
47 // Initialize with XPM data
48 wxBitmap(const char **data
) { CreateFromXpm(data
); }
49 wxBitmap(char **data
) { CreateFromXpm((const char **)data
); }
51 // Load a file or resource
52 wxBitmap(const wxString
& name
, wxBitmapType type
= wxBITMAP_TYPE_BMP_RESOURCE
);
54 // New constructor for generalised creation from data
55 wxBitmap(void *data
, long type
, int width
, int height
, int depth
= 1);
57 // Create a new, uninitialized bitmap of the given size and depth (if it
58 // is omitted, will create a bitmap compatible with the display)
60 // NB: this ctor will create a DIB for 24 and 32bpp bitmaps, use ctor
61 // taking a DC argument if you want to force using DDB in this case
62 wxBitmap(int width
, int height
, int depth
= -1);
64 // Create a bitmap compatible with the given DC
65 wxBitmap(int width
, int height
, const wxDC
& dc
);
67 #if wxUSE_IMAGE && wxUSE_WXDIB
68 // Convert from wxImage
69 wxBitmap(const wxImage
& image
, int depth
= -1)
70 { (void)CreateFromImage(image
, depth
); }
72 // Create a DDB compatible with the given DC from wxImage
73 wxBitmap(const wxImage
& image
, const wxDC
& dc
)
74 { (void)CreateFromImage(image
, dc
); }
77 // we must have this, otherwise icons are silently copied into bitmaps using
78 // the copy ctor but the resulting bitmap is invalid!
79 wxBitmap(const wxIcon
& icon
) { CopyFromIcon(icon
); }
81 wxBitmap
& operator=(const wxIcon
& icon
)
83 (void)CopyFromIcon(icon
);
88 wxBitmap
& operator=(const wxCursor
& cursor
)
90 (void)CopyFromCursor(cursor
);
97 #if wxUSE_IMAGE && wxUSE_WXDIB
98 wxImage
ConvertToImage() const;
101 // get the given part of bitmap
102 wxBitmap
GetSubBitmap( const wxRect
& rect
) const;
104 // copies the contents and mask of the given (colour) icon to the bitmap
105 bool CopyFromIcon(const wxIcon
& icon
);
107 // copies the contents and mask of the given cursor to the bitmap
108 bool CopyFromCursor(const wxCursor
& cursor
);
111 // copies from a device independent bitmap
112 bool CopyFromDIB(const wxDIB
& dib
);
115 virtual bool Create(int width
, int height
, int depth
= -1);
116 virtual bool Create(int width
, int height
, const wxDC
& dc
);
117 virtual bool Create(void *data
, long type
, int width
, int height
, int depth
= 1);
118 virtual bool LoadFile(const wxString
& name
, long type
= wxBITMAP_TYPE_BMP_RESOURCE
);
119 virtual bool SaveFile(const wxString
& name
, int type
, const wxPalette
*cmap
= NULL
);
121 wxBitmapRefData
*GetBitmapData() const
122 { return (wxBitmapRefData
*)m_refData
; }
124 // raw bitmap access support functions
125 void *GetRawData(wxPixelDataBase
& data
, int bpp
);
126 void UngetRawData(wxPixelDataBase
& data
);
129 wxPalette
* GetPalette() const;
130 void SetPalette(const wxPalette
& palette
);
131 #endif // wxUSE_PALETTE
133 wxMask
*GetMask() const;
134 wxBitmap
GetMaskBitmap() const;
135 void SetMask(wxMask
*mask
);
137 bool operator==(const wxBitmap
& bitmap
) const { return m_refData
== bitmap
.m_refData
; }
138 bool operator!=(const wxBitmap
& bitmap
) const { return m_refData
!= bitmap
.m_refData
; }
140 // these functions are internal and shouldn't be used, they risk to
141 // disappear in the future
142 bool HasAlpha() const;
145 #if WXWIN_COMPATIBILITY_2_4
146 // these functions do nothing and are only there for backwards
148 wxDEPRECATED( int GetQuality() const );
149 wxDEPRECATED( void SetQuality(int quality
) );
150 #endif // WXWIN_COMPATIBILITY_2_4
152 // implementation only from now on
153 // -------------------------------
156 void SetHBITMAP(WXHBITMAP bmp
) { SetHandle((WXHANDLE
)bmp
); }
157 WXHBITMAP
GetHBITMAP() const { return (WXHBITMAP
)GetHandle(); }
160 void SetSelectedInto(wxDC
*dc
);
161 wxDC
*GetSelectedInto() const;
162 #endif // __WXDEBUG__
165 virtual wxGDIImageRefData
*CreateData() const;
166 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
168 // creates the bitmap from XPM data, supposed to be called from ctor
169 bool CreateFromXpm(const char **bits
);
171 // creates an uninitialized bitmap, called from Create()s above
172 bool DoCreate(int w
, int h
, int depth
, WXHDC hdc
);
174 #if wxUSE_IMAGE && wxUSE_WXDIB
175 // creates the bitmap from wxImage, supposed to be called from ctor
176 bool CreateFromImage(const wxImage
& image
, int depth
);
178 // creates a DDB from wxImage, supposed to be called from ctor
179 bool CreateFromImage(const wxImage
& image
, const wxDC
& dc
);
181 // common part of the 2 methods above (hdc may be 0)
182 bool CreateFromImage(const wxImage
& image
, int depth
, WXHDC hdc
);
183 #endif // wxUSE_IMAGE
187 // common part of CopyFromIcon/CopyFromCursor for Win32
188 bool CopyFromIconOrCursor(const wxGDIImage
& icon
);
191 DECLARE_DYNAMIC_CLASS(wxBitmap
)
194 // ----------------------------------------------------------------------------
195 // wxMask: a mono bitmap used for drawing bitmaps transparently.
196 // ----------------------------------------------------------------------------
198 class WXDLLEXPORT wxMask
: public wxObject
203 // Construct a mask from a bitmap and a colour indicating the transparent
205 wxMask(const wxBitmap
& bitmap
, const wxColour
& colour
);
207 // Construct a mask from a bitmap and a palette index indicating the
209 wxMask(const wxBitmap
& bitmap
, int paletteIndex
);
211 // Construct a mask from a mono bitmap (copies the bitmap).
212 wxMask(const wxBitmap
& bitmap
);
214 // construct a mask from the givne bitmap handle
215 wxMask(WXHBITMAP hbmp
) { m_maskBitmap
= hbmp
; }
219 bool Create(const wxBitmap
& bitmap
, const wxColour
& colour
);
220 bool Create(const wxBitmap
& bitmap
, int paletteIndex
);
221 bool Create(const wxBitmap
& bitmap
);
224 WXHBITMAP
GetMaskBitmap() const { return m_maskBitmap
; }
225 void SetMaskBitmap(WXHBITMAP bmp
) { m_maskBitmap
= bmp
; }
228 WXHBITMAP m_maskBitmap
;
230 DECLARE_DYNAMIC_CLASS(wxMask
)
233 // ----------------------------------------------------------------------------
234 // wxBitmapHandler is a class which knows how to load/save bitmaps to/from file
235 // ----------------------------------------------------------------------------
237 class WXDLLEXPORT wxBitmapHandler
: public wxGDIImageHandler
240 wxBitmapHandler() { m_type
= wxBITMAP_TYPE_INVALID
; }
241 wxBitmapHandler(const wxString
& name
, const wxString
& ext
, long type
)
242 : wxGDIImageHandler(name
, ext
, type
)
246 // keep wxBitmapHandler derived from wxGDIImageHandler compatible with the
247 // old class which worked only with bitmaps
248 virtual bool Create(wxBitmap
*bitmap
,
251 int width
, int height
, int depth
= 1);
252 virtual bool LoadFile(wxBitmap
*bitmap
,
253 const wxString
& name
,
255 int desiredWidth
, int desiredHeight
);
256 virtual bool SaveFile(wxBitmap
*bitmap
,
257 const wxString
& name
,
259 const wxPalette
*palette
= NULL
);
261 virtual bool Create(wxGDIImage
*image
,
264 int width
, int height
, int depth
= 1);
265 virtual bool Load(wxGDIImage
*image
,
266 const wxString
& name
,
268 int desiredWidth
, int desiredHeight
);
269 virtual bool Save(wxGDIImage
*image
,
270 const wxString
& name
,
274 DECLARE_DYNAMIC_CLASS(wxBitmapHandler
)