]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/bitmap.h | |
3 | // Purpose: wxBitmap class | |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_BITMAP_H_ | |
13 | #define _WX_BITMAP_H_ | |
14 | ||
ffecfa5a JS |
15 | #include "wx/palmos/gdiimage.h" |
16 | #include "wx/gdicmn.h" | |
17 | #include "wx/palette.h" | |
18 | ||
b5dbe15d VS |
19 | class WXDLLIMPEXP_FWD_CORE wxBitmap; |
20 | class WXDLLIMPEXP_FWD_CORE wxBitmapHandler; | |
21 | class WXDLLIMPEXP_FWD_CORE wxBitmapRefData; | |
22 | class WXDLLIMPEXP_FWD_CORE wxControl; | |
23 | class WXDLLIMPEXP_FWD_CORE wxCursor; | |
24 | class WXDLLIMPEXP_FWD_CORE wxDC; | |
ffecfa5a | 25 | #if wxUSE_WXDIB |
b5dbe15d | 26 | class WXDLLIMPEXP_FWD_CORE wxDIB; |
ffecfa5a | 27 | #endif |
b5dbe15d VS |
28 | class WXDLLIMPEXP_FWD_CORE wxIcon; |
29 | class WXDLLIMPEXP_FWD_CORE wxImage; | |
30 | class WXDLLIMPEXP_FWD_CORE wxMask; | |
31 | class WXDLLIMPEXP_FWD_CORE wxPalette; | |
32 | class WXDLLIMPEXP_FWD_CORE wxPixelDataBase; | |
ffecfa5a JS |
33 | |
34 | // ---------------------------------------------------------------------------- | |
35 | // wxBitmap: a mono or colour bitmap | |
36 | // ---------------------------------------------------------------------------- | |
37 | ||
53a2db12 | 38 | class WXDLLIMPEXP_CORE wxBitmap : public wxGDIImage |
ffecfa5a JS |
39 | { |
40 | public: | |
41 | // default ctor creates an invalid bitmap, you must Create() it later | |
42 | wxBitmap() { Init(); } | |
43 | ||
ffecfa5a JS |
44 | // Initialize with raw data |
45 | wxBitmap(const char bits[], int width, int height, int depth = 1); | |
46 | ||
47 | // Initialize with XPM data | |
452418c4 | 48 | wxBitmap(const char* const* data); |
ffecfa5a JS |
49 | |
50 | // Load a file or resource | |
cbea3ec6 | 51 | wxBitmap(const wxString& name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE); |
ffecfa5a JS |
52 | |
53 | // New constructor for generalised creation from data | |
452418c4 | 54 | wxBitmap(const void* data, long type, int width, int height, int depth = 1); |
ffecfa5a JS |
55 | |
56 | // Create a new, uninitialized bitmap of the given size and depth (if it | |
57 | // is omitted, will create a bitmap compatible with the display) | |
58 | // | |
59 | // NB: this ctor will create a DIB for 24 and 32bpp bitmaps, use ctor | |
60 | // taking a DC argument if you want to force using DDB in this case | |
732d8c74 FM |
61 | wxBitmap(int width, int height, int depth = -1) { /*TODO*/ } |
62 | wxBitmap(const wxSize& sz, int depth = -1) { /*TODO*/ } | |
ffecfa5a JS |
63 | |
64 | // Create a bitmap compatible with the given DC | |
65 | wxBitmap(int width, int height, const wxDC& dc); | |
66 | ||
67 | #if wxUSE_IMAGE && wxUSE_WXDIB | |
68 | // Convert from wxImage | |
69 | wxBitmap(const wxImage& image, int depth = -1) | |
70 | { (void)CreateFromImage(image, depth); } | |
71 | ||
72 | // Create a DDB compatible with the given DC from wxImage | |
73 | wxBitmap(const wxImage& image, const wxDC& dc) | |
74 | { (void)CreateFromImage(image, dc); } | |
75 | #endif // wxUSE_IMAGE | |
76 | ||
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) { Init(); CopyFromIcon(icon); } | |
80 | ||
ffecfa5a JS |
81 | wxBitmap& operator=(const wxIcon& icon) |
82 | { | |
83 | (void)CopyFromIcon(icon); | |
84 | ||
85 | return *this; | |
86 | } | |
87 | ||
88 | wxBitmap& operator=(const wxCursor& cursor) | |
89 | { | |
90 | (void)CopyFromCursor(cursor); | |
91 | ||
92 | return *this; | |
93 | } | |
94 | ||
732d8c74 | 95 | virtual ~wxBitmap() {} |
ffecfa5a JS |
96 | |
97 | #if wxUSE_IMAGE && wxUSE_WXDIB | |
98 | wxImage ConvertToImage() const; | |
ac04aa99 | 99 | wxBitmap ConvertToDisabled(unsigned char brightness = 255) const; |
ffecfa5a JS |
100 | #endif // wxUSE_IMAGE |
101 | ||
102 | // get the given part of bitmap | |
103 | wxBitmap GetSubBitmap( const wxRect& rect ) const; | |
104 | ||
105 | // copies the contents and mask of the given (colour) icon to the bitmap | |
106 | bool CopyFromIcon(const wxIcon& icon); | |
107 | ||
108 | // copies the contents and mask of the given cursor to the bitmap | |
109 | bool CopyFromCursor(const wxCursor& cursor); | |
110 | ||
111 | #if wxUSE_WXDIB | |
112 | // copies from a device independent bitmap | |
113 | bool CopyFromDIB(const wxDIB& dib); | |
114 | #endif | |
115 | ||
732d8c74 FM |
116 | virtual bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH); |
117 | virtual bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH) | |
118 | { return Create(sz.GetWidth(), sz.GetHeight(), depth); } | |
119 | ||
ffecfa5a | 120 | virtual bool Create(int width, int height, const wxDC& dc); |
452418c4 | 121 | virtual bool Create(const void* data, long type, int width, int height, int depth = 1); |
cbea3ec6 | 122 | virtual bool LoadFile(const wxString& name, long type = wxBITMAP_DEFAULT_TYPE); |
ffecfa5a JS |
123 | virtual bool SaveFile(const wxString& name, int type, const wxPalette *cmap = NULL); |
124 | ||
125 | wxBitmapRefData *GetBitmapData() const | |
126 | { return (wxBitmapRefData *)m_refData; } | |
127 | ||
128 | // raw bitmap access support functions | |
129 | void *GetRawData(wxPixelDataBase& data, int bpp); | |
130 | void UngetRawData(wxPixelDataBase& data); | |
131 | ||
132 | #if wxUSE_PALETTE | |
133 | wxPalette* GetPalette() const; | |
134 | void SetPalette(const wxPalette& palette); | |
135 | #endif // wxUSE_PALETTE | |
136 | ||
137 | wxMask *GetMask() const; | |
138 | void SetMask(wxMask *mask); | |
139 | ||
ffecfa5a JS |
140 | // these functions are internal and shouldn't be used, they risk to |
141 | // disappear in the future | |
142 | bool HasAlpha() const; | |
ffecfa5a | 143 | |
ffecfa5a JS |
144 | // implementation only from now on |
145 | // ------------------------------- | |
146 | ||
147 | public: | |
148 | void SetHBITMAP(WXHBITMAP bmp) { SetHandle((WXHANDLE)bmp); } | |
149 | WXHBITMAP GetHBITMAP() const { return (WXHBITMAP)GetHandle(); } | |
150 | ||
ffecfa5a JS |
151 | protected: |
152 | // common part of all ctors | |
153 | void Init(); | |
154 | ||
155 | virtual wxGDIImageRefData *CreateData() const; | |
156 | ||
ffecfa5a JS |
157 | // creates an uninitialized bitmap, called from Create()s above |
158 | bool DoCreate(int w, int h, int depth, WXHDC hdc); | |
159 | ||
160 | #if wxUSE_IMAGE && wxUSE_WXDIB | |
161 | // creates the bitmap from wxImage, supposed to be called from ctor | |
162 | bool CreateFromImage(const wxImage& image, int depth); | |
163 | ||
164 | // creates a DDB from wxImage, supposed to be called from ctor | |
165 | bool CreateFromImage(const wxImage& image, const wxDC& dc); | |
166 | ||
167 | // common part of the 2 methods above (hdc may be 0) | |
168 | bool CreateFromImage(const wxImage& image, int depth, WXHDC hdc); | |
169 | #endif // wxUSE_IMAGE | |
170 | ||
171 | private: | |
ffecfa5a JS |
172 | DECLARE_DYNAMIC_CLASS(wxBitmap) |
173 | }; | |
174 | ||
175 | // ---------------------------------------------------------------------------- | |
176 | // wxMask: a mono bitmap used for drawing bitmaps transparently. | |
177 | // ---------------------------------------------------------------------------- | |
178 | ||
53a2db12 | 179 | class WXDLLIMPEXP_CORE wxMask : public wxObject |
ffecfa5a JS |
180 | { |
181 | public: | |
182 | wxMask(); | |
183 | ||
184 | // Construct a mask from a bitmap and a colour indicating the transparent | |
185 | // area | |
186 | wxMask(const wxBitmap& bitmap, const wxColour& colour); | |
187 | ||
188 | // Construct a mask from a bitmap and a palette index indicating the | |
189 | // transparent area | |
190 | wxMask(const wxBitmap& bitmap, int paletteIndex); | |
191 | ||
192 | // Construct a mask from a mono bitmap (copies the bitmap). | |
193 | wxMask(const wxBitmap& bitmap); | |
194 | ||
195 | // construct a mask from the givne bitmap handle | |
196 | wxMask(WXHBITMAP hbmp) { m_maskBitmap = hbmp; } | |
197 | ||
198 | virtual ~wxMask(); | |
199 | ||
200 | bool Create(const wxBitmap& bitmap, const wxColour& colour); | |
201 | bool Create(const wxBitmap& bitmap, int paletteIndex); | |
202 | bool Create(const wxBitmap& bitmap); | |
203 | ||
204 | // Implementation | |
205 | WXHBITMAP GetMaskBitmap() const { return m_maskBitmap; } | |
206 | void SetMaskBitmap(WXHBITMAP bmp) { m_maskBitmap = bmp; } | |
207 | ||
208 | protected: | |
209 | WXHBITMAP m_maskBitmap; | |
210 | ||
211 | DECLARE_DYNAMIC_CLASS(wxMask) | |
212 | }; | |
213 | ||
214 | // ---------------------------------------------------------------------------- | |
215 | // wxBitmapHandler is a class which knows how to load/save bitmaps to/from file | |
216 | // ---------------------------------------------------------------------------- | |
217 | ||
53a2db12 | 218 | class WXDLLIMPEXP_CORE wxBitmapHandler : public wxGDIImageHandler |
ffecfa5a JS |
219 | { |
220 | public: | |
221 | wxBitmapHandler() { m_type = wxBITMAP_TYPE_INVALID; } | |
222 | wxBitmapHandler(const wxString& name, const wxString& ext, long type) | |
223 | : wxGDIImageHandler(name, ext, type) | |
224 | { | |
225 | } | |
226 | ||
227 | // keep wxBitmapHandler derived from wxGDIImageHandler compatible with the | |
228 | // old class which worked only with bitmaps | |
229 | virtual bool Create(wxBitmap *bitmap, | |
452418c4 | 230 | const void* data, |
ffecfa5a JS |
231 | long flags, |
232 | int width, int height, int depth = 1); | |
233 | virtual bool LoadFile(wxBitmap *bitmap, | |
234 | const wxString& name, | |
235 | long flags, | |
236 | int desiredWidth, int desiredHeight); | |
237 | virtual bool SaveFile(wxBitmap *bitmap, | |
238 | const wxString& name, | |
239 | int type, | |
240 | const wxPalette *palette = NULL); | |
241 | ||
242 | virtual bool Create(wxGDIImage *image, | |
452418c4 | 243 | const void* data, |
ffecfa5a JS |
244 | long flags, |
245 | int width, int height, int depth = 1); | |
246 | virtual bool Load(wxGDIImage *image, | |
247 | const wxString& name, | |
248 | long flags, | |
249 | int desiredWidth, int desiredHeight); | |
250 | virtual bool Save(wxGDIImage *image, | |
251 | const wxString& name, | |
252 | int type); | |
253 | ||
254 | private: | |
255 | DECLARE_DYNAMIC_CLASS(wxBitmapHandler) | |
256 | }; | |
257 | ||
258 | #endif | |
259 | // _WX_BITMAP_H_ |