]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | ///////////////////////////////////////////////////////////////////////////// |
55034339 | 2 | // Name: src/x11/bitmap.cpp |
83df96d6 | 3 | // Purpose: wxBitmap |
a11672a4 | 4 | // Author: Julian Smart, Robert Roebling |
83df96d6 JS |
5 | // Modified by: |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
a11672a4 | 8 | // Copyright: (c) Julian Smart, Robert Roebling |
65571936 | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
55034339 WS |
12 | // for compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
83df96d6 JS |
15 | #include "wx/bitmap.h" |
16 | #include "wx/icon.h" | |
17 | #include "wx/log.h" | |
83df96d6 JS |
18 | #include "wx/image.h" |
19 | #include "wx/app.h" | |
c79a329d JS |
20 | #if wxUSE_NANOX |
21 | #include "wx/dcmemory.h" | |
22 | #endif | |
83df96d6 | 23 | |
bc797f4c | 24 | #include "wx/x11/private.h" |
83df96d6 | 25 | |
c79a329d JS |
26 | /* No point in using libXPM for NanoX */ |
27 | #if wxUSE_NANOX | |
28 | #undef wxHAVE_LIB_XPM | |
29 | #define wxHAVE_LIB_XPM 0 | |
a20c04ab JS |
30 | |
31 | // Copy from the drawable to the wxImage | |
32 | bool wxGetImageFromDrawable(GR_DRAW_ID drawable, int srcX, int srcY, int width, int height, wxImage& image); | |
c79a329d JS |
33 | #endif |
34 | ||
707440dc | 35 | #if wxUSE_XPM |
83df96d6 | 36 | #if wxHAVE_LIB_XPM |
707440dc JS |
37 | #include <X11/xpm.h> |
38 | #else | |
39 | #include "wx/xpmdecod.h" | |
40 | #include "wx/wfstream.h" | |
41 | #endif | |
83df96d6 | 42 | #endif |
463c4d71 | 43 | #include "wx/math.h" |
83df96d6 | 44 | |
a11672a4 RR |
45 | //----------------------------------------------------------------------------- |
46 | // wxMask | |
47 | //----------------------------------------------------------------------------- | |
83df96d6 | 48 | |
a11672a4 | 49 | IMPLEMENT_DYNAMIC_CLASS(wxMask,wxObject) |
83df96d6 | 50 | |
a11672a4 | 51 | wxMask::wxMask() |
83df96d6 | 52 | { |
a11672a4 RR |
53 | m_bitmap = NULL; |
54 | m_display = NULL; | |
83df96d6 JS |
55 | } |
56 | ||
a11672a4 | 57 | wxMask::wxMask( const wxBitmap& bitmap, const wxColour& colour ) |
83df96d6 | 58 | { |
a11672a4 RR |
59 | m_bitmap = NULL; |
60 | Create( bitmap, colour ); | |
83df96d6 JS |
61 | } |
62 | ||
a11672a4 | 63 | wxMask::wxMask( const wxBitmap& bitmap, int paletteIndex ) |
83df96d6 | 64 | { |
a11672a4 RR |
65 | m_bitmap = NULL; |
66 | Create( bitmap, paletteIndex ); | |
83df96d6 JS |
67 | } |
68 | ||
a11672a4 | 69 | wxMask::wxMask( const wxBitmap& bitmap ) |
83df96d6 | 70 | { |
a11672a4 RR |
71 | m_bitmap = NULL; |
72 | Create( bitmap ); | |
83df96d6 JS |
73 | } |
74 | ||
a11672a4 | 75 | wxMask::~wxMask() |
83df96d6 | 76 | { |
a11672a4 RR |
77 | if (m_bitmap) |
78 | XFreePixmap( (Display*) m_display, (Pixmap) m_bitmap ); | |
83df96d6 JS |
79 | } |
80 | ||
a11672a4 RR |
81 | bool wxMask::Create( const wxBitmap& bitmap, |
82 | const wxColour& colour ) | |
83df96d6 | 83 | { |
c79a329d | 84 | #if !wxUSE_NANOX |
a11672a4 RR |
85 | if (m_bitmap) |
86 | { | |
87 | XFreePixmap( (Display*) m_display, (Pixmap) m_bitmap ); | |
88 | m_bitmap = NULL; | |
89 | } | |
83df96d6 | 90 | |
a11672a4 | 91 | m_display = bitmap.GetDisplay(); |
83df96d6 | 92 | |
2b5f62a0 | 93 | wxImage image = bitmap.ConvertToImage(); |
55034339 | 94 | if (!image.Ok()) return false; |
0cad49b4 | 95 | |
a11672a4 | 96 | m_display = bitmap.GetDisplay(); |
0cad49b4 | 97 | |
a11672a4 | 98 | Display *xdisplay = (Display*) m_display; |
a11672a4 RR |
99 | int xscreen = DefaultScreen( xdisplay ); |
100 | Window xroot = RootWindow( xdisplay, xscreen ); | |
0cad49b4 | 101 | |
a11672a4 RR |
102 | m_bitmap = (WXPixmap) XCreatePixmap( xdisplay, xroot, image.GetWidth(), image.GetHeight(), 1 ); |
103 | GC gc = XCreateGC( xdisplay, (Pixmap) m_bitmap, 0, NULL ); | |
83df96d6 | 104 | |
a11672a4 RR |
105 | XSetForeground( xdisplay, gc, WhitePixel(xdisplay,xscreen) ); |
106 | XSetFillStyle( xdisplay, gc, FillSolid ); | |
107 | XFillRectangle( xdisplay, (Pixmap) m_bitmap, gc, 0, 0, image.GetWidth(), image.GetHeight() ); | |
83df96d6 | 108 | |
a11672a4 RR |
109 | unsigned char *data = image.GetData(); |
110 | int index = 0; | |
83df96d6 | 111 | |
a11672a4 RR |
112 | unsigned char red = colour.Red(); |
113 | unsigned char green = colour.Green(); | |
114 | unsigned char blue = colour.Blue(); | |
83df96d6 | 115 | |
9ce8d6a2 | 116 | int bpp = wxTheApp->GetVisualInfo(m_display)->m_visualDepth; |
0cad49b4 | 117 | |
a11672a4 RR |
118 | if (bpp == 15) |
119 | { | |
55034339 WS |
120 | red &= 0xf8; |
121 | green &= 0xf8; | |
122 | blue &= 0xf8; | |
a11672a4 RR |
123 | } else |
124 | if (bpp == 16) | |
125 | { | |
55034339 WS |
126 | red &= 0xf8; |
127 | green &= 0xfc; | |
128 | blue &= 0xf8; | |
a11672a4 RR |
129 | } else |
130 | if (bpp == 12) | |
131 | { | |
55034339 WS |
132 | red &= 0xf0; |
133 | green &= 0xf0; | |
134 | blue &= 0xf0; | |
a11672a4 | 135 | } |
83df96d6 | 136 | |
a11672a4 | 137 | XSetForeground( xdisplay, gc, BlackPixel(xdisplay,xscreen) ); |
83df96d6 | 138 | |
288efe84 JS |
139 | int width = image.GetWidth(); |
140 | int height = image.GetHeight(); | |
141 | for (int j = 0; j < height; j++) | |
a11672a4 RR |
142 | { |
143 | int start_x = -1; | |
144 | int i; | |
288efe84 | 145 | for (i = 0; i < width; i++) |
83df96d6 | 146 | { |
a11672a4 RR |
147 | if ((data[index] == red) && |
148 | (data[index+1] == green) && | |
149 | (data[index+2] == blue)) | |
150 | { | |
151 | if (start_x == -1) | |
152 | start_x = i; | |
153 | } | |
154 | else | |
155 | { | |
156 | if (start_x != -1) | |
157 | { | |
158 | XDrawLine( xdisplay, (Pixmap) m_bitmap, gc, start_x, j, i-1, j ); | |
159 | start_x = -1; | |
160 | } | |
161 | } | |
162 | index += 3; | |
83df96d6 | 163 | } |
a11672a4 RR |
164 | if (start_x != -1) |
165 | XDrawLine( xdisplay, (Pixmap) m_bitmap, gc, start_x, j, i, j ); | |
83df96d6 | 166 | } |
0cad49b4 | 167 | |
a11672a4 | 168 | XFreeGC( xdisplay, gc ); |
83df96d6 | 169 | |
55034339 | 170 | return true; |
c79a329d | 171 | #else |
55034339 | 172 | return false; |
c79a329d JS |
173 | #endif |
174 | // wxUSE_NANOX | |
83df96d6 JS |
175 | } |
176 | ||
a11672a4 | 177 | bool wxMask::Create( const wxBitmap& bitmap, int paletteIndex ) |
83df96d6 | 178 | { |
a11672a4 RR |
179 | unsigned char r,g,b; |
180 | wxPalette *pal = bitmap.GetPalette(); | |
83df96d6 | 181 | |
55034339 | 182 | wxCHECK_MSG( pal, false, wxT("Cannot create mask from bitmap without palette") ); |
83df96d6 | 183 | |
a11672a4 | 184 | pal->GetRGB(paletteIndex, &r, &g, &b); |
83df96d6 | 185 | |
a11672a4 | 186 | return Create(bitmap, wxColour(r, g, b)); |
83df96d6 JS |
187 | } |
188 | ||
a11672a4 | 189 | bool wxMask::Create( const wxBitmap& bitmap ) |
83df96d6 | 190 | { |
c79a329d | 191 | #if !wxUSE_NANOX |
a11672a4 RR |
192 | if (m_bitmap) |
193 | { | |
194 | XFreePixmap( (Display*) m_display, (Pixmap) m_bitmap ); | |
195 | m_bitmap = NULL; | |
83df96d6 JS |
196 | } |
197 | ||
55034339 | 198 | if (!bitmap.Ok()) return false; |
83df96d6 | 199 | |
55034339 | 200 | wxCHECK_MSG( bitmap.GetBitmap(), false, wxT("Cannot create mask from colour bitmap") ); |
0cad49b4 | 201 | |
a11672a4 | 202 | m_display = bitmap.GetDisplay(); |
83df96d6 | 203 | |
a11672a4 RR |
204 | int xscreen = DefaultScreen( (Display*) m_display ); |
205 | Window xroot = RootWindow( (Display*) m_display, xscreen ); | |
0cad49b4 | 206 | |
a11672a4 | 207 | m_bitmap = (WXPixmap) XCreatePixmap( (Display*) m_display, xroot, bitmap.GetWidth(), bitmap.GetHeight(), 1 ); |
83df96d6 | 208 | |
55034339 | 209 | if (!m_bitmap) return false; |
0cad49b4 | 210 | |
a11672a4 | 211 | GC gc = XCreateGC( (Display*) m_display, (Pixmap) m_bitmap, 0, NULL ); |
83df96d6 | 212 | |
a11672a4 RR |
213 | XCopyPlane( (Display*) m_display, (Pixmap) bitmap.GetBitmap(), (Pixmap) m_bitmap, |
214 | gc, 0, 0, bitmap.GetWidth(), bitmap.GetHeight(), 0, 0, 1 ); | |
0cad49b4 | 215 | |
a11672a4 | 216 | XFreeGC( (Display*) m_display, gc ); |
83df96d6 | 217 | |
55034339 | 218 | return true; |
c79a329d | 219 | #else |
55034339 | 220 | return false; |
c79a329d JS |
221 | #endif |
222 | // wxUSE_NANOX | |
83df96d6 JS |
223 | } |
224 | ||
a11672a4 RR |
225 | //----------------------------------------------------------------------------- |
226 | // wxBitmap | |
227 | //----------------------------------------------------------------------------- | |
83df96d6 | 228 | |
a11672a4 | 229 | class wxBitmapRefData: public wxObjectRefData |
83df96d6 | 230 | { |
a11672a4 RR |
231 | public: |
232 | wxBitmapRefData(); | |
233 | ~wxBitmapRefData(); | |
234 | ||
235 | WXPixmap m_pixmap; | |
236 | WXPixmap m_bitmap; | |
237 | WXDisplay *m_display; | |
238 | wxMask *m_mask; | |
239 | int m_width; | |
240 | int m_height; | |
241 | int m_bpp; | |
242 | wxPalette *m_palette; | |
243 | }; | |
83df96d6 | 244 | |
a11672a4 | 245 | wxBitmapRefData::wxBitmapRefData() |
83df96d6 | 246 | { |
a11672a4 RR |
247 | m_pixmap = NULL; |
248 | m_bitmap = NULL; | |
249 | m_display = NULL; | |
250 | m_mask = (wxMask *) NULL; | |
251 | m_width = 0; | |
252 | m_height = 0; | |
253 | m_bpp = 0; | |
254 | m_palette = (wxPalette *) NULL; | |
83df96d6 JS |
255 | } |
256 | ||
a11672a4 | 257 | wxBitmapRefData::~wxBitmapRefData() |
83df96d6 | 258 | { |
a11672a4 RR |
259 | if (m_pixmap) XFreePixmap( (Display*) m_display, (Pixmap) m_pixmap ); |
260 | if (m_bitmap) XFreePixmap( (Display*) m_display, (Pixmap) m_bitmap ); | |
261 | if (m_mask) delete m_mask; | |
262 | if (m_palette) delete m_palette; | |
83df96d6 JS |
263 | } |
264 | ||
a11672a4 | 265 | //----------------------------------------------------------------------------- |
83df96d6 | 266 | |
62ad3cb3 MB |
267 | // helper function |
268 | ||
269 | static WXPixmap wxGetSubPixmap( WXDisplay* xdisplay, WXPixmap xpixmap, | |
270 | int x, int y, int width, int height, | |
271 | int depth ) | |
272 | { | |
4c620d19 | 273 | Display * const dpy = (Display *)xdisplay; |
62ad3cb3 | 274 | |
4c620d19 VZ |
275 | int xscreen = DefaultScreen( dpy ); |
276 | Window xroot = RootWindow( dpy, xscreen ); | |
277 | Visual* xvisual = DefaultVisual( dpy, xscreen ); | |
278 | ||
279 | XImage* ximage = XCreateImage( dpy, xvisual, depth, | |
62ad3cb3 MB |
280 | ZPixmap, 0, 0, width, height, 32, 0 ); |
281 | ximage->data = (char*)malloc( ximage->bytes_per_line * ximage->height ); | |
4c620d19 | 282 | ximage = XGetSubImage( dpy, (Pixmap)xpixmap, |
0cad49b4 | 283 | x, y, width, height, |
62ad3cb3 MB |
284 | AllPlanes, ZPixmap, ximage, 0, 0 ); |
285 | ||
4c620d19 VZ |
286 | GC gc = XCreateGC( dpy, (Pixmap)xpixmap, 0, NULL ); |
287 | Pixmap ret = XCreatePixmap( dpy, xroot, | |
62ad3cb3 MB |
288 | width, height, depth ); |
289 | ||
4c620d19 | 290 | XPutImage( dpy, ret, gc, ximage, |
62ad3cb3 MB |
291 | 0, 0, 0, 0, width, height ); |
292 | XDestroyImage( ximage ); | |
4c620d19 | 293 | XFreeGC( dpy, gc ); |
62ad3cb3 MB |
294 | |
295 | return (WXPixmap)ret; | |
296 | } | |
297 | ||
a11672a4 | 298 | #define M_BMPDATA ((wxBitmapRefData *)m_refData) |
83df96d6 | 299 | |
a11672a4 | 300 | IMPLEMENT_DYNAMIC_CLASS(wxBitmap,wxGDIObject) |
83df96d6 | 301 | |
a11672a4 | 302 | wxBitmap::wxBitmap() |
83df96d6 | 303 | { |
83df96d6 JS |
304 | } |
305 | ||
a11672a4 | 306 | wxBitmap::wxBitmap( int width, int height, int depth ) |
83df96d6 | 307 | { |
a11672a4 | 308 | Create( width, height, depth ); |
83df96d6 JS |
309 | } |
310 | ||
a11672a4 | 311 | bool wxBitmap::Create( int width, int height, int depth ) |
83df96d6 | 312 | { |
a11672a4 RR |
313 | UnRef(); |
314 | ||
55034339 | 315 | wxCHECK_MSG( (width > 0) && (height > 0), false, wxT("invalid bitmap size") ) |
a11672a4 RR |
316 | |
317 | m_refData = new wxBitmapRefData(); | |
0cad49b4 | 318 | |
a11672a4 | 319 | M_BMPDATA->m_display = wxGlobalDisplay(); |
0cad49b4 | 320 | |
a11672a4 | 321 | wxASSERT_MSG( M_BMPDATA->m_display, wxT("No display") ); |
0cad49b4 | 322 | |
a11672a4 RR |
323 | int xscreen = DefaultScreen( (Display*) M_BMPDATA->m_display ); |
324 | Window xroot = RootWindow( (Display*) M_BMPDATA->m_display, xscreen ); | |
0cad49b4 | 325 | |
a11672a4 RR |
326 | int bpp = DefaultDepth( (Display*) M_BMPDATA->m_display, xscreen ); |
327 | if (depth == -1) depth = bpp; | |
328 | ||
329 | wxCHECK_MSG( (depth == bpp) || | |
55034339 | 330 | (depth == 1), false, wxT("invalid bitmap depth") ) |
a11672a4 RR |
331 | |
332 | M_BMPDATA->m_mask = (wxMask *) NULL; | |
333 | M_BMPDATA->m_width = width; | |
334 | M_BMPDATA->m_height = height; | |
c79a329d JS |
335 | |
336 | #if wxUSE_NANOX | |
888d3c80 | 337 | M_BMPDATA->m_pixmap = (WXPixmap) GrNewPixmap(width, height, NULL); |
c79a329d JS |
338 | M_BMPDATA->m_bpp = bpp; |
339 | ||
888d3c80 | 340 | wxASSERT_MSG( M_BMPDATA->m_pixmap, wxT("Bitmap creation failed") ); |
c79a329d | 341 | #else |
a11672a4 | 342 | if (depth == 1) |
83df96d6 | 343 | { |
a11672a4 | 344 | M_BMPDATA->m_bitmap = (WXPixmap) XCreatePixmap( (Display*) M_BMPDATA->m_display, xroot, width, height, 1 ); |
0cad49b4 | 345 | |
a11672a4 | 346 | wxASSERT_MSG( M_BMPDATA->m_bitmap, wxT("Bitmap creation failed") ); |
0cad49b4 | 347 | |
a11672a4 | 348 | M_BMPDATA->m_bpp = 1; |
83df96d6 JS |
349 | } |
350 | else | |
83df96d6 | 351 | { |
a11672a4 | 352 | M_BMPDATA->m_pixmap = (WXPixmap) XCreatePixmap( (Display*) M_BMPDATA->m_display, xroot, width, height, depth ); |
0cad49b4 | 353 | |
a11672a4 | 354 | wxASSERT_MSG( M_BMPDATA->m_pixmap, wxT("Pixmap creation failed") ); |
0cad49b4 | 355 | |
a11672a4 | 356 | M_BMPDATA->m_bpp = depth; |
83df96d6 | 357 | } |
c79a329d | 358 | #endif |
a11672a4 | 359 | return Ok(); |
83df96d6 JS |
360 | } |
361 | ||
62ad3cb3 MB |
362 | bool wxBitmap::Create(void *data, wxBitmapType type, |
363 | int width, int height, int depth) | |
83df96d6 | 364 | { |
a11672a4 RR |
365 | UnRef(); |
366 | ||
62ad3cb3 | 367 | wxBitmapHandler *handler = FindHandler(type); |
a11672a4 | 368 | |
62ad3cb3 | 369 | if ( handler == NULL ) { |
54385bdb | 370 | wxLogWarning(wxT("no data bitmap handler for type %ld defined."), |
62ad3cb3 | 371 | (long)type); |
83df96d6 | 372 | |
55034339 | 373 | return false; |
62ad3cb3 | 374 | } |
83df96d6 | 375 | |
62ad3cb3 MB |
376 | return handler->Create(this, data, type, width, height, depth); |
377 | } | |
83df96d6 | 378 | |
dd38c875 MB |
379 | bool wxBitmap::Create(WXPixmap pixmap) |
380 | { | |
381 | UnRef(); | |
382 | Pixmap xpixmap = (Pixmap)pixmap; | |
383 | Display* xdisplay = wxGlobalDisplay(); | |
384 | int xscreen = DefaultScreen( xdisplay ); | |
385 | Window xroot = RootWindow( xdisplay, xscreen ); | |
386 | ||
387 | // make a copy of the Pixmap | |
388 | Window root; | |
389 | Pixmap copy; | |
390 | int x, y; | |
391 | unsigned width, height, border, depth; | |
392 | ||
393 | XGetGeometry( xdisplay, (Drawable)xpixmap, &root, &x, &y, | |
394 | &width, &height, &border, &depth ); | |
395 | copy = XCreatePixmap( xdisplay, xroot, width, height, depth ); | |
396 | ||
397 | GC gc = XCreateGC( xdisplay, copy, 0, NULL ); | |
398 | XCopyArea( xdisplay, xpixmap, copy, gc, 0, 0, width, height, 0, 0 ); | |
399 | XFreeGC( xdisplay, gc ); | |
400 | ||
401 | // fill in ref data | |
402 | wxBitmapRefData* ref = new wxBitmapRefData(); | |
403 | ||
404 | if( depth == 1 ) | |
405 | ref->m_bitmap = (WXPixmap)copy; | |
406 | else | |
407 | ref->m_pixmap = (WXPixmap)copy; | |
408 | ||
409 | ref->m_display = (WXDisplay*)xdisplay; | |
410 | ref->m_width = width; | |
411 | ref->m_height = height; | |
412 | ref->m_bpp = depth; | |
413 | ||
414 | m_refData = ref; | |
415 | ||
416 | return true; | |
417 | } | |
418 | ||
62ad3cb3 MB |
419 | bool wxBitmap::CreateFromXpm( const char **bits ) |
420 | { | |
55034339 | 421 | wxCHECK_MSG( bits, false, wxT("NULL pointer in wxBitmap::CreateFromXpm") ); |
a11672a4 | 422 | |
62ad3cb3 | 423 | return Create(bits, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0); |
83df96d6 JS |
424 | } |
425 | ||
a11672a4 | 426 | bool wxBitmap::CreateFromImage( const wxImage& image, int depth ) |
83df96d6 | 427 | { |
c79a329d JS |
428 | #if wxUSE_NANOX |
429 | if (!image.Ok()) | |
430 | { | |
54385bdb | 431 | wxASSERT_MSG(image.Ok(), wxT("Invalid wxImage passed to wxBitmap::CreateFromImage.")); |
55034339 | 432 | return false; |
c79a329d | 433 | } |
0cad49b4 | 434 | |
c79a329d JS |
435 | int w = image.GetWidth(); |
436 | int h = image.GetHeight(); | |
0cad49b4 | 437 | |
c79a329d | 438 | if (!Create(w, h, depth)) |
55034339 | 439 | return false; |
c79a329d | 440 | |
888d3c80 JS |
441 | // Unfortunately the mask has to be screen-depth since |
442 | // 1-bpp bitmaps don't seem to be supported | |
443 | // TODO: implement transparent drawing, presumably | |
444 | // by doing several blits as per the Windows | |
445 | // implementation because Nano-X doesn't support | |
446 | // XSetClipMask. | |
f22033e5 JS |
447 | // TODO: could perhaps speed this function up |
448 | // by making a buffer of pixel values, | |
449 | // and then calling GrArea to write that to the | |
450 | // pixmap. See demos/nxroach.c. | |
c79a329d | 451 | |
888d3c80 | 452 | bool hasMask = image.HasMask(); |
0cad49b4 | 453 | |
888d3c80 JS |
454 | GC pixmapGC = GrNewGC(); |
455 | Pixmap pixmap = (Pixmap) GetPixmap(); | |
456 | ||
457 | GC maskGC = 0; | |
458 | Pixmap maskPixmap = 0; | |
459 | ||
460 | unsigned char maskR = 0; | |
461 | unsigned char maskG = 0; | |
462 | unsigned char maskB = 0; | |
463 | ||
464 | if (hasMask) | |
465 | { | |
466 | maskR = image.GetMaskRed(); | |
467 | maskG = image.GetMaskGreen(); | |
468 | maskB = image.GetMaskBlue(); | |
0cad49b4 | 469 | |
888d3c80 JS |
470 | maskGC = GrNewGC(); |
471 | maskPixmap = GrNewPixmap(w, h, 0); | |
472 | if (!maskPixmap) | |
55034339 | 473 | hasMask = false; |
888d3c80 JS |
474 | else |
475 | { | |
476 | wxMask* mask = new wxMask; | |
477 | mask->SetBitmap((WXPixmap) maskPixmap); | |
478 | SetMask(mask); | |
479 | } | |
480 | } | |
481 | ||
482 | GR_COLOR lastPixmapColour = 0; | |
483 | GR_COLOR lastMaskColour = 0; | |
0cad49b4 | 484 | |
c79a329d JS |
485 | int i, j; |
486 | for (i = 0; i < w; i++) | |
487 | { | |
488 | for (j = 0; j < h; j++) | |
489 | { | |
490 | unsigned char red = image.GetRed(i, j); | |
491 | unsigned char green = image.GetGreen(i, j); | |
492 | unsigned char blue = image.GetBlue(i, j); | |
c79a329d | 493 | |
888d3c80 JS |
494 | GR_COLOR colour = GR_RGB(red, green, blue); |
495 | ||
496 | // Efficiency measure | |
497 | if (colour != lastPixmapColour || (i == 0 && j == 0)) | |
498 | { | |
499 | GrSetGCForeground(pixmapGC, colour); | |
500 | lastPixmapColour = colour; | |
501 | } | |
0cad49b4 | 502 | |
888d3c80 | 503 | GrPoint(pixmap, pixmapGC, i, j); |
0cad49b4 | 504 | |
c79a329d JS |
505 | if (hasMask) |
506 | { | |
507 | // scan the bitmap for the transparent colour and set the corresponding | |
508 | // pixels in the mask to BLACK and the rest to WHITE | |
509 | if (maskR == red && maskG == green && maskB == blue) | |
888d3c80 JS |
510 | { |
511 | colour = GR_RGB(0, 0, 0); | |
512 | } | |
c79a329d | 513 | else |
888d3c80 JS |
514 | { |
515 | colour = GR_RGB(255, 255, 255); | |
516 | } | |
517 | if (colour != lastMaskColour || (i == 0 && j == 0)) | |
518 | { | |
519 | GrSetGCForeground(maskGC, colour); | |
520 | lastMaskColour = colour; | |
521 | } | |
522 | GrPoint(maskPixmap, maskGC, i, j); | |
c79a329d | 523 | } |
c79a329d JS |
524 | } |
525 | } | |
888d3c80 JS |
526 | |
527 | GrDestroyGC(pixmapGC); | |
528 | if (hasMask) | |
529 | GrDestroyGC(maskGC); | |
0cad49b4 | 530 | |
55034339 | 531 | return true; |
c79a329d JS |
532 | #else |
533 | // !wxUSE_NANOX | |
0cad49b4 | 534 | |
a11672a4 | 535 | UnRef(); |
83df96d6 | 536 | |
55034339 WS |
537 | wxCHECK_MSG( image.Ok(), false, wxT("invalid image") ) |
538 | wxCHECK_MSG( depth == -1, false, wxT("invalid bitmap depth") ) | |
83df96d6 | 539 | |
a11672a4 | 540 | m_refData = new wxBitmapRefData(); |
83df96d6 | 541 | |
a11672a4 | 542 | M_BMPDATA->m_display = wxGlobalDisplay(); |
0cad49b4 | 543 | |
a11672a4 | 544 | Display *xdisplay = (Display*) M_BMPDATA->m_display; |
0cad49b4 | 545 | |
a11672a4 RR |
546 | int xscreen = DefaultScreen( xdisplay ); |
547 | Window xroot = RootWindow( xdisplay, xscreen ); | |
548 | Visual* xvisual = DefaultVisual( xdisplay, xscreen ); | |
0cad49b4 | 549 | |
9ce8d6a2 | 550 | int bpp = wxTheApp->GetVisualInfo(M_BMPDATA->m_display)->m_visualDepth; |
0cad49b4 | 551 | |
a11672a4 RR |
552 | int width = image.GetWidth(); |
553 | int height = image.GetHeight(); | |
554 | M_BMPDATA->m_width = width; | |
555 | M_BMPDATA->m_height = height; | |
83df96d6 | 556 | |
a11672a4 RR |
557 | if (depth != 1) depth = bpp; |
558 | M_BMPDATA->m_bpp = depth; | |
0cad49b4 | 559 | |
a11672a4 RR |
560 | if (depth == 1) |
561 | { | |
54385bdb | 562 | wxFAIL_MSG( wxT("mono images later") ); |
a11672a4 RR |
563 | } |
564 | else | |
565 | { | |
566 | // Create image | |
0cad49b4 | 567 | |
a11672a4 RR |
568 | XImage *data_image = XCreateImage( xdisplay, xvisual, bpp, ZPixmap, 0, 0, width, height, 32, 0 ); |
569 | data_image->data = (char*) malloc( data_image->bytes_per_line * data_image->height ); | |
0cad49b4 | 570 | |
a11672a4 RR |
571 | if (data_image->data == NULL) |
572 | { | |
573 | wxLogError( wxT("Out of memory.") ); // TODO clean | |
55034339 | 574 | return false; |
a11672a4 | 575 | } |
83df96d6 | 576 | |
a11672a4 | 577 | M_BMPDATA->m_pixmap = (WXPixmap) XCreatePixmap( xdisplay, xroot, width, height, depth ); |
83df96d6 | 578 | |
a11672a4 | 579 | // Create mask |
83df96d6 | 580 | |
a11672a4 RR |
581 | XImage *mask_image = (XImage*) NULL; |
582 | if (image.HasMask()) | |
0cad49b4 | 583 | { |
a11672a4 RR |
584 | mask_image = XCreateImage( xdisplay, xvisual, 1, ZPixmap, 0, 0, width, height, 32, 0 ); |
585 | mask_image->data = (char*) malloc( mask_image->bytes_per_line * mask_image->height ); | |
0cad49b4 | 586 | |
a11672a4 RR |
587 | if (mask_image->data == NULL) |
588 | { | |
589 | wxLogError( wxT("Out of memory.") ); // TODO clean | |
55034339 | 590 | return false; |
a11672a4 | 591 | } |
0cad49b4 | 592 | |
a11672a4 RR |
593 | wxMask *mask = new wxMask(); |
594 | mask->SetDisplay( xdisplay ); | |
595 | mask->SetBitmap( (WXPixmap) XCreatePixmap( xdisplay, xroot, width, height, 1 ) ); | |
83df96d6 | 596 | |
a11672a4 RR |
597 | SetMask( mask ); |
598 | } | |
83df96d6 | 599 | |
a11672a4 | 600 | if (bpp < 8) bpp = 8; |
83df96d6 | 601 | |
a11672a4 | 602 | // Render |
83df96d6 | 603 | |
a11672a4 RR |
604 | enum byte_order { RGB, RBG, BRG, BGR, GRB, GBR }; |
605 | byte_order b_o = RGB; | |
83df96d6 | 606 | |
9ce8d6a2 MB |
607 | wxXVisualInfo* vi = wxTheApp->GetVisualInfo(M_BMPDATA->m_display); |
608 | unsigned long greenMask = vi->m_visualGreenMask, | |
609 | redMask = vi->m_visualRedMask, | |
610 | blueMask = vi->m_visualBlueMask; | |
611 | ||
a11672a4 RR |
612 | if (bpp > 8) |
613 | { | |
9ce8d6a2 MB |
614 | if ((redMask > greenMask) && (greenMask > blueMask)) b_o = RGB; |
615 | else if ((redMask > blueMask) && (blueMask > greenMask)) b_o = RBG; | |
616 | else if ((blueMask > redMask) && (redMask > greenMask)) b_o = BRG; | |
617 | else if ((blueMask > greenMask) && (greenMask > redMask))b_o = BGR; | |
618 | else if ((greenMask > redMask) && (redMask > blueMask)) b_o = GRB; | |
619 | else if ((greenMask > blueMask) && (blueMask > redMask)) b_o = GBR; | |
a11672a4 | 620 | } |
83df96d6 | 621 | |
a11672a4 RR |
622 | int r_mask = image.GetMaskRed(); |
623 | int g_mask = image.GetMaskGreen(); | |
624 | int b_mask = image.GetMaskBlue(); | |
83df96d6 | 625 | |
a11672a4 | 626 | unsigned char* data = image.GetData(); |
54385bdb | 627 | wxASSERT_MSG( data, wxT("No image data") ); |
0cad49b4 | 628 | |
9ce8d6a2 MB |
629 | unsigned char *colorCube = |
630 | wxTheApp->GetVisualInfo(M_BMPDATA->m_display)->m_colorCube; | |
83df96d6 | 631 | |
a11672a4 | 632 | bool hasMask = image.HasMask(); |
83df96d6 | 633 | |
a11672a4 RR |
634 | int index = 0; |
635 | for (int y = 0; y < height; y++) | |
636 | { | |
637 | for (int x = 0; x < width; x++) | |
638 | { | |
639 | int r = data[index]; | |
640 | index++; | |
641 | int g = data[index]; | |
642 | index++; | |
643 | int b = data[index]; | |
644 | index++; | |
645 | ||
646 | if (hasMask) | |
647 | { | |
648 | if ((r == r_mask) && (b == b_mask) && (g == g_mask)) | |
649 | XPutPixel( mask_image, x, y, 0 ); | |
650 | else | |
651 | XPutPixel( mask_image, x, y, 1 ); | |
652 | } | |
83df96d6 | 653 | |
a11672a4 RR |
654 | switch (bpp) |
655 | { | |
656 | case 8: | |
657 | { | |
658 | int pixel = 0; | |
dc4025af | 659 | pixel = colorCube[ ((r & 0xf8) << 7) + ((g & 0xf8) << 2) + ((b & 0xf8) >> 3) ]; |
a11672a4 RR |
660 | XPutPixel( data_image, x, y, pixel ); |
661 | break; | |
662 | } | |
663 | case 12: // SGI only | |
664 | { | |
665 | int pixel = 0; | |
666 | switch (b_o) | |
667 | { | |
668 | case RGB: pixel = ((r & 0xf0) << 4) | (g & 0xf0) | ((b & 0xf0) >> 4); break; | |
669 | case RBG: pixel = ((r & 0xf0) << 4) | (b & 0xf0) | ((g & 0xf0) >> 4); break; | |
670 | case GRB: pixel = ((g & 0xf0) << 4) | (r & 0xf0) | ((b & 0xf0) >> 4); break; | |
671 | case GBR: pixel = ((g & 0xf0) << 4) | (b & 0xf0) | ((r & 0xf0) >> 4); break; | |
672 | case BRG: pixel = ((b & 0xf0) << 4) | (r & 0xf0) | ((g & 0xf0) >> 4); break; | |
673 | case BGR: pixel = ((b & 0xf0) << 4) | (g & 0xf0) | ((r & 0xf0) >> 4); break; | |
674 | } | |
675 | XPutPixel( data_image, x, y, pixel ); | |
676 | break; | |
677 | } | |
678 | case 15: | |
679 | { | |
680 | int pixel = 0; | |
681 | switch (b_o) | |
682 | { | |
683 | case RGB: pixel = ((r & 0xf8) << 7) | ((g & 0xf8) << 2) | ((b & 0xf8) >> 3); break; | |
684 | case RBG: pixel = ((r & 0xf8) << 7) | ((b & 0xf8) << 2) | ((g & 0xf8) >> 3); break; | |
685 | case GRB: pixel = ((g & 0xf8) << 7) | ((r & 0xf8) << 2) | ((b & 0xf8) >> 3); break; | |
686 | case GBR: pixel = ((g & 0xf8) << 7) | ((b & 0xf8) << 2) | ((r & 0xf8) >> 3); break; | |
687 | case BRG: pixel = ((b & 0xf8) << 7) | ((r & 0xf8) << 2) | ((g & 0xf8) >> 3); break; | |
688 | case BGR: pixel = ((b & 0xf8) << 7) | ((g & 0xf8) << 2) | ((r & 0xf8) >> 3); break; | |
689 | } | |
690 | XPutPixel( data_image, x, y, pixel ); | |
691 | break; | |
692 | } | |
693 | case 16: | |
694 | { | |
695 | // I actually don't know if for 16-bit displays, it is alway the green | |
696 | // component or the second component which has 6 bits. | |
697 | int pixel = 0; | |
698 | switch (b_o) | |
699 | { | |
700 | case RGB: pixel = ((r & 0xf8) << 8) | ((g & 0xfc) << 3) | ((b & 0xf8) >> 3); break; | |
701 | case RBG: pixel = ((r & 0xf8) << 8) | ((b & 0xfc) << 3) | ((g & 0xf8) >> 3); break; | |
702 | case GRB: pixel = ((g & 0xf8) << 8) | ((r & 0xfc) << 3) | ((b & 0xf8) >> 3); break; | |
703 | case GBR: pixel = ((g & 0xf8) << 8) | ((b & 0xfc) << 3) | ((r & 0xf8) >> 3); break; | |
704 | case BRG: pixel = ((b & 0xf8) << 8) | ((r & 0xfc) << 3) | ((g & 0xf8) >> 3); break; | |
705 | case BGR: pixel = ((b & 0xf8) << 8) | ((g & 0xfc) << 3) | ((r & 0xf8) >> 3); break; | |
706 | } | |
707 | XPutPixel( data_image, x, y, pixel ); | |
708 | break; | |
709 | } | |
710 | case 32: | |
711 | case 24: | |
712 | { | |
713 | int pixel = 0; | |
714 | switch (b_o) | |
715 | { | |
716 | case RGB: pixel = (r << 16) | (g << 8) | b; break; | |
717 | case RBG: pixel = (r << 16) | (b << 8) | g; break; | |
718 | case BRG: pixel = (b << 16) | (r << 8) | g; break; | |
719 | case BGR: pixel = (b << 16) | (g << 8) | r; break; | |
720 | case GRB: pixel = (g << 16) | (r << 8) | b; break; | |
721 | case GBR: pixel = (g << 16) | (b << 8) | r; break; | |
722 | } | |
723 | XPutPixel( data_image, x, y, pixel ); | |
724 | } | |
725 | default: break; | |
726 | } | |
727 | } // for | |
728 | } // for | |
83df96d6 | 729 | |
a11672a4 | 730 | // Blit picture |
83df96d6 | 731 | |
a11672a4 RR |
732 | GC gc = XCreateGC( xdisplay, (Pixmap) M_BMPDATA->m_pixmap, 0, NULL ); |
733 | XPutImage( xdisplay, (Pixmap) M_BMPDATA->m_pixmap, gc, data_image, 0, 0, 0, 0, width, height ); | |
a11672a4 RR |
734 | XDestroyImage( data_image ); |
735 | XFreeGC( xdisplay, gc ); | |
83df96d6 | 736 | |
a11672a4 | 737 | // Blit mask |
0cad49b4 | 738 | |
a11672a4 RR |
739 | if (image.HasMask()) |
740 | { | |
741 | GC gc = XCreateGC( xdisplay, (Pixmap) GetMask()->GetBitmap(), 0, NULL ); | |
011c1748 | 742 | XPutImage( xdisplay, (Pixmap) GetMask()->GetBitmap(), gc, mask_image, 0, 0, 0, 0, width, height ); |
a11672a4 RR |
743 | |
744 | XDestroyImage( mask_image ); | |
745 | XFreeGC( xdisplay, gc ); | |
746 | } | |
747 | } | |
83df96d6 | 748 | |
55034339 | 749 | return true; |
c79a329d JS |
750 | #endif |
751 | // wxUSE_NANOX | |
83df96d6 JS |
752 | } |
753 | ||
a11672a4 | 754 | wxImage wxBitmap::ConvertToImage() const |
83df96d6 | 755 | { |
a11672a4 | 756 | wxImage image; |
83df96d6 | 757 | |
a11672a4 | 758 | wxCHECK_MSG( Ok(), wxNullImage, wxT("invalid bitmap") ); |
83df96d6 | 759 | |
a11672a4 RR |
760 | Display *xdisplay = (Display*) M_BMPDATA->m_display; |
761 | wxASSERT_MSG( xdisplay, wxT("No display") ); | |
c79a329d JS |
762 | |
763 | #if wxUSE_NANOX | |
8601b2e1 | 764 | //int bpp = DefaultDepth(xdisplay, xscreen); |
f22033e5 | 765 | wxGetImageFromDrawable((Pixmap) GetPixmap(), 0, 0, GetWidth(), GetHeight(), image); |
c79a329d | 766 | return image; |
c79a329d JS |
767 | #else |
768 | // !wxUSE_NANOX | |
9ce8d6a2 | 769 | int bpp = wxTheApp->GetVisualInfo(M_BMPDATA->m_display)->m_visualDepth; |
a11672a4 RR |
770 | XImage *x_image = NULL; |
771 | if (GetPixmap()) | |
772 | { | |
773 | x_image = XGetImage( xdisplay, (Pixmap) GetPixmap(), | |
774 | 0, 0, | |
775 | GetWidth(), GetHeight(), | |
776 | AllPlanes, ZPixmap ); | |
777 | } else | |
778 | if (GetBitmap()) | |
779 | { | |
780 | x_image = XGetImage( xdisplay, (Pixmap) GetBitmap(), | |
781 | 0, 0, | |
782 | GetWidth(), GetHeight(), | |
783 | AllPlanes, ZPixmap ); | |
784 | } else | |
785 | { | |
786 | wxFAIL_MSG( wxT("Ill-formed bitmap") ); | |
787 | } | |
83df96d6 | 788 | |
a11672a4 | 789 | wxCHECK_MSG( x_image, wxNullImage, wxT("couldn't create image") ); |
83df96d6 | 790 | |
a11672a4 RR |
791 | image.Create( GetWidth(), GetHeight() ); |
792 | char unsigned *data = image.GetData(); | |
83df96d6 | 793 | |
a11672a4 RR |
794 | if (!data) |
795 | { | |
796 | XDestroyImage( x_image ); | |
797 | wxFAIL_MSG( wxT("couldn't create image") ); | |
798 | return wxNullImage; | |
799 | } | |
83df96d6 | 800 | |
a11672a4 RR |
801 | XImage *x_image_mask = NULL; |
802 | if (GetMask()) | |
803 | { | |
804 | x_image_mask = XGetImage( xdisplay, (Pixmap) GetMask()->GetBitmap(), | |
805 | 0, 0, | |
0cad49b4 | 806 | GetWidth(), GetHeight(), |
a11672a4 | 807 | AllPlanes, ZPixmap ); |
83df96d6 | 808 | |
a11672a4 RR |
809 | image.SetMaskColour( 16, 16, 16 ); // anything unlikely and dividable |
810 | } | |
83df96d6 | 811 | |
a11672a4 RR |
812 | int red_shift_right = 0; |
813 | int green_shift_right = 0; | |
814 | int blue_shift_right = 0; | |
815 | int red_shift_left = 0; | |
816 | int green_shift_left = 0; | |
817 | int blue_shift_left = 0; | |
55034339 | 818 | bool use_shift = false; |
83df96d6 | 819 | |
a11672a4 RR |
820 | if (GetPixmap()) |
821 | { | |
9ce8d6a2 MB |
822 | wxXVisualInfo* vi = wxTheApp->GetVisualInfo(M_BMPDATA->m_display); |
823 | ||
824 | red_shift_right = vi->m_visualRedShift; | |
825 | red_shift_left = 8 - vi->m_visualRedPrec; | |
826 | green_shift_right = vi->m_visualGreenShift; | |
827 | green_shift_left = 8 - vi->m_visualGreenPrec; | |
828 | blue_shift_right = vi->m_visualBlueShift; | |
829 | blue_shift_left = 8 - vi->m_visualBluePrec; | |
0cad49b4 | 830 | |
9ce8d6a2 MB |
831 | use_shift = (vi->m_visualType == GrayScale) || |
832 | (vi->m_visualType != PseudoColor); | |
a11672a4 | 833 | } |
0cad49b4 | 834 | |
a11672a4 RR |
835 | if (GetBitmap()) |
836 | { | |
837 | bpp = 1; | |
838 | } | |
83df96d6 | 839 | |
9ce8d6a2 MB |
840 | XColor *colors = (XColor*)wxTheApp-> |
841 | GetVisualInfo(M_BMPDATA->m_display)->m_visualColormap; | |
83df96d6 | 842 | |
288efe84 JS |
843 | int width = GetWidth(); |
844 | int height = GetHeight(); | |
a11672a4 | 845 | long pos = 0; |
288efe84 | 846 | for (int j = 0; j < height; j++) |
a11672a4 | 847 | { |
288efe84 | 848 | for (int i = 0; i < width; i++) |
a11672a4 RR |
849 | { |
850 | unsigned long pixel = XGetPixel( x_image, i, j ); | |
851 | if (bpp == 1) | |
852 | { | |
853 | if (pixel == 0) | |
854 | { | |
855 | data[pos] = 0; | |
856 | data[pos+1] = 0; | |
857 | data[pos+2] = 0; | |
858 | } | |
859 | else | |
860 | { | |
861 | data[pos] = 255; | |
862 | data[pos+1] = 255; | |
863 | data[pos+2] = 255; | |
864 | } | |
865 | } | |
866 | else if (use_shift) | |
867 | { | |
55034339 WS |
868 | data[pos] = (unsigned char)((pixel >> red_shift_right) << red_shift_left); |
869 | data[pos+1] = (unsigned char)((pixel >> green_shift_right) << green_shift_left); | |
870 | data[pos+2] = (unsigned char)((pixel >> blue_shift_right) << blue_shift_left); | |
a11672a4 | 871 | } |
dc4025af | 872 | else if (colors) |
a11672a4 | 873 | { |
55034339 WS |
874 | data[pos] = (unsigned char)(colors[pixel].red >> 8); |
875 | data[pos+1] = (unsigned char)(colors[pixel].green >> 8); | |
876 | data[pos+2] = (unsigned char)(colors[pixel].blue >> 8); | |
a11672a4 | 877 | } |
a11672a4 RR |
878 | else |
879 | { | |
880 | wxFAIL_MSG( wxT("Image conversion failed. Unknown visual type.") ); | |
881 | } | |
83df96d6 | 882 | |
a11672a4 RR |
883 | if (x_image_mask) |
884 | { | |
885 | int mask_pixel = XGetPixel( x_image_mask, i, j ); | |
886 | if (mask_pixel == 0) | |
887 | { | |
888 | data[pos] = 16; | |
889 | data[pos+1] = 16; | |
890 | data[pos+2] = 16; | |
891 | } | |
892 | } | |
83df96d6 | 893 | |
a11672a4 RR |
894 | pos += 3; |
895 | } | |
896 | } | |
83df96d6 | 897 | |
a11672a4 RR |
898 | XDestroyImage( x_image ); |
899 | if (x_image_mask) XDestroyImage( x_image_mask ); | |
a11672a4 | 900 | return image; |
c79a329d JS |
901 | #endif |
902 | // wxUSE_NANOX | |
83df96d6 JS |
903 | } |
904 | ||
a11672a4 | 905 | wxBitmap::wxBitmap( const wxBitmap& bmp ) |
83df96d6 | 906 | { |
a11672a4 | 907 | Ref( bmp ); |
83df96d6 JS |
908 | } |
909 | ||
62ad3cb3 | 910 | wxBitmap::wxBitmap( const wxString &filename, wxBitmapType type ) |
83df96d6 | 911 | { |
a11672a4 | 912 | LoadFile( filename, type ); |
83df96d6 JS |
913 | } |
914 | ||
62ad3cb3 | 915 | wxBitmap::wxBitmap( const char bits[], int width, int height, int depth ) |
83df96d6 | 916 | { |
62ad3cb3 | 917 | m_refData = new wxBitmapRefData; |
83df96d6 | 918 | |
62ad3cb3 | 919 | (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, depth); |
83df96d6 JS |
920 | } |
921 | ||
a11672a4 | 922 | wxBitmap::~wxBitmap() |
83df96d6 | 923 | { |
83df96d6 JS |
924 | } |
925 | ||
a11672a4 | 926 | wxBitmap& wxBitmap::operator = ( const wxBitmap& bmp ) |
83df96d6 | 927 | { |
a11672a4 RR |
928 | if ( m_refData != bmp.m_refData ) |
929 | Ref( bmp ); | |
83df96d6 | 930 | |
a11672a4 RR |
931 | return *this; |
932 | } | |
83df96d6 | 933 | |
a11672a4 RR |
934 | bool wxBitmap::operator == ( const wxBitmap& bmp ) const |
935 | { | |
936 | return m_refData == bmp.m_refData; | |
937 | } | |
83df96d6 | 938 | |
a11672a4 RR |
939 | bool wxBitmap::operator != ( const wxBitmap& bmp ) const |
940 | { | |
941 | return m_refData != bmp.m_refData; | |
942 | } | |
83df96d6 | 943 | |
a11672a4 RR |
944 | bool wxBitmap::Ok() const |
945 | { | |
946 | return (m_refData != NULL); | |
947 | } | |
83df96d6 | 948 | |
a11672a4 RR |
949 | int wxBitmap::GetHeight() const |
950 | { | |
951 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); | |
83df96d6 | 952 | |
a11672a4 RR |
953 | return M_BMPDATA->m_height; |
954 | } | |
83df96d6 | 955 | |
a11672a4 RR |
956 | int wxBitmap::GetWidth() const |
957 | { | |
958 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); | |
83df96d6 | 959 | |
a11672a4 RR |
960 | return M_BMPDATA->m_width; |
961 | } | |
83df96d6 | 962 | |
a11672a4 RR |
963 | int wxBitmap::GetDepth() const |
964 | { | |
965 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); | |
83df96d6 | 966 | |
a11672a4 RR |
967 | return M_BMPDATA->m_bpp; |
968 | } | |
83df96d6 | 969 | |
a11672a4 RR |
970 | wxMask *wxBitmap::GetMask() const |
971 | { | |
972 | wxCHECK_MSG( Ok(), (wxMask *) NULL, wxT("invalid bitmap") ); | |
83df96d6 | 973 | |
a11672a4 RR |
974 | return M_BMPDATA->m_mask; |
975 | } | |
83df96d6 | 976 | |
a11672a4 RR |
977 | void wxBitmap::SetMask( wxMask *mask ) |
978 | { | |
979 | wxCHECK_RET( Ok(), wxT("invalid bitmap") ); | |
83df96d6 | 980 | |
a11672a4 | 981 | if (M_BMPDATA->m_mask) delete M_BMPDATA->m_mask; |
83df96d6 | 982 | |
a11672a4 RR |
983 | M_BMPDATA->m_mask = mask; |
984 | } | |
83df96d6 | 985 | |
a11672a4 RR |
986 | bool wxBitmap::CopyFromIcon(const wxIcon& icon) |
987 | { | |
988 | *this = icon; | |
55034339 | 989 | return true; |
a11672a4 | 990 | } |
83df96d6 | 991 | |
a11672a4 RR |
992 | wxBitmap wxBitmap::GetSubBitmap( const wxRect& rect) const |
993 | { | |
994 | wxCHECK_MSG( Ok() && | |
995 | (rect.x >= 0) && (rect.y >= 0) && | |
62ad3cb3 MB |
996 | (rect.x+rect.width <= M_BMPDATA->m_width ) && |
997 | (rect.y+rect.height <= M_BMPDATA->m_height), | |
a11672a4 | 998 | wxNullBitmap, wxT("invalid bitmap or bitmap region") ); |
83df96d6 | 999 | |
a11672a4 RR |
1000 | wxBitmap ret( rect.width, rect.height, M_BMPDATA->m_bpp ); |
1001 | wxASSERT_MSG( ret.Ok(), wxT("GetSubBitmap error") ); | |
83df96d6 | 1002 | |
62ad3cb3 | 1003 | if( GetMask() ) |
83df96d6 | 1004 | { |
62ad3cb3 MB |
1005 | wxMask* mask = new wxMask(); |
1006 | mask->SetDisplay( GetMask()->GetDisplay() ); | |
1007 | mask->SetBitmap( wxGetSubPixmap( GetMask()->GetDisplay(), | |
1008 | GetMask()->GetBitmap(), | |
1009 | rect.x, rect.y, | |
1010 | rect.width, rect.height, | |
1011 | 1 ) ); | |
1012 | ||
1013 | ret.SetMask( mask ); | |
a11672a4 | 1014 | } |
62ad3cb3 MB |
1015 | |
1016 | if( GetPixmap() ) | |
a11672a4 | 1017 | { |
62ad3cb3 MB |
1018 | ret.SetPixmap( wxGetSubPixmap( GetDisplay(), |
1019 | GetPixmap(), | |
1020 | rect.x, rect.y, | |
1021 | rect.width, rect.height, | |
1022 | M_BMPDATA->m_bpp ) ); | |
83df96d6 JS |
1023 | } |
1024 | ||
62ad3cb3 | 1025 | if( GetBitmap() ) |
83df96d6 | 1026 | { |
62ad3cb3 MB |
1027 | ret.SetBitmap( wxGetSubPixmap( GetDisplay(), |
1028 | GetBitmap(), | |
1029 | rect.x, rect.y, | |
1030 | rect.width, rect.height, | |
1031 | 1 ) ); | |
83df96d6 JS |
1032 | } |
1033 | ||
a11672a4 RR |
1034 | return ret; |
1035 | } | |
83df96d6 | 1036 | |
62ad3cb3 MB |
1037 | bool wxBitmap::SaveFile( const wxString &name, wxBitmapType type, |
1038 | const wxPalette *palette ) const | |
a11672a4 | 1039 | { |
55034339 | 1040 | wxCHECK_MSG( Ok(), false, wxT("invalid bitmap") ); |
83df96d6 | 1041 | |
62ad3cb3 MB |
1042 | wxBitmapHandler *handler = FindHandler(type); |
1043 | ||
a11672a4 | 1044 | // Try to save the bitmap via wxImage handlers: |
62ad3cb3 | 1045 | if (handler == NULL) |
0cad49b4 | 1046 | { |
62ad3cb3 | 1047 | wxImage image(this->ConvertToImage()); |
a11672a4 | 1048 | if (image.Ok()) return image.SaveFile( name, type ); |
62ad3cb3 | 1049 | |
55034339 | 1050 | return false; |
a11672a4 | 1051 | } |
83df96d6 | 1052 | |
62ad3cb3 | 1053 | return handler->SaveFile(this, name, type, palette); |
a11672a4 | 1054 | } |
83df96d6 | 1055 | |
62ad3cb3 | 1056 | bool wxBitmap::LoadFile( const wxString &name, wxBitmapType type ) |
a11672a4 RR |
1057 | { |
1058 | UnRef(); | |
83df96d6 | 1059 | |
55034339 | 1060 | if (!wxFileExists(name)) return false; |
83df96d6 | 1061 | |
62ad3cb3 | 1062 | wxBitmapHandler *handler = FindHandler(type); |
83df96d6 | 1063 | |
62ad3cb3 | 1064 | if (handler == NULL) |
83df96d6 | 1065 | { |
62ad3cb3 MB |
1066 | wxImage image; |
1067 | if (!image.LoadFile( name, type )) | |
55034339 | 1068 | return false; |
83df96d6 | 1069 | |
0cad49b4 | 1070 | if (image.Ok()) |
a11672a4 | 1071 | { |
62ad3cb3 | 1072 | *this = wxBitmap(image); |
55034339 | 1073 | return true; |
a11672a4 | 1074 | } |
55034339 | 1075 | else return false; |
83df96d6 | 1076 | } |
83df96d6 | 1077 | |
62ad3cb3 MB |
1078 | return handler->LoadFile(this, name, type, -1, -1); |
1079 | } | |
1080 | ||
1081 | void wxBitmap::SetPalette(const wxPalette& palette) | |
1082 | { | |
1083 | wxCHECK_RET(Ok(), wxT("invalid bitmap")); | |
1084 | wxCHECK_RET(GetDepth() > 1 && GetDepth() <= 8, | |
1085 | wxT("cannot set palette for bitmap of this depth")); | |
1086 | ||
1087 | delete M_BMPDATA->m_palette; | |
1088 | M_BMPDATA->m_palette = NULL; | |
1089 | ||
1090 | if (!palette.Ok()) return; | |
0cad49b4 | 1091 | |
62ad3cb3 | 1092 | M_BMPDATA->m_palette = new wxPalette(palette); |
83df96d6 JS |
1093 | } |
1094 | ||
a11672a4 | 1095 | wxPalette *wxBitmap::GetPalette() const |
83df96d6 | 1096 | { |
a11672a4 | 1097 | if (!Ok()) return (wxPalette *) NULL; |
83df96d6 | 1098 | |
a11672a4 RR |
1099 | return M_BMPDATA->m_palette; |
1100 | } | |
83df96d6 | 1101 | |
a11672a4 RR |
1102 | void wxBitmap::SetHeight( int height ) |
1103 | { | |
1104 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
83df96d6 | 1105 | |
a11672a4 RR |
1106 | M_BMPDATA->m_height = height; |
1107 | } | |
83df96d6 | 1108 | |
a11672a4 RR |
1109 | void wxBitmap::SetWidth( int width ) |
1110 | { | |
1111 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
83df96d6 | 1112 | |
a11672a4 RR |
1113 | M_BMPDATA->m_width = width; |
1114 | } | |
83df96d6 | 1115 | |
a11672a4 RR |
1116 | void wxBitmap::SetDepth( int depth ) |
1117 | { | |
1118 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
83df96d6 | 1119 | |
a11672a4 RR |
1120 | M_BMPDATA->m_bpp = depth; |
1121 | } | |
83df96d6 | 1122 | |
a11672a4 RR |
1123 | void wxBitmap::SetPixmap( WXPixmap pixmap ) |
1124 | { | |
1125 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
83df96d6 | 1126 | |
a11672a4 RR |
1127 | M_BMPDATA->m_pixmap = pixmap; |
1128 | } | |
83df96d6 | 1129 | |
a11672a4 RR |
1130 | void wxBitmap::SetBitmap( WXPixmap bitmap ) |
1131 | { | |
1132 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
83df96d6 | 1133 | |
a11672a4 RR |
1134 | M_BMPDATA->m_bitmap = bitmap; |
1135 | } | |
83df96d6 | 1136 | |
a11672a4 RR |
1137 | WXPixmap wxBitmap::GetPixmap() const |
1138 | { | |
1139 | wxCHECK_MSG( Ok(), (WXPixmap) NULL, wxT("invalid bitmap") ); | |
83df96d6 | 1140 | |
a11672a4 RR |
1141 | return M_BMPDATA->m_pixmap; |
1142 | } | |
83df96d6 | 1143 | |
a11672a4 RR |
1144 | WXPixmap wxBitmap::GetBitmap() const |
1145 | { | |
1146 | wxCHECK_MSG( Ok(), (WXPixmap) NULL, wxT("invalid bitmap") ); | |
83df96d6 | 1147 | |
a11672a4 | 1148 | return M_BMPDATA->m_bitmap; |
83df96d6 | 1149 | } |
7266b672 | 1150 | |
a29c6824 MB |
1151 | WXPixmap wxBitmap::GetDrawable() const |
1152 | { | |
1153 | wxCHECK_MSG( Ok(), (WXPixmap) NULL, wxT("invalid bitmap") ); | |
1154 | ||
1155 | return M_BMPDATA->m_bpp == 1 ? M_BMPDATA->m_bitmap : M_BMPDATA->m_pixmap; | |
1156 | } | |
1157 | ||
a11672a4 | 1158 | WXDisplay *wxBitmap::GetDisplay() const |
7266b672 | 1159 | { |
a11672a4 | 1160 | wxCHECK_MSG( Ok(), (WXDisplay*) NULL, wxT("invalid bitmap") ); |
b6ed4565 | 1161 | |
a11672a4 | 1162 | return M_BMPDATA->m_display; |
7266b672 | 1163 | } |
a11672a4 | 1164 | |
a20c04ab JS |
1165 | #if wxUSE_NANOX |
1166 | // Copy from the drawable to the wxImage | |
1167 | bool wxGetImageFromDrawable(GR_DRAW_ID drawable, int srcX, int srcY, int width, int height, wxImage& image) | |
1168 | { | |
f22033e5 | 1169 | GR_SCREEN_INFO sinfo; |
a20c04ab JS |
1170 | int x, y; |
1171 | GR_PIXELVAL *pixels; | |
a20c04ab | 1172 | GR_PALETTE* palette = NULL; |
f22033e5 | 1173 | unsigned char rgb[3], *pp; |
a20c04ab | 1174 | |
f22033e5 | 1175 | GrGetScreenInfo(&sinfo); |
a20c04ab | 1176 | |
f22033e5 | 1177 | if (sinfo.pixtype == MWPF_PALETTE) { |
0cad49b4 | 1178 | if(!(palette = (GR_PALETTE*) malloc(sizeof(GR_PALETTE)))) { |
55034339 | 1179 | return false; |
0cad49b4 VZ |
1180 | } |
1181 | GrGetSystemPalette(palette); | |
1182 | } | |
a20c04ab | 1183 | |
f22033e5 | 1184 | if(!(pixels = (GR_PIXELVAL*) malloc(sizeof(GR_PIXELVAL) * width * height))) |
a20c04ab | 1185 | { |
55034339 | 1186 | return false; |
a20c04ab JS |
1187 | } |
1188 | ||
f22033e5 | 1189 | image.Create(width, height); |
a20c04ab | 1190 | |
0cad49b4 VZ |
1191 | GrReadArea(drawable, srcX, srcY, width, height, |
1192 | pixels); | |
1193 | ||
1194 | ||
1195 | for(x = 0; x < sinfo.cols; x++) { | |
1196 | ||
1197 | pp = (unsigned char *)pixels + | |
1198 | ((x + (y * sinfo.cols)) * | |
1199 | sizeof(GR_PIXELVAL)); | |
1200 | ||
1201 | switch(sinfo.pixtype) { | |
1202 | /* FIXME: These may need modifying on big endian. */ | |
1203 | case MWPF_TRUECOLOR0888: | |
1204 | case MWPF_TRUECOLOR888: | |
1205 | rgb[0] = pp[2]; | |
1206 | rgb[1] = pp[1]; | |
1207 | rgb[2] = pp[0]; | |
1208 | break; | |
1209 | case MWPF_PALETTE: | |
1210 | rgb[0] = palette->palette[pp[0]].r; | |
1211 | rgb[1] = palette->palette[pp[0]].g; | |
1212 | rgb[2] = palette->palette[pp[0]].b; | |
1213 | break; | |
1214 | case MWPF_TRUECOLOR565: | |
1215 | rgb[0] = pp[1] & 0xf8; | |
1216 | rgb[1] = ((pp[1] & 0x07) << 5) | | |
1217 | ((pp[0] & 0xe0) >> 3); | |
1218 | rgb[2] = (pp[0] & 0x1f) << 3; | |
1219 | break; | |
1220 | case MWPF_TRUECOLOR555: | |
1221 | rgb[0] = (pp[1] & 0x7c) << 1; | |
1222 | rgb[1] = ((pp[1] & 0x03) << 6) | | |
1223 | ((pp[0] & 0xe0) >> 2); | |
1224 | rgb[2] = (pp[0] & 0x1f) << 3; | |
1225 | break; | |
1226 | case MWPF_TRUECOLOR332: | |
1227 | rgb[0] = pp[0] & 0xe0; | |
1228 | rgb[1] = (pp[0] & 0x1c) << 3; | |
1229 | rgb[2] = (pp[0] & 0x03) << 6; | |
1230 | break; | |
1231 | default: | |
1232 | fprintf(stderr, "Unsupported pixel " | |
1233 | "format\n"); | |
1234 | return 1; | |
1235 | } | |
1236 | ||
1237 | image.SetRGB(x, y, rgb[0], rgb[1], rgb[2]); | |
1238 | ||
1239 | } | |
a20c04ab JS |
1240 | |
1241 | free(pixels); | |
f22033e5 | 1242 | if(palette) free(palette); |
a20c04ab | 1243 | |
55034339 | 1244 | return true; |
a20c04ab JS |
1245 | } |
1246 | ||
1247 | #if 0 | |
1248 | int GrGetPixelColor(GR_SCREEN_INFO* sinfo, GR_PALETTE* palette, GR_PIXELVAL pixel, | |
1249 | unsigned char* red, unsigned char* green, unsigned char* blue) | |
1250 | { | |
0cad49b4 | 1251 | unsigned char rgb[3], *pp; |
a20c04ab JS |
1252 | |
1253 | pp = (unsigned char*) & pixel ; | |
1254 | ||
1255 | switch (sinfo.pixtype) | |
1256 | { | |
0cad49b4 VZ |
1257 | /* FIXME: These may need modifying on big endian. */ |
1258 | case MWPF_TRUECOLOR0888: | |
1259 | case MWPF_TRUECOLOR888: | |
1260 | rgb[0] = pp[2]; | |
1261 | rgb[1] = pp[1]; | |
1262 | rgb[2] = pp[0]; | |
1263 | break; | |
1264 | case MWPF_PALETTE: | |
1265 | rgb[0] = palette->palette[pp[0]].r; | |
1266 | rgb[1] = palette->palette[pp[0]].g; | |
1267 | rgb[2] = palette->palette[pp[0]].b; | |
1268 | break; | |
1269 | case MWPF_TRUECOLOR565: | |
1270 | rgb[0] = pp[1] & 0xf8; | |
1271 | rgb[1] = ((pp[1] & 0x07) << 5) | | |
1272 | ((pp[0] & 0xe0) >> 3); | |
1273 | rgb[2] = (pp[0] & 0x1f) << 3; | |
1274 | break; | |
1275 | case MWPF_TRUECOLOR555: | |
1276 | rgb[0] = (pp[1] & 0x7c) << 1; | |
1277 | rgb[1] = ((pp[1] & 0x03) << 6) | | |
1278 | ((pp[0] & 0xe0) >> 2); | |
1279 | rgb[2] = (pp[0] & 0x1f) << 3; | |
1280 | break; | |
1281 | case MWPF_TRUECOLOR332: | |
1282 | rgb[0] = pp[0] & 0xe0; | |
1283 | rgb[1] = (pp[0] & 0x1c) << 3; | |
1284 | rgb[2] = (pp[0] & 0x03) << 6; | |
1285 | break; | |
1286 | default: | |
1287 | fprintf(stderr, "Unsupported pixel format\n"); | |
1288 | return 0; | |
1289 | } | |
a20c04ab JS |
1290 | |
1291 | ||
1292 | *(red) = rgb[0]; | |
1293 | *(green) = rgb[1]; | |
1294 | *(blue) = rgb[2]; | |
1295 | return 1; | |
1296 | } | |
1297 | #endif | |
c978d361 | 1298 | |
a20c04ab JS |
1299 | #endif |
1300 | // wxUSE_NANOX | |
1301 | ||
62ad3cb3 MB |
1302 | // ============================================================================ |
1303 | // Bitmap handlers | |
1304 | // ============================================================================ | |
1305 | ||
e933b5bc | 1306 | IMPLEMENT_ABSTRACT_CLASS(wxBitmapHandler, wxBitmapHandlerBase) |
62ad3cb3 MB |
1307 | |
1308 | #define M_BMPHANDLERDATA ((wxBitmapRefData *)bitmap->GetRefData()) | |
1309 | ||
1310 | #if wxUSE_XPM | |
1311 | ||
1312 | #if wxHAVE_LIB_XPM || wxUSE_STREAMS | |
1313 | ||
1314 | // ---------------------------------------------------------------------------- | |
1315 | // wxXPMFileHandler | |
1316 | // ---------------------------------------------------------------------------- | |
1317 | ||
1318 | class wxXPMFileHandler : public wxBitmapHandler | |
1319 | { | |
bc21780e | 1320 | DECLARE_DYNAMIC_CLASS(wxXPMFileHandler) |
62ad3cb3 MB |
1321 | public: |
1322 | wxXPMFileHandler() | |
1323 | { | |
2fd1cf7d MB |
1324 | SetName( wxT("XPM file") ); |
1325 | SetExtension( wxT("xpm") ); | |
1326 | SetType( wxBITMAP_TYPE_XPM ); | |
62ad3cb3 MB |
1327 | }; |
1328 | ||
1329 | virtual bool LoadFile(wxBitmap *bitmap, const wxString& name, long flags, | |
1330 | int desiredWidth, int desiredHeight); | |
1331 | ||
1332 | virtual bool SaveFile(const wxBitmap *bitmap, const wxString& name, | |
1333 | int type, const wxPalette *palette = NULL); | |
1334 | ||
55034339 WS |
1335 | virtual bool Create(wxBitmap *WXUNUSED(bitmap), void *WXUNUSED(data), long WXUNUSED(flags), |
1336 | int WXUNUSED(width), int WXUNUSED(height), int WXUNUSED(depth) = 1) | |
1337 | { return false; } | |
62ad3cb3 MB |
1338 | }; |
1339 | ||
e933b5bc | 1340 | IMPLEMENT_DYNAMIC_CLASS(wxXPMFileHandler, wxBitmapHandler) |
62ad3cb3 MB |
1341 | |
1342 | bool wxXPMFileHandler::LoadFile(wxBitmap *bitmap, const wxString& name, | |
55034339 WS |
1343 | long WXUNUSED(flags), int WXUNUSED(desiredWidth), |
1344 | int WXUNUSED(desiredHeight)) | |
62ad3cb3 MB |
1345 | { |
1346 | #if wxHAVE_LIB_XPM | |
1347 | if (!bitmap->GetRefData()) | |
1348 | bitmap->SetRefData( new wxBitmapRefData() ); | |
1349 | ||
1350 | M_BMPHANDLERDATA->m_display = wxGlobalDisplay(); | |
0cad49b4 | 1351 | |
62ad3cb3 | 1352 | Display *xdisplay = (Display*) M_BMPHANDLERDATA->m_display; |
0cad49b4 | 1353 | |
62ad3cb3 MB |
1354 | int xscreen = DefaultScreen( xdisplay ); |
1355 | Window xroot = RootWindow( xdisplay, xscreen ); | |
0cad49b4 | 1356 | |
62ad3cb3 MB |
1357 | int bpp = DefaultDepth( xdisplay, xscreen ); |
1358 | ||
1359 | XpmAttributes xpmAttr; | |
1360 | xpmAttr.valuemask = XpmReturnInfos; // nothing yet, but get infos back | |
1361 | ||
1362 | Pixmap pixmap; | |
1363 | Pixmap mask = 0; | |
0cad49b4 | 1364 | |
62ad3cb3 MB |
1365 | int ErrorStatus = XpmReadFileToPixmap( xdisplay, xroot, |
1366 | (char*) name.c_str(), | |
1367 | &pixmap, &mask, &xpmAttr); | |
0cad49b4 | 1368 | |
62ad3cb3 MB |
1369 | if (ErrorStatus == XpmSuccess) |
1370 | { | |
1371 | M_BMPHANDLERDATA->m_width = xpmAttr.width; | |
1372 | M_BMPHANDLERDATA->m_height = xpmAttr.height; | |
1373 | ||
1374 | M_BMPHANDLERDATA->m_bpp = bpp; // mono as well? | |
1375 | ||
1376 | XpmFreeAttributes(&xpmAttr); | |
1377 | ||
1378 | M_BMPHANDLERDATA->m_bitmap = (WXPixmap) pixmap; | |
0cad49b4 | 1379 | |
62ad3cb3 MB |
1380 | if (mask) |
1381 | { | |
1382 | M_BMPHANDLERDATA->m_mask = new wxMask; | |
1383 | M_BMPHANDLERDATA->m_mask->SetBitmap( (WXPixmap) mask ); | |
1384 | M_BMPHANDLERDATA->m_mask->SetDisplay( xdisplay ); | |
1385 | } | |
1386 | } | |
1387 | else | |
1388 | { | |
1389 | UnRef(); | |
0cad49b4 | 1390 | |
55034339 | 1391 | return false; |
62ad3cb3 MB |
1392 | } |
1393 | ||
55034339 | 1394 | return true; |
62ad3cb3 MB |
1395 | #elif wxUSE_STREAMS |
1396 | wxXPMDecoder decoder; | |
1397 | wxFileInputStream stream(name); | |
1398 | if (stream.Ok()) | |
1399 | { | |
1400 | wxImage image(decoder.ReadFile(stream)); | |
0cad49b4 | 1401 | return image.Ok() && bitmap->CreateFromImage(image); |
62ad3cb3 | 1402 | } |
6cee3292 | 1403 | |
55034339 | 1404 | return false; |
0cad49b4 | 1405 | #else // !wxHAVE_LIB_XPM && !wxUSE_STREAMS |
55034339 | 1406 | return false; |
62ad3cb3 MB |
1407 | #endif // wxHAVE_LIB_XPM / wxUSE_STREAMS |
1408 | } | |
1409 | ||
1410 | bool wxXPMFileHandler::SaveFile(const wxBitmap *bitmap, const wxString& name, | |
1411 | int type, | |
1412 | const wxPalette *WXUNUSED(palette)) | |
1413 | { | |
1414 | wxImage image(bitmap->ConvertToImage()); | |
1415 | if (image.Ok()) return image.SaveFile( name, (wxBitmapType)type ); | |
1416 | ||
55034339 | 1417 | return false; |
62ad3cb3 MB |
1418 | } |
1419 | ||
1420 | #endif // wxHAVE_LIB_XPM || wxUSE_STREAMS | |
1421 | ||
1422 | // ---------------------------------------------------------------------------- | |
1423 | // wxXPMDataHandler | |
1424 | // ---------------------------------------------------------------------------- | |
1425 | ||
1426 | class wxXPMDataHandler : public wxBitmapHandler | |
1427 | { | |
bc21780e | 1428 | DECLARE_DYNAMIC_CLASS(wxXPMDataHandler) |
62ad3cb3 MB |
1429 | public: |
1430 | wxXPMDataHandler() | |
1431 | { | |
2fd1cf7d MB |
1432 | SetName( wxT("XPM data") ); |
1433 | SetExtension( wxT("xpm") ); | |
1434 | SetType( wxBITMAP_TYPE_XPM_DATA ); | |
62ad3cb3 MB |
1435 | }; |
1436 | ||
55034339 WS |
1437 | virtual bool LoadFile(wxBitmap *WXUNUSED(bitmap), |
1438 | const wxString& WXUNUSED(name), | |
1439 | long WXUNUSED(flags), | |
1440 | int WXUNUSED(desiredWidth), | |
1441 | int WXUNUSED(desiredHeight)) | |
1442 | { return false; } | |
62ad3cb3 | 1443 | |
55034339 WS |
1444 | virtual bool SaveFile(const wxBitmap *WXUNUSED(bitmap), |
1445 | const wxString& WXUNUSED(name), | |
1446 | int WXUNUSED(type), | |
1447 | const wxPalette *WXUNUSED(palette) = NULL) | |
1448 | { return false; } | |
62ad3cb3 MB |
1449 | |
1450 | virtual bool Create(wxBitmap *bitmap, void *data, long flags, | |
1451 | int width, int height, int depth = 1); | |
1452 | }; | |
1453 | ||
e933b5bc | 1454 | IMPLEMENT_DYNAMIC_CLASS(wxXPMDataHandler, wxBitmapHandler) |
62ad3cb3 MB |
1455 | |
1456 | bool wxXPMDataHandler::Create(wxBitmap *bitmap, void *bits, | |
1457 | long WXUNUSED(flags), | |
55034339 | 1458 | int WXUNUSED(width), int WXUNUSED(height), int WXUNUSED(depth)) |
62ad3cb3 MB |
1459 | { |
1460 | #if wxHAVE_LIB_XPM | |
55034339 | 1461 | wxCHECK_MSG( bits != NULL, false, wxT("invalid bitmap data") ) |
62ad3cb3 MB |
1462 | |
1463 | if (!bitmap->GetRefData()) | |
1464 | bitmap->SetRefData( new wxBitmapRefData() ); | |
1465 | ||
1466 | M_BMPHANDLERDATA->m_display = wxGlobalDisplay(); | |
0cad49b4 | 1467 | |
62ad3cb3 | 1468 | Display *xdisplay = (Display*) M_BMPHANDLERDATA->m_display; |
0cad49b4 | 1469 | |
62ad3cb3 MB |
1470 | int xscreen = DefaultScreen( xdisplay ); |
1471 | Window xroot = RootWindow( xdisplay, xscreen ); | |
0cad49b4 | 1472 | |
62ad3cb3 MB |
1473 | int bpp = DefaultDepth( xdisplay, xscreen ); |
1474 | ||
1475 | XpmAttributes xpmAttr; | |
1476 | xpmAttr.valuemask = XpmReturnInfos; // nothing yet, but get infos back | |
1477 | ||
1478 | Pixmap pixmap = 0; | |
1479 | Pixmap mask = 0; | |
0cad49b4 | 1480 | |
62ad3cb3 MB |
1481 | int ErrorStatus = XpmCreatePixmapFromData( xdisplay, xroot, (char**) bits, |
1482 | &pixmap, &mask, &xpmAttr ); | |
0cad49b4 | 1483 | |
62ad3cb3 MB |
1484 | if (ErrorStatus == XpmSuccess) |
1485 | { | |
1486 | M_BMPHANDLERDATA->m_width = xpmAttr.width; | |
1487 | M_BMPHANDLERDATA->m_height = xpmAttr.height; | |
1488 | ||
1489 | M_BMPHANDLERDATA->m_bpp = bpp; // mono as well? | |
1490 | ||
1491 | #if __WXDEBUG__ | |
1492 | unsigned int depthRet; | |
1493 | int xRet, yRet; | |
1494 | unsigned int widthRet, heightRet, borderWidthRet; | |
1495 | XGetGeometry( xdisplay, pixmap, &xroot, &xRet, &yRet, | |
1496 | &widthRet, &heightRet, &borderWidthRet, &depthRet); | |
1497 | ||
1498 | wxASSERT_MSG( bpp == (int)depthRet, wxT("colour depth mismatch") ); | |
1499 | #endif | |
1500 | ||
1501 | XpmFreeAttributes(&xpmAttr); | |
0cad49b4 | 1502 | |
62ad3cb3 | 1503 | M_BMPHANDLERDATA->m_pixmap = (WXPixmap) pixmap; |
0cad49b4 | 1504 | |
62ad3cb3 MB |
1505 | if (mask) |
1506 | { | |
1507 | M_BMPHANDLERDATA->m_mask = new wxMask; | |
1508 | M_BMPHANDLERDATA->m_mask->SetBitmap( (WXPixmap) mask ); | |
1509 | M_BMPHANDLERDATA->m_mask->SetDisplay( xdisplay ); | |
1510 | } | |
55034339 | 1511 | return true; |
62ad3cb3 MB |
1512 | } |
1513 | else | |
1514 | { | |
1515 | bitmap->UnRef(); | |
0cad49b4 | 1516 | |
55034339 | 1517 | return false; |
62ad3cb3 | 1518 | } |
0cad49b4 | 1519 | #else // !wxHAVE_LIB_XPM |
62ad3cb3 | 1520 | wxXPMDecoder decoder; |
0cad49b4 VZ |
1521 | wxImage image(decoder.ReadData((const char **)bits)); |
1522 | return image.Ok() && bitmap->CreateFromImage(image); | |
1523 | #endif // wxHAVE_LIB_XPM/!wxHAVE_LIB_XPM | |
62ad3cb3 MB |
1524 | } |
1525 | ||
1526 | #endif // wxUSE_XPM | |
1527 | ||
1528 | // ---------------------------------------------------------------------------- | |
1529 | // wxXBMDataHandler | |
1530 | // ---------------------------------------------------------------------------- | |
1531 | ||
1532 | class WXDLLEXPORT wxXBMDataHandler: public wxBitmapHandler | |
1533 | { | |
1534 | DECLARE_DYNAMIC_CLASS(wxXBMDataHandler) | |
1535 | public: | |
1536 | inline wxXBMDataHandler() | |
1537 | { | |
2fd1cf7d MB |
1538 | SetName( wxT("XBM data") ); |
1539 | SetExtension( wxT("xbm") ); | |
1540 | SetType( wxBITMAP_TYPE_XBM_DATA ); | |
62ad3cb3 MB |
1541 | }; |
1542 | ||
55034339 WS |
1543 | virtual bool LoadFile(wxBitmap *WXUNUSED(bitmap), |
1544 | const wxString& WXUNUSED(name), | |
1545 | long WXUNUSED(flags), | |
1546 | int WXUNUSED(desiredWidth), | |
1547 | int WXUNUSED(desiredHeight)) | |
1548 | { return false; } | |
62ad3cb3 | 1549 | |
55034339 WS |
1550 | virtual bool SaveFile(const wxBitmap *WXUNUSED(bitmap), |
1551 | const wxString& WXUNUSED(name), | |
1552 | int WXUNUSED(type), | |
1553 | const wxPalette *WXUNUSED(palette) = NULL) | |
1554 | { return false; } | |
62ad3cb3 MB |
1555 | |
1556 | virtual bool Create(wxBitmap *bitmap, void *data, long flags, | |
1557 | int width, int height, int depth = 1); | |
1558 | }; | |
1559 | ||
e933b5bc | 1560 | IMPLEMENT_DYNAMIC_CLASS(wxXBMDataHandler, wxBitmapHandler) |
62ad3cb3 MB |
1561 | |
1562 | bool wxXBMDataHandler::Create( wxBitmap *bitmap, void *bits, | |
1563 | long WXUNUSED(flags), | |
7fc65a03 | 1564 | int width, int height, int WXUNUSED(depth)) |
62ad3cb3 MB |
1565 | { |
1566 | #if !wxUSE_NANOX | |
1567 | if (!bitmap->GetRefData()) | |
1568 | bitmap->SetRefData( new wxBitmapRefData() ); | |
1569 | ||
1570 | M_BMPHANDLERDATA->m_display = wxGlobalDisplay(); | |
1571 | ||
1572 | Display *xdisplay = (Display*) M_BMPHANDLERDATA->m_display; | |
0cad49b4 | 1573 | |
62ad3cb3 MB |
1574 | int xscreen = DefaultScreen( xdisplay ); |
1575 | Window xroot = RootWindow( xdisplay, xscreen ); | |
0cad49b4 | 1576 | |
62ad3cb3 MB |
1577 | M_BMPHANDLERDATA->m_mask = (wxMask *) NULL; |
1578 | M_BMPHANDLERDATA->m_bitmap = | |
1579 | (WXPixmap) XCreateBitmapFromData( xdisplay, xroot, | |
1580 | (char *) bits, width, height ); | |
1581 | M_BMPHANDLERDATA->m_width = width; | |
1582 | M_BMPHANDLERDATA->m_height = height; | |
1583 | M_BMPHANDLERDATA->m_bpp = 1; | |
1584 | ||
55034339 | 1585 | return true; |
d171743e | 1586 | #else |
55034339 | 1587 | wxCHECK_MSG( M_BMPHANDLERDATA->m_bitmap, false, |
62ad3cb3 | 1588 | wxT("couldn't create bitmap") ); |
d171743e | 1589 | #endif |
62ad3cb3 MB |
1590 | } |
1591 | ||
1592 | void wxBitmap::InitStandardHandlers() | |
1593 | { | |
1594 | AddHandler(new wxXBMDataHandler); | |
1595 | #if wxUSE_XPM | |
1596 | #if wxHAVE_LIB_XPM || wxUSE_STREAMS | |
1597 | AddHandler(new wxXPMFileHandler); | |
1598 | #endif | |
1599 | AddHandler(new wxXPMDataHandler); | |
1600 | #endif | |
1601 | } |