]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/bitmap.h
1. some minor compilation fixes in datetime.cppm
[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 wxDC;
24class WXDLLEXPORT wxControl;
25class WXDLLEXPORT wxBitmap;
26class WXDLLEXPORT wxBitmapHandler;
27class WXDLLEXPORT wxIcon;
6d167489 28class WXDLLEXPORT wxMask;
2bda0e17 29class WXDLLEXPORT wxCursor;
03ab016d 30class WXDLLEXPORT wxControl;
2bda0e17 31
6d167489
VZ
32// ----------------------------------------------------------------------------
33// Bitmap data
34//
35// NB: this class is private, but declared here to make it possible inline
36// wxBitmap functions accessing it
37// ----------------------------------------------------------------------------
4fe5383d 38
6d167489 39class WXDLLEXPORT wxBitmapRefData : public wxGDIImageRefData
2bda0e17 40{
2bda0e17 41public:
10fcf31a 42 wxBitmapRefData();
6d167489
VZ
43 virtual ~wxBitmapRefData() { Free(); }
44
45 virtual void Free();
2bda0e17
KB
46
47public:
6d167489
VZ
48 int m_numColors;
49 wxPalette m_bitmapPalette;
50 int m_quality;
2bda0e17 51
6d167489
VZ
52 // MSW-specific
53 // ------------
2bda0e17 54
6d167489
VZ
55 // this field is solely for error checking: we detect selecting a bitmap
56 // into more than one DC at once or deleting a bitmap still selected into a
57 // DC (both are serious programming errors under Windows)
58 wxDC *m_selectedInto;
59
60 // optional mask for transparent drawing
61 wxMask *m_bitmapMask;
2bda0e17 62};
2bda0e17 63
6d167489
VZ
64// ----------------------------------------------------------------------------
65// wxBitmap: a mono or colour bitmap
66// ----------------------------------------------------------------------------
2bda0e17 67
6d167489
VZ
68class WXDLLEXPORT wxBitmap : public wxGDIImage
69{
2bda0e17 70public:
4fe5383d
VZ
71 // default ctor creates an invalid bitmap, you must Create() it later
72 wxBitmap() { Init(); }
73
74 // Copy constructors
75 wxBitmap(const wxBitmap& bitmap) { Init(); Ref(bitmap); }
76
77 // Initialize with raw data
78 wxBitmap(const char bits[], int width, int height, int depth = 1);
79
80 // Initialize with XPM data
81 wxBitmap(char **data, wxControl *anItem = NULL);
2bda0e17 82
4fe5383d
VZ
83 // Load a file or resource
84 wxBitmap(const wxString& name, long type = wxBITMAP_TYPE_BMP_RESOURCE);
2bda0e17 85
4fe5383d
VZ
86 // New constructor for generalised creation from data
87 wxBitmap(void *data, long type, int width, int height, int depth = 1);
2bda0e17 88
4fe5383d
VZ
89 // If depth is omitted, will create a bitmap compatible with the display
90 wxBitmap(int width, int height, int depth = -1);
2bda0e17 91
4fe5383d
VZ
92 // we must have this, otherwise icons are silently copied into bitmaps using
93 // the copy ctor but the resulting bitmap is invalid!
94 wxBitmap(const wxIcon& icon) { Init(); CopyFromIcon(icon); }
2bda0e17 95
4fe5383d
VZ
96 wxBitmap& operator=(const wxBitmap& bitmap)
97 {
98 if ( m_refData != bitmap.m_refData )
99 Ref(bitmap);
100 return *this;
101 }
2bda0e17 102
4fe5383d
VZ
103 wxBitmap& operator=(const wxIcon& icon)
104 {
105 (void)CopyFromIcon(icon);
07cf98cb 106
4fe5383d
VZ
107 return *this;
108 }
07cf98cb 109
6d167489
VZ
110 wxBitmap& operator=(const wxCursor& cursor)
111 {
112 (void)CopyFromCursor(cursor);
113
114 return *this;
115 }
116
4fe5383d 117 virtual ~wxBitmap();
2bda0e17 118
3f399a69
GRG
119 // GRG, Dic/99
120 wxBitmap wxBitmap::GetSubBitmap( const wxRect& rect ) const;
121
4fe5383d
VZ
122 // copies the contents and mask of the given (colour) icon to the bitmap
123 bool CopyFromIcon(const wxIcon& icon);
2bda0e17 124
6d167489
VZ
125 // copies the contents and mask of the given cursor to the bitmap
126 bool CopyFromCursor(const wxCursor& cursor);
127
4fe5383d
VZ
128 virtual bool Create(int width, int height, int depth = -1);
129 virtual bool Create(void *data, long type, int width, int height, int depth = 1);
130 virtual bool LoadFile(const wxString& name, long type = wxBITMAP_TYPE_BMP_RESOURCE);
131 virtual bool SaveFile(const wxString& name, int type, const wxPalette *cmap = NULL);
132
6d167489
VZ
133 wxBitmapRefData *GetBitmapData() const { return (wxBitmapRefData *)m_refData; }
134
135 int GetQuality() const { return (GetBitmapData() ? GetBitmapData()->m_quality : 0); }
4fe5383d 136 void SetQuality(int q);
6d167489
VZ
137
138 wxPalette* GetPalette() const { return (GetBitmapData() ? (& GetBitmapData()->m_bitmapPalette) : (wxPalette*) NULL); }
4fe5383d 139 void SetPalette(const wxPalette& palette);
2bda0e17 140
6d167489 141 wxMask *GetMask() const { return (GetBitmapData() ? GetBitmapData()->m_bitmapMask : (wxMask*) NULL); }
4fe5383d 142 void SetMask(wxMask *mask) ;
2bda0e17 143
4fe5383d
VZ
144 bool operator==(const wxBitmap& bitmap) { return m_refData == bitmap.m_refData; }
145 bool operator!=(const wxBitmap& bitmap) { return m_refData != bitmap.m_refData; }
ce3ed50d 146
6d167489
VZ
147#if WXWIN_COMPATIBILITY_2
148 void SetOk(bool isOk);
149#endif // WXWIN_COMPATIBILITY_2
2bda0e17 150
6d167489
VZ
151#if WXWIN_COMPATIBILITY
152 wxPalette *GetColourMap() const { return GetPalette(); }
153 void SetColourMap(wxPalette *cmap) { SetPalette(*cmap); };
154#endif // WXWIN_COMPATIBILITY
2bda0e17 155
4fe5383d 156 // Implementation
2bda0e17 157public:
6d167489
VZ
158 void SetHBITMAP(WXHBITMAP bmp) { SetHandle((WXHANDLE)bmp); }
159 WXHBITMAP GetHBITMAP() const { return (WXHBITMAP)GetHandle(); }
160
161 void SetSelectedInto(wxDC *dc) { if (GetBitmapData()) GetBitmapData()->m_selectedInto = dc; }
162 wxDC *GetSelectedInto() const { return (GetBitmapData() ? GetBitmapData()->m_selectedInto : (wxDC*) NULL); }
163
164 // Creates a bitmap that matches the device context's depth, from an
165 // arbitray bitmap. At present, the original bitmap must have an associated
166 // palette. (TODO: use a default palette if no palette exists.) This
167 // function is necessary for you to Blit an arbitrary bitmap (which may
168 // have the wrong depth). wxDC::SelectObject will compare the depth of the
169 // bitmap with the DC's depth, and create a new bitmap if the depths
170 // differ. Eventually we should perhaps make this a public API function so
171 // that an app can efficiently produce bitmaps of the correct depth. The
172 // Windows solution is to use SetDibBits to blit an arbotrary DIB directly
173 // to a DC, but this is too Windows-specific, hence this solution of
174 // quietly converting the wxBitmap. Contributed by Frederic Villeneuve
175 // <frederic.villeneuve@natinst.com>
4fe5383d
VZ
176 wxBitmap GetBitmapForDC(wxDC& dc) const;
177
178protected:
179 // common part of all ctors
180 void Init();
7b46ecac 181
6d167489
VZ
182 virtual wxGDIImageRefData *CreateData() const
183 { return new wxBitmapRefData; }
184
4fe5383d 185private:
6d167489
VZ
186#ifdef __WIN32__
187 // common part of CopyFromIcon/CopyFromCursor for Win32
188 bool CopyFromIconOrCursor(const wxGDIImage& icon);
189#endif // __WIN32__
190
4fe5383d 191 DECLARE_DYNAMIC_CLASS(wxBitmap)
2bda0e17 192};
ce3ed50d 193
6d167489
VZ
194// ----------------------------------------------------------------------------
195// wxMask: a mono bitmap used for drawing bitmaps transparently.
196// ----------------------------------------------------------------------------
197
198class WXDLLEXPORT wxMask : public wxObject
199{
200public:
201 wxMask();
202
203 // Construct a mask from a bitmap and a colour indicating the transparent
204 // area
205 wxMask(const wxBitmap& bitmap, const wxColour& colour);
206
207 // Construct a mask from a bitmap and a palette index indicating the
208 // transparent area
209 wxMask(const wxBitmap& bitmap, int paletteIndex);
210
211 // Construct a mask from a mono bitmap (copies the bitmap).
212 wxMask(const wxBitmap& bitmap);
213
214 // construct a mask from the givne bitmap handle
215 wxMask(WXHBITMAP hbmp) { m_maskBitmap = hbmp; }
216
217 virtual ~wxMask();
218
219 bool Create(const wxBitmap& bitmap, const wxColour& colour);
220 bool Create(const wxBitmap& bitmap, int paletteIndex);
221 bool Create(const wxBitmap& bitmap);
222
223 // Implementation
224 WXHBITMAP GetMaskBitmap() const { return m_maskBitmap; }
225 void SetMaskBitmap(WXHBITMAP bmp) { m_maskBitmap = bmp; }
226
227protected:
228 WXHBITMAP m_maskBitmap;
229
230 DECLARE_DYNAMIC_CLASS(wxMask)
231};
232
233// ----------------------------------------------------------------------------
234// wxBitmapHandler is a class which knows how to load/save bitmaps to/from file
235// ----------------------------------------------------------------------------
236
237class WXDLLEXPORT wxBitmapHandler : public wxGDIImageHandler
238{
239public:
240 wxBitmapHandler() { m_type = wxBITMAP_TYPE_INVALID; }
241 wxBitmapHandler(const wxString& name, const wxString& ext, long type)
242 : wxGDIImageHandler(name, ext, type)
243 {
244 }
245
246 // keep wxBitmapHandler derived from wxGDIImageHandler compatible with the
247 // old class which worked only with bitmaps
248 virtual bool Create(wxBitmap *bitmap,
249 void *data,
250 long flags,
251 int width, int height, int depth = 1);
252 virtual bool LoadFile(wxBitmap *bitmap,
253 const wxString& name,
254 long flags,
255 int desiredWidth, int desiredHeight);
256 virtual bool SaveFile(wxBitmap *bitmap,
257 const wxString& name,
258 int type,
259 const wxPalette *palette = NULL);
260
261 virtual bool Create(wxGDIImage *image,
262 void *data,
263 long flags,
264 int width, int height, int depth = 1);
265 virtual bool Load(wxGDIImage *image,
266 const wxString& name,
267 long flags,
268 int desiredWidth, int desiredHeight);
269 virtual bool Save(wxGDIImage *image,
270 const wxString& name,
271 int type);
272
273private:
274 DECLARE_DYNAMIC_CLASS(wxBitmapHandler)
275};
276
2bda0e17 277#endif
bbcdf8bc 278 // _WX_BITMAP_H_