Reformatted Motif headers; added __WXX11__ symbol support to common headers;
[wxWidgets.git] / include / wx / x11 / bitmap.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: bitmap.h
3 // Purpose: wxBitmap class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 17/09/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_BITMAP_H_
13 #define _WX_BITMAP_H_
14
15 #ifdef __GNUG__
16 #pragma interface "bitmap.h"
17 #endif
18
19 #include "wx/gdiobj.h"
20 #include "wx/gdicmn.h"
21 #include "wx/palette.h"
22
23 // Bitmap
24 class WXDLLEXPORT wxDC;
25 class WXDLLEXPORT wxControl;
26 class WXDLLEXPORT wxBitmap;
27 class WXDLLEXPORT wxBitmapHandler;
28 class WXDLLEXPORT wxIcon;
29 class WXDLLEXPORT wxCursor;
30 class WXDLLEXPORT wxImage;
31
32 // A mask is a mono bitmap used for drawing bitmaps
33 // transparently.
34 class WXDLLEXPORT wxMask: public wxObject
35 {
36 DECLARE_DYNAMIC_CLASS(wxMask)
37
38 public:
39 wxMask();
40
41 // Construct a mask from a bitmap and a colour indicating
42 // the transparent area
43 wxMask(const wxBitmap& bitmap, const wxColour& colour);
44
45 // Construct a mask from a bitmap and a palette index indicating
46 // the transparent area
47 wxMask(const wxBitmap& bitmap, int paletteIndex);
48
49 // Construct a mask from a mono bitmap (copies the bitmap).
50 wxMask(const wxBitmap& bitmap);
51
52 ~wxMask();
53
54 bool Create(const wxBitmap& bitmap, const wxColour& colour);
55 bool Create(const wxBitmap& bitmap, int paletteIndex);
56 bool Create(const wxBitmap& bitmap);
57
58 WXPixmap GetPixmap() const { return m_pixmap; }
59 void SetPixmap(WXPixmap pixmap) { m_pixmap = pixmap; }
60
61 protected:
62 WXPixmap m_pixmap;
63 };
64
65 class WXDLLEXPORT wxBitmapRefData: public wxGDIRefData
66 {
67 friend class WXDLLEXPORT wxBitmap;
68 friend class WXDLLEXPORT wxIcon;
69 friend class WXDLLEXPORT wxCursor;
70 public:
71 wxBitmapRefData();
72 ~wxBitmapRefData();
73
74 public:
75 int m_width;
76 int m_height;
77 int m_depth;
78 bool m_ok;
79 int m_numColors;
80 wxPalette m_bitmapPalette;
81 int m_quality;
82
83 wxMask * m_bitmapMask; // Optional mask
84
85 // Motif implementation
86 public:
87 WXPixmap m_pixmap;
88 WXDisplay* m_display;
89 bool m_freePixmap;
90 unsigned long* m_freeColors;
91 long m_freeColorsCount;
92
93 // These 5 variables are for wxControl
94 WXPixmap m_insensPixmap ;
95 WXPixmap m_labelPixmap ;
96 WXPixmap m_armPixmap ;
97 WXImage* m_image ;
98 WXImage* m_insensImage ;
99 };
100
101 #define M_BITMAPDATA ((wxBitmapRefData *)m_refData)
102
103 class WXDLLEXPORT wxBitmapHandler: public wxObject
104 {
105 DECLARE_DYNAMIC_CLASS(wxBitmapHandler)
106 public:
107 wxBitmapHandler() { m_name = ""; m_extension = ""; m_type = 0; };
108
109 virtual bool Create(wxBitmap *bitmap, void *data, long flags, int width, int height, int depth = 1);
110 virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags,
111 int desiredWidth, int desiredHeight);
112 virtual bool SaveFile(wxBitmap *bitmap, const wxString& name, int type, const wxPalette *palette = NULL);
113
114 void SetName(const wxString& name) { m_name = name; }
115 void SetExtension(const wxString& ext) { m_extension = ext; }
116 void SetType(long type) { m_type = type; }
117 wxString GetName() const { return m_name; }
118 wxString GetExtension() const { return m_extension; }
119 long GetType() const { return m_type; }
120 protected:
121 wxString m_name;
122 wxString m_extension;
123 long m_type;
124 };
125
126 #define M_BITMAPHANDLERDATA ((wxBitmapRefData *)bitmap->GetRefData())
127
128 class WXDLLEXPORT wxBitmap: public wxGDIObject
129 {
130 DECLARE_DYNAMIC_CLASS(wxBitmap)
131
132 friend class WXDLLEXPORT wxBitmapHandler;
133
134 public:
135 wxBitmap(); // Platform-specific
136
137 // Copy constructors
138 wxBitmap(const wxBitmap& bitmap)
139 { Ref(bitmap); }
140
141 // Initialize with raw XBM data
142 wxBitmap(const char bits[], int width, int height, int depth = 1);
143
144 // from XPM
145 wxBitmap(const char **data) { (void)CreateFromXpm(data); }
146 wxBitmap(char **data) { (void)CreateFromXpm((const char **)data); }
147
148 // Initialize with XPM data -- deprecated
149 wxBitmap(char **data, wxControl* control);
150
151 // Load a file or resource
152 wxBitmap(const wxString& name, long type = wxBITMAP_TYPE_XPM);
153
154 // Constructor for generalised creation from data
155 wxBitmap(void *data, long type, int width, int height, int depth = 1);
156
157 // If depth is omitted, will create a bitmap compatible with the display
158 wxBitmap(int width, int height, int depth = -1);
159
160 // Convert from wxImage:
161 wxBitmap(const wxImage& image, int depth = -1) { (void)CreateFromImage(image, depth); }
162
163 ~wxBitmap();
164
165 virtual bool Create(int width, int height, int depth = -1);
166 virtual bool Create(void *data, long type, int width, int height, int depth = 1);
167
168 wxBitmap GetSubBitmap( const wxRect& rect ) const;
169
170 virtual bool LoadFile(const wxString& name, long type = wxBITMAP_TYPE_XPM);
171 virtual bool SaveFile(const wxString& name, int type, const wxPalette *cmap = NULL);
172
173 wxImage ConvertToImage() const;
174
175 bool Ok() const { return (M_BITMAPDATA && M_BITMAPDATA->m_ok); }
176 int GetWidth() const { return (M_BITMAPDATA ? M_BITMAPDATA->m_width : 0); }
177 int GetHeight() const { return (M_BITMAPDATA ? M_BITMAPDATA->m_height : 0); }
178 int GetDepth() const { return (M_BITMAPDATA ? M_BITMAPDATA->m_depth : 0); }
179 int GetQuality() const { return (M_BITMAPDATA ? M_BITMAPDATA->m_quality : 0); }
180 void SetWidth(int w);
181 void SetHeight(int h);
182 void SetDepth(int d);
183 void SetQuality(int q);
184 void SetOk(bool isOk);
185
186 wxPalette* GetPalette() const { return (M_BITMAPDATA ? (& M_BITMAPDATA->m_bitmapPalette) : (wxPalette*) NULL); }
187 void SetPalette(const wxPalette& palette);
188
189 wxMask *GetMask() const { return (M_BITMAPDATA ? M_BITMAPDATA->m_bitmapMask : (wxMask*) NULL); }
190 void SetMask(wxMask *mask) ;
191
192 wxBitmap& operator = (const wxBitmap& bitmap) { if (*this == bitmap) return (*this); Ref(bitmap); return *this; }
193 bool operator == (const wxBitmap& bitmap) const { return m_refData == bitmap.m_refData; }
194 bool operator != (const wxBitmap& bitmap) const { return m_refData != bitmap.m_refData; }
195
196 // Format handling
197 static wxList& GetHandlers() { return sm_handlers; }
198 static void AddHandler(wxBitmapHandler *handler);
199 static void InsertHandler(wxBitmapHandler *handler);
200 static bool RemoveHandler(const wxString& name);
201 static wxBitmapHandler *FindHandler(const wxString& name);
202 static wxBitmapHandler *FindHandler(const wxString& extension, long bitmapType);
203 static wxBitmapHandler *FindHandler(long bitmapType);
204
205 static void InitStandardHandlers();
206 static void CleanUpHandlers();
207
208 // Motif implementation
209 public:
210 WXDisplay* GetDisplay() const { return M_BITMAPDATA->m_display; }
211 WXPixmap GetPixmap() const { return (WXPixmap) M_BITMAPDATA->m_pixmap; }
212 virtual WXPixmap GetLabelPixmap(WXWidget w) ;
213 virtual WXPixmap GetArmPixmap(WXWidget w) ;
214 virtual WXPixmap GetInsensPixmap(WXWidget w = (WXWidget) 0) ;
215 void SetPixmapNull() { M_BITMAPDATA->m_pixmap = 0; }
216
217 protected:
218 static wxList sm_handlers;
219
220 protected:
221 bool CreateFromXpm(const char **bits);
222 bool CreateFromImage(const wxImage& image, int depth);
223 };
224
225 // Creates a bitmap with transparent areas drawn in
226 // the given colour.
227 wxBitmap wxCreateMaskedBitmap(const wxBitmap& bitmap, wxColour& colour);
228
229 #endif
230 // _WX_BITMAP_H_