]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/bitmap.h
Add GetDrawable convenience function that returns m_bitmap
[wxWidgets.git] / include / wx / msw / bitmap.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
6d167489 2// Name: wx/msw/bitmap.h
2bda0e17
KB
3// Purpose: wxBitmap class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
4fe5383d 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_BITMAP_H_
13#define _WX_BITMAP_H_
2bda0e17
KB
14
15#ifdef __GNUG__
4fe5383d 16 #pragma interface "bitmap.h"
2bda0e17
KB
17#endif
18
6d167489 19#include "wx/msw/gdiimage.h"
2bda0e17
KB
20#include "wx/gdicmn.h"
21#include "wx/palette.h"
22
2bda0e17
KB
23class WXDLLEXPORT wxBitmap;
24class WXDLLEXPORT wxBitmapHandler;
8bbbae21 25class WXDLLEXPORT wxBitmapRefData;
03ab016d 26class WXDLLEXPORT wxControl;
b0ea5d96
VZ
27class WXDLLEXPORT wxCursor;
28class WXDLLEXPORT wxDC;
29class WXDLLEXPORT wxDIB;
30class WXDLLEXPORT wxIcon;
fd859211 31class WXDLLEXPORT wxImage;
b0ea5d96 32class WXDLLEXPORT wxMask;
d275c7eb 33class WXDLLEXPORT wxPalette;
2cf45d69 34class WXDLLEXPORT wxRawBitmapData;
2bda0e17 35
6d167489
VZ
36// ----------------------------------------------------------------------------
37// wxBitmap: a mono or colour bitmap
38// ----------------------------------------------------------------------------
2bda0e17 39
6d167489
VZ
40class WXDLLEXPORT wxBitmap : public wxGDIImage
41{
2bda0e17 42public:
4fe5383d
VZ
43 // default ctor creates an invalid bitmap, you must Create() it later
44 wxBitmap() { Init(); }
45
46 // Copy constructors
47 wxBitmap(const wxBitmap& bitmap) { Init(); Ref(bitmap); }
48
49 // Initialize with raw data
50 wxBitmap(const char bits[], int width, int height, int depth = 1);
51
52 // Initialize with XPM data
4b7f2165
VZ
53 wxBitmap(const char **data) { CreateFromXpm(data); }
54 wxBitmap(char **data) { CreateFromXpm((const char **)data); }
2bda0e17 55
4fe5383d 56 // Load a file or resource
2aeec9ec 57 wxBitmap(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_BMP_RESOURCE);
2bda0e17 58
4fe5383d
VZ
59 // New constructor for generalised creation from data
60 wxBitmap(void *data, long type, int width, int height, int depth = 1);
2bda0e17 61
2cf45d69
VZ
62 // Create a new, uninitialized bitmap of the given size and depth (if it
63 // is omitted, will create a bitmap compatible with the display)
64 //
65 // NB: this ctor will create a DIB for 24 and 32bpp bitmaps, use ctor
66 // taking a DC argument if you want to force using DDB in this case
4fe5383d 67 wxBitmap(int width, int height, int depth = -1);
6d51f220 68
2cf45d69
VZ
69 // Create a bitmap compatible with the given DC
70 wxBitmap(int width, int height, const wxDC& dc);
71
6d51f220 72#if wxUSE_IMAGE
2cf45d69 73 // Convert from wxImage
6d51f220
VZ
74 wxBitmap(const wxImage& image, int depth = -1)
75 { (void)CreateFromImage(image, depth); }
2cf45d69
VZ
76
77 // Create a DDB compatible with the given DC from wxImage
78 wxBitmap(const wxImage& image, const wxDC& dc)
79 { (void)CreateFromImage(image, dc); }
6d51f220 80#endif // wxUSE_IMAGE
2bda0e17 81
4fe5383d
VZ
82 // we must have this, otherwise icons are silently copied into bitmaps using
83 // the copy ctor but the resulting bitmap is invalid!
84 wxBitmap(const wxIcon& icon) { Init(); CopyFromIcon(icon); }
2bda0e17 85
4fe5383d
VZ
86 wxBitmap& operator=(const wxBitmap& bitmap)
87 {
88 if ( m_refData != bitmap.m_refData )
89 Ref(bitmap);
90 return *this;
91 }
2bda0e17 92
4fe5383d
VZ
93 wxBitmap& operator=(const wxIcon& icon)
94 {
95 (void)CopyFromIcon(icon);
07cf98cb 96
4fe5383d
VZ
97 return *this;
98 }
07cf98cb 99
6d167489
VZ
100 wxBitmap& operator=(const wxCursor& cursor)
101 {
102 (void)CopyFromCursor(cursor);
103
104 return *this;
105 }
106
4fe5383d 107 virtual ~wxBitmap();
2bda0e17 108
6d51f220 109#if wxUSE_IMAGE
fd859211 110 wxImage ConvertToImage() const;
6d51f220 111#endif // wxUSE_IMAGE
fd859211 112
4b7f2165 113 // get the given part of bitmap
8208e181 114 wxBitmap GetSubBitmap( const wxRect& rect ) const;
6d51f220 115
4fe5383d
VZ
116 // copies the contents and mask of the given (colour) icon to the bitmap
117 bool CopyFromIcon(const wxIcon& icon);
2bda0e17 118
6d167489
VZ
119 // copies the contents and mask of the given cursor to the bitmap
120 bool CopyFromCursor(const wxCursor& cursor);
121
b0ea5d96
VZ
122 // copies from a device independent bitmap
123 bool CopyFromDIB(const wxDIB& dib);
124
4fe5383d 125 virtual bool Create(int width, int height, int depth = -1);
2cf45d69 126 virtual bool Create(int width, int height, const wxDC& dc);
4fe5383d
VZ
127 virtual bool Create(void *data, long type, int width, int height, int depth = 1);
128 virtual bool LoadFile(const wxString& name, long type = wxBITMAP_TYPE_BMP_RESOURCE);
129 virtual bool SaveFile(const wxString& name, int type, const wxPalette *cmap = NULL);
130
8bbbae21
VZ
131 wxBitmapRefData *GetBitmapData() const
132 { return (wxBitmapRefData *)m_refData; }
6d167489 133
2cf45d69
VZ
134 // raw bitmap access support functions
135 bool GetRawData(wxRawBitmapData *data);
136 void UngetRawData(wxRawBitmapData *) { /* nothing to do here */ }
137
d275c7eb 138#if wxUSE_PALETTE
8bbbae21 139 wxPalette* GetPalette() const;
4fe5383d 140 void SetPalette(const wxPalette& palette);
d275c7eb 141#endif // wxUSE_PALETTE
2bda0e17 142
8bbbae21 143 wxMask *GetMask() const;
acf8e3d2 144 void SetMask(wxMask *mask);
2bda0e17 145
f6bcfd97
BP
146 bool operator==(const wxBitmap& bitmap) const { return m_refData == bitmap.m_refData; }
147 bool operator!=(const wxBitmap& bitmap) const { return m_refData != bitmap.m_refData; }
ce3ed50d 148
acf8e3d2
VZ
149 // this function is internal and shouldn't be used, it risks to disappear
150 bool HasAlpha() const;
8bbbae21
VZ
151
152#if WXWIN_COMPATIBILITY_2_4
153 // these functions do nothing and are only there for backwards
154 // compatibility
155 wxDEPRECATED( int GetQuality() const );
156 wxDEPRECATED( void SetQuality(int quality) );
157#endif // WXWIN_COMPATIBILITY_2_4
158
6d167489
VZ
159#if WXWIN_COMPATIBILITY_2
160 void SetOk(bool isOk);
161#endif // WXWIN_COMPATIBILITY_2
2bda0e17 162
6d167489 163#if WXWIN_COMPATIBILITY
2cf45d69 164#if wxUSE_PALETTE
6d167489
VZ
165 wxPalette *GetColourMap() const { return GetPalette(); }
166 void SetColourMap(wxPalette *cmap) { SetPalette(*cmap); };
d275c7eb 167#endif // wxUSE_PALETTE
2cf45d69
VZ
168#endif // WXWIN_COMPATIBILITY
169
170 // implementation only from now on
171 // -------------------------------
2bda0e17 172
2bda0e17 173public:
6d167489
VZ
174 void SetHBITMAP(WXHBITMAP bmp) { SetHandle((WXHANDLE)bmp); }
175 WXHBITMAP GetHBITMAP() const { return (WXHBITMAP)GetHandle(); }
176
acf8e3d2 177#ifdef __WXDEBUG__
8bbbae21
VZ
178 void SetSelectedInto(wxDC *dc);
179 wxDC *GetSelectedInto() const;
acf8e3d2 180#endif // __WXDEBUG__
6d167489 181
4fe5383d
VZ
182protected:
183 // common part of all ctors
184 void Init();
7b46ecac 185
8bbbae21 186 virtual wxGDIImageRefData *CreateData() const;
6d167489 187
4b7f2165
VZ
188 // creates the bitmap from XPM data, supposed to be called from ctor
189 bool CreateFromXpm(const char **bits);
6d51f220 190
2cf45d69
VZ
191 // creates an uninitialized bitmap, called from Create()s above
192 bool DoCreate(int w, int h, int depth, WXHDC hdc);
193
6d51f220 194#if wxUSE_IMAGE
fd859211
VS
195 // creates the bitmap from wxImage, supposed to be called from ctor
196 bool CreateFromImage(const wxImage& image, int depth);
4b7f2165 197
2cf45d69
VZ
198 // creates a DDB from wxImage, supposed to be called from ctor
199 bool CreateFromImage(const wxImage& image, const wxDC& dc);
8bbbae21 200
2cf45d69
VZ
201 // common part of the 2 methods above (hdc may be 0)
202 bool CreateFromImage(const wxImage& image, int depth, WXHDC hdc);
203#endif // wxUSE_IMAGE
0becd470 204
4fe5383d 205private:
6d167489
VZ
206#ifdef __WIN32__
207 // common part of CopyFromIcon/CopyFromCursor for Win32
208 bool CopyFromIconOrCursor(const wxGDIImage& icon);
209#endif // __WIN32__
210
4fe5383d 211 DECLARE_DYNAMIC_CLASS(wxBitmap)
2bda0e17 212};
ce3ed50d 213
6d167489
VZ
214// ----------------------------------------------------------------------------
215// wxMask: a mono bitmap used for drawing bitmaps transparently.
216// ----------------------------------------------------------------------------
217
218class WXDLLEXPORT wxMask : public wxObject
219{
220public:
221 wxMask();
222
223 // Construct a mask from a bitmap and a colour indicating the transparent
224 // area
225 wxMask(const wxBitmap& bitmap, const wxColour& colour);
226
227 // Construct a mask from a bitmap and a palette index indicating the
228 // transparent area
229 wxMask(const wxBitmap& bitmap, int paletteIndex);
230
231 // Construct a mask from a mono bitmap (copies the bitmap).
232 wxMask(const wxBitmap& bitmap);
233
234 // construct a mask from the givne bitmap handle
235 wxMask(WXHBITMAP hbmp) { m_maskBitmap = hbmp; }
236
237 virtual ~wxMask();
238
239 bool Create(const wxBitmap& bitmap, const wxColour& colour);
240 bool Create(const wxBitmap& bitmap, int paletteIndex);
241 bool Create(const wxBitmap& bitmap);
242
243 // Implementation
244 WXHBITMAP GetMaskBitmap() const { return m_maskBitmap; }
245 void SetMaskBitmap(WXHBITMAP bmp) { m_maskBitmap = bmp; }
246
247protected:
248 WXHBITMAP m_maskBitmap;
249
250 DECLARE_DYNAMIC_CLASS(wxMask)
251};
252
253// ----------------------------------------------------------------------------
254// wxBitmapHandler is a class which knows how to load/save bitmaps to/from file
255// ----------------------------------------------------------------------------
256
257class WXDLLEXPORT wxBitmapHandler : public wxGDIImageHandler
258{
259public:
260 wxBitmapHandler() { m_type = wxBITMAP_TYPE_INVALID; }
261 wxBitmapHandler(const wxString& name, const wxString& ext, long type)
262 : wxGDIImageHandler(name, ext, type)
263 {
264 }
265
266 // keep wxBitmapHandler derived from wxGDIImageHandler compatible with the
267 // old class which worked only with bitmaps
268 virtual bool Create(wxBitmap *bitmap,
269 void *data,
270 long flags,
271 int width, int height, int depth = 1);
272 virtual bool LoadFile(wxBitmap *bitmap,
273 const wxString& name,
274 long flags,
275 int desiredWidth, int desiredHeight);
276 virtual bool SaveFile(wxBitmap *bitmap,
277 const wxString& name,
278 int type,
279 const wxPalette *palette = NULL);
280
281 virtual bool Create(wxGDIImage *image,
282 void *data,
283 long flags,
284 int width, int height, int depth = 1);
285 virtual bool Load(wxGDIImage *image,
286 const wxString& name,
287 long flags,
288 int desiredWidth, int desiredHeight);
289 virtual bool Save(wxGDIImage *image,
290 const wxString& name,
291 int type);
292
293private:
294 DECLARE_DYNAMIC_CLASS(wxBitmapHandler)
295};
296
2bda0e17 297#endif
bbcdf8bc 298 // _WX_BITMAP_H_