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