]>
Commit | Line | Data |
---|---|---|
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 |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_BITMAP_H_ |
13 | #define _WX_BITMAP_H_ | |
2bda0e17 | 14 | |
6d167489 | 15 | #include "wx/msw/gdiimage.h" |
2bda0e17 KB |
16 | #include "wx/palette.h" |
17 | ||
2bda0e17 KB |
18 | class WXDLLEXPORT wxBitmap; |
19 | class WXDLLEXPORT wxBitmapHandler; | |
8bbbae21 | 20 | class WXDLLEXPORT wxBitmapRefData; |
03ab016d | 21 | class WXDLLEXPORT wxControl; |
b0ea5d96 VZ |
22 | class WXDLLEXPORT wxCursor; |
23 | class WXDLLEXPORT wxDC; | |
086b3a5b | 24 | #if wxUSE_WXDIB |
b0ea5d96 | 25 | class WXDLLEXPORT wxDIB; |
086b3a5b | 26 | #endif |
b0ea5d96 | 27 | class WXDLLEXPORT wxIcon; |
fd859211 | 28 | class WXDLLEXPORT wxImage; |
b0ea5d96 | 29 | class WXDLLEXPORT wxMask; |
d275c7eb | 30 | class WXDLLEXPORT wxPalette; |
b9bcaf11 | 31 | class WXDLLEXPORT wxPixelDataBase; |
2bda0e17 | 32 | |
6d167489 VZ |
33 | // ---------------------------------------------------------------------------- |
34 | // wxBitmap: a mono or colour bitmap | |
35 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 36 | |
6d167489 VZ |
37 | class WXDLLEXPORT wxBitmap : public wxGDIImage |
38 | { | |
2bda0e17 | 39 | public: |
4fe5383d | 40 | // default ctor creates an invalid bitmap, you must Create() it later |
f8855e47 | 41 | wxBitmap() { } |
4fe5383d VZ |
42 | |
43 | // Initialize with raw data | |
44 | wxBitmap(const char bits[], int width, int height, int depth = 1); | |
45 | ||
46 | // Initialize with XPM data | |
452418c4 | 47 | wxBitmap(const char* const* data); |
4a4bf7ee | 48 | #if defined(__BORLANDC__) || (defined (__GNUC__) && __GNUC__ < 3) |
29b7b6ca PC |
49 | // needed for Borland 5.5 |
50 | wxBitmap(char** data) | |
51 | { | |
52 | *this = wxBitmap(wx_const_cast(const char* const*, data)); | |
53 | } | |
54 | #endif | |
2bda0e17 | 55 | |
4fe5383d | 56 | // Load a file or resource |
2aeec9ec | 57 | wxBitmap(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_BMP_RESOURCE); |
2bda0e17 | 58 | |
4fe5383d | 59 | // New constructor for generalised creation from data |
452418c4 | 60 | wxBitmap(const 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 | ||
50a9dd77 | 72 | #if wxUSE_IMAGE |
2cf45d69 | 73 | // Convert from wxImage |
6463b9f5 JS |
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 | |
6463b9f5 JS |
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! | |
f8855e47 | 84 | wxBitmap(const wxIcon& icon) { CopyFromIcon(icon); } |
2bda0e17 | 85 | |
4fe5383d VZ |
86 | wxBitmap& operator=(const wxIcon& icon) |
87 | { | |
88 | (void)CopyFromIcon(icon); | |
07cf98cb | 89 | |
4fe5383d VZ |
90 | return *this; |
91 | } | |
07cf98cb | 92 | |
6d167489 VZ |
93 | wxBitmap& operator=(const wxCursor& cursor) |
94 | { | |
95 | (void)CopyFromCursor(cursor); | |
96 | ||
97 | return *this; | |
98 | } | |
99 | ||
4fe5383d | 100 | virtual ~wxBitmap(); |
2bda0e17 | 101 | |
50a9dd77 | 102 | #if wxUSE_IMAGE |
fd859211 | 103 | wxImage ConvertToImage() const; |
6d51f220 | 104 | #endif // wxUSE_IMAGE |
fd859211 | 105 | |
4b7f2165 | 106 | // get the given part of bitmap |
8208e181 | 107 | wxBitmap GetSubBitmap( const wxRect& rect ) const; |
6d51f220 | 108 | |
4fe5383d VZ |
109 | // copies the contents and mask of the given (colour) icon to the bitmap |
110 | bool CopyFromIcon(const wxIcon& icon); | |
2bda0e17 | 111 | |
6d167489 VZ |
112 | // copies the contents and mask of the given cursor to the bitmap |
113 | bool CopyFromCursor(const wxCursor& cursor); | |
114 | ||
086b3a5b | 115 | #if wxUSE_WXDIB |
b0ea5d96 VZ |
116 | // copies from a device independent bitmap |
117 | bool CopyFromDIB(const wxDIB& dib); | |
086b3a5b | 118 | #endif |
b0ea5d96 | 119 | |
4fe5383d | 120 | virtual bool Create(int width, int height, int depth = -1); |
2cf45d69 | 121 | virtual bool Create(int width, int height, const wxDC& dc); |
452418c4 | 122 | virtual bool Create(const void* data, long type, int width, int height, int depth = 1); |
4fe5383d VZ |
123 | virtual bool LoadFile(const wxString& name, long type = wxBITMAP_TYPE_BMP_RESOURCE); |
124 | virtual bool SaveFile(const wxString& name, int type, const wxPalette *cmap = NULL); | |
125 | ||
8bbbae21 VZ |
126 | wxBitmapRefData *GetBitmapData() const |
127 | { return (wxBitmapRefData *)m_refData; } | |
6d167489 | 128 | |
2cf45d69 | 129 | // raw bitmap access support functions |
b9bcaf11 VZ |
130 | void *GetRawData(wxPixelDataBase& data, int bpp); |
131 | void UngetRawData(wxPixelDataBase& data); | |
2cf45d69 | 132 | |
d275c7eb | 133 | #if wxUSE_PALETTE |
8bbbae21 | 134 | wxPalette* GetPalette() const; |
4fe5383d | 135 | void SetPalette(const wxPalette& palette); |
d275c7eb | 136 | #endif // wxUSE_PALETTE |
2bda0e17 | 137 | |
8bbbae21 | 138 | wxMask *GetMask() const; |
ec023a6e | 139 | wxBitmap GetMaskBitmap() const; |
acf8e3d2 | 140 | void SetMask(wxMask *mask); |
2bda0e17 | 141 | |
10b41b53 VZ |
142 | // these functions are internal and shouldn't be used, they risk to |
143 | // disappear in the future | |
acf8e3d2 | 144 | bool HasAlpha() const; |
10b41b53 | 145 | void UseAlpha(); |
8bbbae21 VZ |
146 | |
147 | #if WXWIN_COMPATIBILITY_2_4 | |
148 | // these functions do nothing and are only there for backwards | |
149 | // compatibility | |
150 | wxDEPRECATED( int GetQuality() const ); | |
151 | wxDEPRECATED( void SetQuality(int quality) ); | |
152 | #endif // WXWIN_COMPATIBILITY_2_4 | |
153 | ||
2cf45d69 VZ |
154 | // implementation only from now on |
155 | // ------------------------------- | |
2bda0e17 | 156 | |
2bda0e17 | 157 | public: |
6d167489 VZ |
158 | void SetHBITMAP(WXHBITMAP bmp) { SetHandle((WXHANDLE)bmp); } |
159 | WXHBITMAP GetHBITMAP() const { return (WXHBITMAP)GetHandle(); } | |
160 | ||
acf8e3d2 | 161 | #ifdef __WXDEBUG__ |
8bbbae21 VZ |
162 | void SetSelectedInto(wxDC *dc); |
163 | wxDC *GetSelectedInto() const; | |
acf8e3d2 | 164 | #endif // __WXDEBUG__ |
6d167489 | 165 | |
4fe5383d | 166 | protected: |
8bbbae21 | 167 | virtual wxGDIImageRefData *CreateData() const; |
7ff64980 | 168 | virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; |
6d167489 | 169 | |
2cf45d69 VZ |
170 | // creates an uninitialized bitmap, called from Create()s above |
171 | bool DoCreate(int w, int h, int depth, WXHDC hdc); | |
172 | ||
50a9dd77 | 173 | #if wxUSE_IMAGE |
fd859211 VS |
174 | // creates the bitmap from wxImage, supposed to be called from ctor |
175 | bool CreateFromImage(const wxImage& image, int depth); | |
4b7f2165 | 176 | |
2cf45d69 VZ |
177 | // creates a DDB from wxImage, supposed to be called from ctor |
178 | bool CreateFromImage(const wxImage& image, const wxDC& dc); | |
8bbbae21 | 179 | |
2cf45d69 VZ |
180 | // common part of the 2 methods above (hdc may be 0) |
181 | bool CreateFromImage(const wxImage& image, int depth, WXHDC hdc); | |
182 | #endif // wxUSE_IMAGE | |
0becd470 | 183 | |
4fe5383d | 184 | private: |
6d167489 VZ |
185 | // common part of CopyFromIcon/CopyFromCursor for Win32 |
186 | bool CopyFromIconOrCursor(const wxGDIImage& icon); | |
50a9dd77 | 187 | |
6d167489 | 188 | |
4fe5383d | 189 | DECLARE_DYNAMIC_CLASS(wxBitmap) |
2bda0e17 | 190 | }; |
ce3ed50d | 191 | |
6d167489 VZ |
192 | // ---------------------------------------------------------------------------- |
193 | // wxMask: a mono bitmap used for drawing bitmaps transparently. | |
194 | // ---------------------------------------------------------------------------- | |
195 | ||
196 | class WXDLLEXPORT wxMask : public wxObject | |
197 | { | |
198 | public: | |
199 | wxMask(); | |
200 | ||
201 | // Construct a mask from a bitmap and a colour indicating the transparent | |
202 | // area | |
203 | wxMask(const wxBitmap& bitmap, const wxColour& colour); | |
204 | ||
205 | // Construct a mask from a bitmap and a palette index indicating the | |
206 | // transparent area | |
207 | wxMask(const wxBitmap& bitmap, int paletteIndex); | |
208 | ||
209 | // Construct a mask from a mono bitmap (copies the bitmap). | |
210 | wxMask(const wxBitmap& bitmap); | |
211 | ||
212 | // construct a mask from the givne bitmap handle | |
213 | wxMask(WXHBITMAP hbmp) { m_maskBitmap = hbmp; } | |
214 | ||
215 | virtual ~wxMask(); | |
216 | ||
217 | bool Create(const wxBitmap& bitmap, const wxColour& colour); | |
218 | bool Create(const wxBitmap& bitmap, int paletteIndex); | |
219 | bool Create(const wxBitmap& bitmap); | |
220 | ||
221 | // Implementation | |
222 | WXHBITMAP GetMaskBitmap() const { return m_maskBitmap; } | |
223 | void SetMaskBitmap(WXHBITMAP bmp) { m_maskBitmap = bmp; } | |
224 | ||
225 | protected: | |
226 | WXHBITMAP m_maskBitmap; | |
227 | ||
228 | DECLARE_DYNAMIC_CLASS(wxMask) | |
229 | }; | |
230 | ||
231 | // ---------------------------------------------------------------------------- | |
232 | // wxBitmapHandler is a class which knows how to load/save bitmaps to/from file | |
233 | // ---------------------------------------------------------------------------- | |
234 | ||
235 | class WXDLLEXPORT wxBitmapHandler : public wxGDIImageHandler | |
236 | { | |
237 | public: | |
cb62a16a | 238 | wxBitmapHandler() { } |
6d167489 VZ |
239 | wxBitmapHandler(const wxString& name, const wxString& ext, long type) |
240 | : wxGDIImageHandler(name, ext, type) | |
241 | { | |
242 | } | |
243 | ||
244 | // keep wxBitmapHandler derived from wxGDIImageHandler compatible with the | |
245 | // old class which worked only with bitmaps | |
246 | virtual bool Create(wxBitmap *bitmap, | |
452418c4 | 247 | const void* data, |
6d167489 | 248 | long flags, |
cb62a16a | 249 | int width, int height, int depth = 1); |
6d167489 VZ |
250 | virtual bool LoadFile(wxBitmap *bitmap, |
251 | const wxString& name, | |
252 | long flags, | |
cb62a16a | 253 | int desiredWidth, int desiredHeight); |
6d167489 VZ |
254 | virtual bool SaveFile(wxBitmap *bitmap, |
255 | const wxString& name, | |
256 | int type, | |
cb62a16a | 257 | const wxPalette *palette = NULL); |
6d167489 VZ |
258 | |
259 | virtual bool Create(wxGDIImage *image, | |
452418c4 | 260 | const void* data, |
6d167489 VZ |
261 | long flags, |
262 | int width, int height, int depth = 1); | |
263 | virtual bool Load(wxGDIImage *image, | |
264 | const wxString& name, | |
265 | long flags, | |
266 | int desiredWidth, int desiredHeight); | |
267 | virtual bool Save(wxGDIImage *image, | |
268 | const wxString& name, | |
269 | int type); | |
270 | ||
271 | private: | |
272 | DECLARE_DYNAMIC_CLASS(wxBitmapHandler) | |
273 | }; | |
274 | ||
2bda0e17 | 275 | #endif |
bbcdf8bc | 276 | // _WX_BITMAP_H_ |