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