]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: bitmap.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
6f65e337 | 5 | // RCS-ID: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
8bbe427f | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifdef __GNUG__ | |
11 | #pragma implementation "bitmap.h" | |
12 | #endif | |
13 | ||
22bd9387 VZ |
14 | #include "wx/defs.h" |
15 | ||
16 | #include "wx/palette.h" | |
c801d85f | 17 | #include "wx/bitmap.h" |
52cbfcf0 | 18 | #include "wx/icon.h" |
fd0eed64 | 19 | #include "wx/filefn.h" |
83624f79 | 20 | #include "wx/image.h" |
f9ee644e | 21 | #include "wx/dcmemory.h" |
b5f01ae0 | 22 | #include "wx/app.h" |
83624f79 | 23 | |
20e05ffb | 24 | #include <gdk/gdk.h> |
d76fe38b | 25 | #include <gtk/gtk.h> |
b5f01ae0 VS |
26 | #include <gdk/gdkx.h> |
27 | ||
28 | #if (GTK_MINOR_VERSION > 0) | |
29 | #include <gdk/gdkrgb.h> | |
30 | #endif | |
13111b2a | 31 | |
f6bcfd97 BP |
32 | extern void gdk_wx_draw_bitmap (GdkDrawable *drawable, |
33 | GdkGC *gc, | |
34 | GdkDrawable *src, | |
35 | gint xsrc, | |
36 | gint ysrc, | |
37 | gint xdest, | |
38 | gint ydest, | |
39 | gint width, | |
40 | gint height); | |
41 | ||
d76fe38b RR |
42 | //----------------------------------------------------------------------------- |
43 | // data | |
44 | //----------------------------------------------------------------------------- | |
45 | ||
c2fa61e8 | 46 | extern GtkWidget *wxGetRootWindow(); |
c801d85f KB |
47 | |
48 | //----------------------------------------------------------------------------- | |
49 | // wxMask | |
50 | //----------------------------------------------------------------------------- | |
51 | ||
52 | IMPLEMENT_DYNAMIC_CLASS(wxMask,wxObject) | |
53 | ||
8bbe427f | 54 | wxMask::wxMask() |
c801d85f | 55 | { |
fd0eed64 | 56 | m_bitmap = (GdkBitmap *) NULL; |
ff7b1510 | 57 | } |
c801d85f | 58 | |
91b8de8d | 59 | wxMask::wxMask( const wxBitmap& bitmap, const wxColour& colour ) |
c801d85f | 60 | { |
72a7edf0 | 61 | m_bitmap = (GdkBitmap *) NULL; |
91b8de8d | 62 | Create( bitmap, colour ); |
ff7b1510 | 63 | } |
c801d85f | 64 | |
91b8de8d | 65 | wxMask::wxMask( const wxBitmap& bitmap, int paletteIndex ) |
c801d85f | 66 | { |
72a7edf0 | 67 | m_bitmap = (GdkBitmap *) NULL; |
91b8de8d | 68 | Create( bitmap, paletteIndex ); |
ff7b1510 | 69 | } |
c801d85f | 70 | |
91b8de8d | 71 | wxMask::wxMask( const wxBitmap& bitmap ) |
c801d85f | 72 | { |
72a7edf0 | 73 | m_bitmap = (GdkBitmap *) NULL; |
91b8de8d | 74 | Create( bitmap ); |
ff7b1510 | 75 | } |
c801d85f | 76 | |
8bbe427f | 77 | wxMask::~wxMask() |
c801d85f | 78 | { |
13111b2a | 79 | if (m_bitmap) |
72a7edf0 | 80 | gdk_bitmap_unref( m_bitmap ); |
ff7b1510 | 81 | } |
c801d85f | 82 | |
1fb4de31 RR |
83 | bool wxMask::Create( const wxBitmap& bitmap, |
84 | const wxColour& colour ) | |
91b8de8d RR |
85 | { |
86 | if (m_bitmap) | |
284b4c88 | 87 | { |
91b8de8d | 88 | gdk_bitmap_unref( m_bitmap ); |
284b4c88 | 89 | m_bitmap = (GdkBitmap*) NULL; |
91b8de8d | 90 | } |
13111b2a | 91 | |
1fb4de31 RR |
92 | wxImage image( bitmap ); |
93 | if (!image.Ok()) return FALSE; | |
13111b2a | 94 | |
c2fa61e8 | 95 | m_bitmap = gdk_pixmap_new( wxGetRootWindow()->window, image.GetWidth(), image.GetHeight(), 1 ); |
f9ee644e | 96 | GdkGC *gc = gdk_gc_new( m_bitmap ); |
13111b2a | 97 | |
f9ee644e RR |
98 | GdkColor color; |
99 | color.red = 65000; | |
100 | color.green = 65000; | |
101 | color.blue = 65000; | |
102 | color.pixel = 1; | |
103 | gdk_gc_set_foreground( gc, &color ); | |
104 | gdk_gc_set_fill( gc, GDK_SOLID ); | |
105 | gdk_draw_rectangle( m_bitmap, gc, TRUE, 0, 0, image.GetWidth(), image.GetHeight() ); | |
13111b2a | 106 | |
1fb4de31 RR |
107 | unsigned char *data = image.GetData(); |
108 | int index = 0; | |
13111b2a | 109 | |
1fb4de31 RR |
110 | unsigned char red = colour.Red(); |
111 | unsigned char green = colour.Green(); | |
112 | unsigned char blue = colour.Blue(); | |
13111b2a | 113 | |
005f5d18 | 114 | GdkVisual *visual = wxTheApp->GetGdkVisual(); |
c2fa61e8 | 115 | |
1fb4de31 RR |
116 | int bpp = visual->depth; |
117 | if ((bpp == 16) && (visual->red_mask != 0xf800)) bpp = 15; | |
118 | if (bpp == 15) | |
119 | { | |
120 | red = red & 0xf8; | |
1fb4de31 | 121 | green = green & 0xf8; |
f6bcfd97 | 122 | blue = blue & 0xf8; |
005f5d18 | 123 | } else |
1fb4de31 RR |
124 | if (bpp == 16) |
125 | { | |
126 | red = red & 0xf8; | |
f6bcfd97 BP |
127 | green = green & 0xfc; |
128 | blue = blue & 0xf8; | |
005f5d18 RR |
129 | } else |
130 | if (bpp == 12) | |
131 | { | |
132 | red = red & 0xf0; | |
133 | green = green & 0xf0; | |
134 | blue = blue & 0xf0; | |
1fb4de31 | 135 | } |
13111b2a | 136 | |
f9ee644e RR |
137 | color.red = 0; |
138 | color.green = 0; | |
139 | color.blue = 0; | |
140 | color.pixel = 0; | |
141 | gdk_gc_set_foreground( gc, &color ); | |
13111b2a | 142 | |
1fb4de31 | 143 | for (int j = 0; j < image.GetHeight(); j++) |
f9ee644e | 144 | { |
f2593d0d RR |
145 | int start_x = -1; |
146 | int i; | |
147 | for (i = 0; i < image.GetWidth(); i++) | |
1fb4de31 | 148 | { |
13111b2a VZ |
149 | if ((data[index] == red) && |
150 | (data[index+1] == green) && | |
151 | (data[index+2] == blue)) | |
152 | { | |
153 | if (start_x == -1) | |
154 | start_x = i; | |
155 | } | |
156 | else | |
157 | { | |
158 | if (start_x != -1) | |
159 | { | |
160 | gdk_draw_line( m_bitmap, gc, start_x, j, i-1, j ); | |
161 | start_x = -1; | |
162 | } | |
f9ee644e RR |
163 | } |
164 | index += 3; | |
165 | } | |
166 | if (start_x != -1) | |
167 | gdk_draw_line( m_bitmap, gc, start_x, j, i, j ); | |
168 | } | |
1fb4de31 | 169 | |
f9ee644e | 170 | gdk_gc_unref( gc ); |
1fb4de31 | 171 | |
f9ee644e | 172 | return TRUE; |
91b8de8d RR |
173 | } |
174 | ||
b5f01ae0 | 175 | bool wxMask::Create( const wxBitmap& bitmap, int paletteIndex ) |
91b8de8d | 176 | { |
b5f01ae0 VS |
177 | unsigned char r,g,b; |
178 | wxPalette *pal = bitmap.GetPalette(); | |
284b4c88 | 179 | |
b5f01ae0 | 180 | wxCHECK_MSG( pal, FALSE, wxT("Cannot create mask from bitmap without palette") ); |
c2fa61e8 | 181 | |
b5f01ae0 | 182 | pal->GetRGB(paletteIndex, &r, &g, &b); |
284b4c88 | 183 | |
b5f01ae0 | 184 | return Create(bitmap, wxColour(r, g, b)); |
91b8de8d RR |
185 | } |
186 | ||
187 | bool wxMask::Create( const wxBitmap& bitmap ) | |
188 | { | |
189 | if (m_bitmap) | |
284b4c88 | 190 | { |
91b8de8d | 191 | gdk_bitmap_unref( m_bitmap ); |
284b4c88 | 192 | m_bitmap = (GdkBitmap*) NULL; |
91b8de8d | 193 | } |
284b4c88 | 194 | |
91b8de8d | 195 | if (!bitmap.Ok()) return FALSE; |
284b4c88 | 196 | |
223d09f6 | 197 | wxCHECK_MSG( bitmap.GetBitmap(), FALSE, wxT("Cannot create mask from colour bitmap") ); |
284b4c88 | 198 | |
c2fa61e8 | 199 | m_bitmap = gdk_pixmap_new( wxGetRootWindow()->window, bitmap.GetWidth(), bitmap.GetHeight(), 1 ); |
284b4c88 | 200 | |
91b8de8d | 201 | if (!m_bitmap) return FALSE; |
284b4c88 | 202 | |
91b8de8d | 203 | GdkGC *gc = gdk_gc_new( m_bitmap ); |
284b4c88 | 204 | |
f6bcfd97 | 205 | gdk_wx_draw_bitmap( m_bitmap, gc, bitmap.GetBitmap(), 0, 0, 0, 0, bitmap.GetWidth(), bitmap.GetHeight() ); |
284b4c88 | 206 | |
91b8de8d | 207 | gdk_gc_unref( gc ); |
284b4c88 | 208 | |
91b8de8d RR |
209 | return TRUE; |
210 | } | |
211 | ||
212 | GdkBitmap *wxMask::GetBitmap() const | |
c801d85f | 213 | { |
fd0eed64 | 214 | return m_bitmap; |
ff7b1510 | 215 | } |
8bbe427f | 216 | |
c801d85f KB |
217 | //----------------------------------------------------------------------------- |
218 | // wxBitmap | |
219 | //----------------------------------------------------------------------------- | |
220 | ||
221 | class wxBitmapRefData: public wxObjectRefData | |
222 | { | |
fd0eed64 | 223 | public: |
f2593d0d RR |
224 | wxBitmapRefData(); |
225 | ~wxBitmapRefData(); | |
226 | ||
227 | GdkPixmap *m_pixmap; | |
228 | GdkBitmap *m_bitmap; | |
229 | wxMask *m_mask; | |
230 | int m_width; | |
231 | int m_height; | |
232 | int m_bpp; | |
233 | wxPalette *m_palette; | |
c801d85f KB |
234 | }; |
235 | ||
8bbe427f | 236 | wxBitmapRefData::wxBitmapRefData() |
c801d85f | 237 | { |
fd0eed64 RR |
238 | m_pixmap = (GdkPixmap *) NULL; |
239 | m_bitmap = (GdkBitmap *) NULL; | |
240 | m_mask = (wxMask *) NULL; | |
241 | m_width = 0; | |
242 | m_height = 0; | |
243 | m_bpp = 0; | |
244 | m_palette = (wxPalette *) NULL; | |
ff7b1510 | 245 | } |
c801d85f | 246 | |
8bbe427f | 247 | wxBitmapRefData::~wxBitmapRefData() |
c801d85f | 248 | { |
fd0eed64 RR |
249 | if (m_pixmap) gdk_pixmap_unref( m_pixmap ); |
250 | if (m_bitmap) gdk_bitmap_unref( m_bitmap ); | |
251 | if (m_mask) delete m_mask; | |
252 | if (m_palette) delete m_palette; | |
ff7b1510 | 253 | } |
c801d85f KB |
254 | |
255 | //----------------------------------------------------------------------------- | |
256 | ||
257 | #define M_BMPDATA ((wxBitmapRefData *)m_refData) | |
258 | ||
259 | IMPLEMENT_DYNAMIC_CLASS(wxBitmap,wxGDIObject) | |
260 | ||
8bbe427f | 261 | wxBitmap::wxBitmap() |
c801d85f | 262 | { |
ff7b1510 | 263 | } |
8bbe427f | 264 | |
debe6624 | 265 | wxBitmap::wxBitmap( int width, int height, int depth ) |
c801d85f | 266 | { |
c826213d | 267 | Create( width, height, depth ); |
c826213d RR |
268 | } |
269 | ||
270 | bool wxBitmap::Create( int width, int height, int depth ) | |
271 | { | |
272 | UnRef(); | |
273 | ||
274 | wxCHECK_MSG( (width > 0) && (height > 0), FALSE, wxT("invalid bitmap size") ) | |
284b4c88 | 275 | |
005f5d18 | 276 | GdkVisual *visual = wxTheApp->GetGdkVisual(); |
284b4c88 | 277 | |
103aab26 RR |
278 | if (depth == -1) depth = visual->depth; |
279 | ||
c826213d RR |
280 | wxCHECK_MSG( (depth == visual->depth) || |
281 | (depth == 1), FALSE, wxT("invalid bitmap depth") ) | |
8bbe427f | 282 | |
eefa26be | 283 | m_refData = new wxBitmapRefData(); |
fd0eed64 | 284 | M_BMPDATA->m_mask = (wxMask *) NULL; |
fd0eed64 RR |
285 | M_BMPDATA->m_width = width; |
286 | M_BMPDATA->m_height = height; | |
eefa26be RR |
287 | if (depth == 1) |
288 | { | |
c2fa61e8 | 289 | M_BMPDATA->m_bitmap = gdk_pixmap_new( wxGetRootWindow()->window, width, height, 1 ); |
eefa26be RR |
290 | M_BMPDATA->m_bpp = 1; |
291 | } | |
292 | else | |
293 | { | |
c2fa61e8 | 294 | M_BMPDATA->m_pixmap = gdk_pixmap_new( wxGetRootWindow()->window, width, height, depth ); |
103aab26 | 295 | M_BMPDATA->m_bpp = visual->depth; |
eefa26be | 296 | } |
8bbe427f | 297 | |
c826213d | 298 | return Ok(); |
ff7b1510 | 299 | } |
b5f01ae0 | 300 | |
e838cc14 | 301 | bool wxBitmap::CreateFromXpm( const char **bits ) |
e52f60e6 | 302 | { |
e838cc14 | 303 | wxCHECK_MSG( bits != NULL, FALSE, wxT("invalid bitmap data") ) |
8bbe427f | 304 | |
005f5d18 | 305 | GdkVisual *visual = wxTheApp->GetGdkVisual(); |
c2fa61e8 | 306 | |
e52f60e6 RR |
307 | m_refData = new wxBitmapRefData(); |
308 | ||
309 | GdkBitmap *mask = (GdkBitmap*) NULL; | |
8bbe427f | 310 | |
c2fa61e8 | 311 | M_BMPDATA->m_pixmap = gdk_pixmap_create_from_xpm_d( wxGetRootWindow()->window, &mask, NULL, (gchar **) bits ); |
8bbe427f | 312 | |
e838cc14 | 313 | wxCHECK_MSG( M_BMPDATA->m_pixmap, FALSE, wxT("couldn't create pixmap") ); |
8bbe427f | 314 | |
fd0eed64 RR |
315 | if (mask) |
316 | { | |
317 | M_BMPDATA->m_mask = new wxMask(); | |
318 | M_BMPDATA->m_mask->m_bitmap = mask; | |
319 | } | |
8bbe427f | 320 | |
fd0eed64 | 321 | gdk_window_get_size( M_BMPDATA->m_pixmap, &(M_BMPDATA->m_width), &(M_BMPDATA->m_height) ); |
8bbe427f | 322 | |
103aab26 | 323 | M_BMPDATA->m_bpp = visual->depth; // ? |
c2fa61e8 | 324 | |
e838cc14 | 325 | return TRUE; |
ff7b1510 | 326 | } |
b5f01ae0 VS |
327 | |
328 | bool wxBitmap::CreateFromImage( const wxImage& image, int depth ) | |
329 | { | |
330 | wxCHECK_MSG( image.Ok(), FALSE, wxT("invalid image") ) | |
331 | wxCHECK_MSG( depth == -1 || depth == 1, FALSE, wxT("invalid bitmap depth") ) | |
332 | ||
333 | m_refData = new wxBitmapRefData(); | |
c2fa61e8 | 334 | |
b5f01ae0 VS |
335 | // ------ |
336 | // convertion to mono bitmap: | |
337 | // ------ | |
338 | if (depth == 1) | |
339 | { | |
340 | int width = image.GetWidth(); | |
341 | int height = image.GetHeight(); | |
342 | ||
343 | SetHeight( height ); | |
344 | SetWidth( width ); | |
345 | ||
c2fa61e8 | 346 | SetBitmap( gdk_pixmap_new( wxGetRootWindow()->window, width, height, 1 ) ); |
b5f01ae0 VS |
347 | |
348 | SetDepth( 1 ); | |
349 | ||
005f5d18 | 350 | GdkVisual *visual = wxTheApp->GetGdkVisual(); |
b5f01ae0 VS |
351 | |
352 | // Create picture image | |
353 | ||
354 | unsigned char *data_data = (unsigned char*)malloc( ((width >> 3)+8) * height ); | |
355 | ||
356 | GdkImage *data_image = | |
357 | gdk_image_new_bitmap( visual, data_data, width, height ); | |
358 | ||
359 | // Create mask image | |
360 | ||
361 | GdkImage *mask_image = (GdkImage*) NULL; | |
362 | ||
363 | if (image.HasMask()) | |
364 | { | |
365 | unsigned char *mask_data = (unsigned char*)malloc( ((width >> 3)+8) * height ); | |
366 | ||
367 | mask_image = gdk_image_new_bitmap( visual, mask_data, width, height ); | |
368 | ||
369 | wxMask *mask = new wxMask(); | |
c2fa61e8 | 370 | mask->m_bitmap = gdk_pixmap_new( wxGetRootWindow()->window, width, height, 1 ); |
b5f01ae0 VS |
371 | |
372 | SetMask( mask ); | |
373 | } | |
374 | ||
375 | int r_mask = image.GetMaskRed(); | |
376 | int g_mask = image.GetMaskGreen(); | |
377 | int b_mask = image.GetMaskBlue(); | |
378 | ||
379 | unsigned char* data = image.GetData(); | |
380 | ||
381 | int index = 0; | |
382 | for (int y = 0; y < height; y++) | |
383 | { | |
384 | for (int x = 0; x < width; x++) | |
385 | { | |
386 | int r = data[index]; | |
387 | index++; | |
388 | int g = data[index]; | |
389 | index++; | |
390 | int b = data[index]; | |
391 | index++; | |
392 | ||
393 | if (image.HasMask()) | |
394 | { | |
395 | if ((r == r_mask) && (b == b_mask) && (g == g_mask)) | |
396 | gdk_image_put_pixel( mask_image, x, y, 1 ); | |
397 | else | |
398 | gdk_image_put_pixel( mask_image, x, y, 0 ); | |
399 | } | |
400 | ||
401 | if ((r == 255) && (b == 255) && (g == 255)) | |
402 | gdk_image_put_pixel( data_image, x, y, 1 ); | |
403 | else | |
404 | gdk_image_put_pixel( data_image, x, y, 0 ); | |
405 | ||
406 | } // for | |
407 | } // for | |
408 | ||
409 | // Blit picture | |
410 | ||
411 | GdkGC *data_gc = gdk_gc_new( GetBitmap() ); | |
412 | ||
413 | gdk_draw_image( GetBitmap(), data_gc, data_image, 0, 0, 0, 0, width, height ); | |
414 | ||
415 | gdk_image_destroy( data_image ); | |
416 | gdk_gc_unref( data_gc ); | |
417 | ||
418 | // Blit mask | |
419 | ||
420 | if (image.HasMask()) | |
421 | { | |
422 | GdkGC *mask_gc = gdk_gc_new( GetMask()->GetBitmap() ); | |
423 | ||
424 | gdk_draw_image( GetMask()->GetBitmap(), mask_gc, mask_image, 0, 0, 0, 0, width, height ); | |
425 | ||
426 | gdk_image_destroy( mask_image ); | |
427 | gdk_gc_unref( mask_gc ); | |
428 | } | |
429 | } | |
c2fa61e8 | 430 | |
b5f01ae0 VS |
431 | // ------ |
432 | // convertion to colour bitmap: | |
433 | // ------ | |
434 | else | |
435 | { | |
436 | int width = image.GetWidth(); | |
437 | int height = image.GetHeight(); | |
438 | ||
439 | SetHeight( height ); | |
440 | SetWidth( width ); | |
441 | ||
c2fa61e8 | 442 | SetPixmap( gdk_pixmap_new( wxGetRootWindow()->window, width, height, -1 ) ); |
b5f01ae0 | 443 | |
005f5d18 | 444 | GdkVisual *visual = wxTheApp->GetGdkVisual(); |
b5f01ae0 VS |
445 | |
446 | int bpp = visual->depth; | |
447 | ||
448 | SetDepth( bpp ); | |
449 | ||
450 | if ((bpp == 16) && (visual->red_mask != 0xf800)) bpp = 15; | |
451 | if (bpp < 8) bpp = 8; | |
452 | ||
8ab696e0 RR |
453 | // We handle 8-bit bitmaps ourselves using the colour cube, 12-bit |
454 | // visuals are not supported by GDK so we do these ourselves, too. | |
455 | // 15-bit and 16-bit should actually work and 24-bit certainly does. | |
456 | if (!image.HasMask() && (bpp > 12)) | |
b5f01ae0 VS |
457 | { |
458 | static bool s_hasInitialized = FALSE; | |
459 | ||
460 | if (!s_hasInitialized) | |
461 | { | |
462 | gdk_rgb_init(); | |
463 | s_hasInitialized = TRUE; | |
464 | } | |
465 | ||
466 | GdkGC *gc = gdk_gc_new( GetPixmap() ); | |
467 | ||
468 | gdk_draw_rgb_image( GetPixmap(), | |
469 | gc, | |
470 | 0, 0, | |
471 | width, height, | |
472 | GDK_RGB_DITHER_NONE, | |
473 | image.GetData(), | |
474 | width*3 ); | |
475 | ||
476 | gdk_gc_unref( gc ); | |
477 | return TRUE; | |
478 | } | |
479 | ||
b5f01ae0 VS |
480 | // Create picture image |
481 | ||
482 | GdkImage *data_image = | |
483 | gdk_image_new( GDK_IMAGE_FASTEST, visual, width, height ); | |
484 | ||
485 | // Create mask image | |
486 | ||
487 | GdkImage *mask_image = (GdkImage*) NULL; | |
488 | ||
489 | if (image.HasMask()) | |
490 | { | |
491 | unsigned char *mask_data = (unsigned char*)malloc( ((width >> 3)+8) * height ); | |
492 | ||
493 | mask_image = gdk_image_new_bitmap( visual, mask_data, width, height ); | |
494 | ||
495 | wxMask *mask = new wxMask(); | |
c2fa61e8 | 496 | mask->m_bitmap = gdk_pixmap_new( wxGetRootWindow()->window, width, height, 1 ); |
b5f01ae0 VS |
497 | |
498 | SetMask( mask ); | |
499 | } | |
500 | ||
501 | // Render | |
502 | ||
503 | enum byte_order { RGB, RBG, BRG, BGR, GRB, GBR }; | |
504 | byte_order b_o = RGB; | |
505 | ||
8ab696e0 | 506 | if (bpp > 8) |
b5f01ae0 VS |
507 | { |
508 | if ((visual->red_mask > visual->green_mask) && (visual->green_mask > visual->blue_mask)) b_o = RGB; | |
509 | else if ((visual->red_mask > visual->blue_mask) && (visual->blue_mask > visual->green_mask)) b_o = RGB; | |
510 | else if ((visual->blue_mask > visual->red_mask) && (visual->red_mask > visual->green_mask)) b_o = BRG; | |
511 | else if ((visual->blue_mask > visual->green_mask) && (visual->green_mask > visual->red_mask)) b_o = BGR; | |
512 | else if ((visual->green_mask > visual->red_mask) && (visual->red_mask > visual->blue_mask)) b_o = GRB; | |
513 | else if ((visual->green_mask > visual->blue_mask) && (visual->blue_mask > visual->red_mask)) b_o = GBR; | |
514 | } | |
515 | ||
516 | int r_mask = image.GetMaskRed(); | |
517 | int g_mask = image.GetMaskGreen(); | |
518 | int b_mask = image.GetMaskBlue(); | |
519 | ||
520 | unsigned char* data = image.GetData(); | |
521 | ||
522 | int index = 0; | |
523 | for (int y = 0; y < height; y++) | |
524 | { | |
525 | for (int x = 0; x < width; x++) | |
526 | { | |
527 | int r = data[index]; | |
528 | index++; | |
529 | int g = data[index]; | |
530 | index++; | |
531 | int b = data[index]; | |
532 | index++; | |
533 | ||
534 | if (image.HasMask()) | |
535 | { | |
536 | if ((r == r_mask) && (b == b_mask) && (g == g_mask)) | |
537 | gdk_image_put_pixel( mask_image, x, y, 1 ); | |
538 | else | |
539 | gdk_image_put_pixel( mask_image, x, y, 0 ); | |
540 | } | |
541 | ||
542 | switch (bpp) | |
543 | { | |
8ab696e0 | 544 | case 8: |
b5f01ae0 VS |
545 | { |
546 | int pixel = -1; | |
547 | if (wxTheApp->m_colorCube) | |
548 | { | |
549 | pixel = wxTheApp->m_colorCube[ ((r & 0xf8) << 7) + ((g & 0xf8) << 2) + ((b & 0xf8) >> 3) ]; | |
550 | } | |
551 | else | |
552 | { | |
553 | GdkColormap *cmap = gtk_widget_get_default_colormap(); | |
554 | GdkColor *colors = cmap->colors; | |
555 | int max = 3 * (65536); | |
8ab696e0 | 556 | |
b5f01ae0 VS |
557 | for (int i = 0; i < cmap->size; i++) |
558 | { | |
559 | int rdiff = (r << 8) - colors[i].red; | |
560 | int gdiff = (g << 8) - colors[i].green; | |
561 | int bdiff = (b << 8) - colors[i].blue; | |
562 | int sum = ABS (rdiff) + ABS (gdiff) + ABS (bdiff); | |
563 | if (sum < max) { pixel = i; max = sum; } | |
564 | } | |
565 | } | |
8ab696e0 | 566 | |
b5f01ae0 | 567 | gdk_image_put_pixel( data_image, x, y, pixel ); |
8ab696e0 | 568 | |
b5f01ae0 VS |
569 | break; |
570 | } | |
8ab696e0 | 571 | case 12: // SGI only |
b5f01ae0 | 572 | { |
8ab696e0 RR |
573 | guint32 pixel = 0; |
574 | switch (b_o) | |
575 | { | |
576 | case RGB: pixel = ((r & 0xf0) << 4) | (g & 0xf0) | ((b & 0xf0) >> 4); break; | |
577 | case RBG: pixel = ((r & 0xf0) << 4) | (b & 0xf0) | ((g & 0xf0) >> 4); break; | |
578 | case GRB: pixel = ((g & 0xf0) << 4) | (r & 0xf0) | ((b & 0xf0) >> 4); break; | |
579 | case GBR: pixel = ((g & 0xf0) << 4) | (b & 0xf0) | ((r & 0xf0) >> 4); break; | |
580 | case BRG: pixel = ((b & 0xf0) << 4) | (r & 0xf0) | ((g & 0xf0) >> 4); break; | |
581 | case BGR: pixel = ((b & 0xf0) << 4) | (g & 0xf0) | ((r & 0xf0) >> 4); break; | |
582 | } | |
b5f01ae0 VS |
583 | gdk_image_put_pixel( data_image, x, y, pixel ); |
584 | break; | |
585 | } | |
8ab696e0 | 586 | case 15: |
b5f01ae0 | 587 | { |
8ab696e0 RR |
588 | guint32 pixel = 0; |
589 | switch (b_o) | |
590 | { | |
591 | case RGB: pixel = ((r & 0xf8) << 7) | ((g & 0xf8) << 2) | ((b & 0xf8) >> 3); break; | |
592 | case RBG: pixel = ((r & 0xf8) << 7) | ((b & 0xf8) << 2) | ((g & 0xf8) >> 3); break; | |
593 | case GRB: pixel = ((g & 0xf8) << 7) | ((r & 0xf8) << 2) | ((b & 0xf8) >> 3); break; | |
594 | case GBR: pixel = ((g & 0xf8) << 7) | ((b & 0xf8) << 2) | ((r & 0xf8) >> 3); break; | |
595 | case BRG: pixel = ((b & 0xf8) << 7) | ((r & 0xf8) << 2) | ((g & 0xf8) >> 3); break; | |
596 | case BGR: pixel = ((b & 0xf8) << 7) | ((g & 0xf8) << 2) | ((r & 0xf8) >> 3); break; | |
597 | } | |
b5f01ae0 VS |
598 | gdk_image_put_pixel( data_image, x, y, pixel ); |
599 | break; | |
600 | } | |
8ab696e0 | 601 | case 16: |
b5f01ae0 | 602 | { |
8ab696e0 RR |
603 | // I actually don't know if for 16-bit displays, it is alway the green |
604 | // component or the second component which has 6 bits. | |
b5f01ae0 VS |
605 | guint32 pixel = 0; |
606 | switch (b_o) | |
607 | { | |
005f5d18 RR |
608 | case RGB: pixel = ((r & 0xf8) << 8) | ((g & 0xfc) << 3) | ((b & 0xf8) >> 3); break; |
609 | case RBG: pixel = ((r & 0xf8) << 8) | ((b & 0xfc) << 3) | ((g & 0xf8) >> 3); break; | |
610 | case GRB: pixel = ((g & 0xf8) << 8) | ((r & 0xfc) << 3) | ((b & 0xf8) >> 3); break; | |
611 | case GBR: pixel = ((g & 0xf8) << 8) | ((b & 0xfc) << 3) | ((r & 0xf8) >> 3); break; | |
612 | case BRG: pixel = ((b & 0xf8) << 8) | ((r & 0xfc) << 3) | ((g & 0xf8) >> 3); break; | |
613 | case BGR: pixel = ((b & 0xf8) << 8) | ((g & 0xfc) << 3) | ((r & 0xf8) >> 3); break; | |
8ab696e0 RR |
614 | } |
615 | gdk_image_put_pixel( data_image, x, y, pixel ); | |
616 | break; | |
617 | } | |
618 | case 32: | |
619 | case 24: | |
620 | { | |
621 | guint32 pixel = 0; | |
622 | switch (b_o) | |
623 | { | |
624 | case RGB: pixel = (r << 16) | (g << 8) | b; break; | |
625 | case RBG: pixel = (r << 16) | (b << 8) | g; break; | |
626 | case BRG: pixel = (b << 16) | (r << 8) | g; break; | |
627 | case BGR: pixel = (b << 16) | (g << 8) | r; break; | |
628 | case GRB: pixel = (g << 16) | (r << 8) | b; break; | |
629 | case GBR: pixel = (g << 16) | (b << 8) | r; break; | |
b5f01ae0 VS |
630 | } |
631 | gdk_image_put_pixel( data_image, x, y, pixel ); | |
632 | } | |
8ab696e0 | 633 | default: break; |
b5f01ae0 VS |
634 | } |
635 | } // for | |
636 | } // for | |
637 | ||
638 | // Blit picture | |
639 | ||
640 | GdkGC *data_gc = gdk_gc_new( GetPixmap() ); | |
641 | ||
642 | gdk_draw_image( GetPixmap(), data_gc, data_image, 0, 0, 0, 0, width, height ); | |
643 | ||
644 | gdk_image_destroy( data_image ); | |
645 | gdk_gc_unref( data_gc ); | |
646 | ||
647 | // Blit mask | |
648 | ||
649 | if (image.HasMask()) | |
650 | { | |
651 | GdkGC *mask_gc = gdk_gc_new( GetMask()->GetBitmap() ); | |
652 | ||
653 | gdk_draw_image( GetMask()->GetBitmap(), mask_gc, mask_image, 0, 0, 0, 0, width, height ); | |
654 | ||
655 | gdk_image_destroy( mask_image ); | |
656 | gdk_gc_unref( mask_gc ); | |
657 | } | |
658 | } | |
659 | ||
660 | return TRUE; | |
661 | } | |
662 | ||
663 | wxImage wxBitmap::ConvertToImage() const | |
664 | { | |
665 | wxImage image; | |
c2fa61e8 | 666 | |
b5f01ae0 VS |
667 | wxCHECK_MSG( Ok(), wxNullImage, wxT("invalid bitmap") ); |
668 | ||
669 | GdkImage *gdk_image = (GdkImage*) NULL; | |
670 | if (GetPixmap()) | |
671 | { | |
672 | gdk_image = gdk_image_get( GetPixmap(), | |
673 | 0, 0, | |
674 | GetWidth(), GetHeight() ); | |
675 | } else | |
676 | if (GetBitmap()) | |
677 | { | |
678 | gdk_image = gdk_image_get( GetBitmap(), | |
679 | 0, 0, | |
680 | GetWidth(), GetHeight() ); | |
681 | } else | |
682 | { | |
683 | wxFAIL_MSG( wxT("Ill-formed bitmap") ); | |
684 | } | |
685 | ||
686 | wxCHECK_MSG( gdk_image, wxNullImage, wxT("couldn't create image") ); | |
c2fa61e8 | 687 | |
b5f01ae0 VS |
688 | image.Create( GetWidth(), GetHeight() ); |
689 | char unsigned *data = image.GetData(); | |
690 | ||
691 | if (!data) | |
692 | { | |
693 | gdk_image_destroy( gdk_image ); | |
694 | wxFAIL_MSG( wxT("couldn't create image") ); | |
695 | return wxNullImage; | |
696 | } | |
697 | ||
698 | GdkImage *gdk_image_mask = (GdkImage*) NULL; | |
699 | if (GetMask()) | |
700 | { | |
701 | gdk_image_mask = gdk_image_get( GetMask()->GetBitmap(), | |
702 | 0, 0, | |
703 | GetWidth(), GetHeight() ); | |
704 | ||
705 | image.SetMaskColour( 16, 16, 16 ); // anything unlikely and dividable | |
706 | } | |
707 | ||
708 | int bpp = -1; | |
709 | int red_shift_right = 0; | |
710 | int green_shift_right = 0; | |
711 | int blue_shift_right = 0; | |
712 | int red_shift_left = 0; | |
713 | int green_shift_left = 0; | |
714 | int blue_shift_left = 0; | |
715 | bool use_shift = FALSE; | |
716 | ||
717 | if (GetPixmap()) | |
718 | { | |
719 | GdkVisual *visual = gdk_window_get_visual( GetPixmap() ); | |
005f5d18 RR |
720 | if (visual == NULL) |
721 | visual = wxTheApp->GetGdkVisual(); | |
722 | ||
b5f01ae0 VS |
723 | bpp = visual->depth; |
724 | if (bpp == 16) bpp = visual->red_prec + visual->green_prec + visual->blue_prec; | |
725 | red_shift_right = visual->red_shift; | |
726 | red_shift_left = 8-visual->red_prec; | |
727 | green_shift_right = visual->green_shift; | |
728 | green_shift_left = 8-visual->green_prec; | |
729 | blue_shift_right = visual->blue_shift; | |
730 | blue_shift_left = 8-visual->blue_prec; | |
731 | ||
732 | use_shift = (visual->type == GDK_VISUAL_TRUE_COLOR) || (visual->type == GDK_VISUAL_DIRECT_COLOR); | |
733 | } | |
734 | if (GetBitmap()) | |
735 | { | |
736 | bpp = 1; | |
737 | } | |
738 | ||
739 | ||
740 | GdkColormap *cmap = gtk_widget_get_default_colormap(); | |
741 | ||
742 | long pos = 0; | |
743 | for (int j = 0; j < GetHeight(); j++) | |
744 | { | |
745 | for (int i = 0; i < GetWidth(); i++) | |
746 | { | |
747 | wxUint32 pixel = gdk_image_get_pixel( gdk_image, i, j ); | |
8ab696e0 RR |
748 | if (bpp == 1) |
749 | { | |
750 | if (pixel == 0) | |
b5f01ae0 | 751 | { |
b5f01ae0 VS |
752 | data[pos] = 0; |
753 | data[pos+1] = 0; | |
754 | data[pos+2] = 0; | |
8ab696e0 RR |
755 | } |
756 | else | |
757 | { | |
b5f01ae0 VS |
758 | data[pos] = 255; |
759 | data[pos+1] = 255; | |
760 | data[pos+2] = 255; | |
8ab696e0 | 761 | } |
b5f01ae0 VS |
762 | } |
763 | else if (use_shift) | |
764 | { | |
765 | data[pos] = (pixel >> red_shift_right) << red_shift_left; | |
766 | data[pos+1] = (pixel >> green_shift_right) << green_shift_left; | |
767 | data[pos+2] = (pixel >> blue_shift_right) << blue_shift_left; | |
8ab696e0 | 768 | } |
b5f01ae0 VS |
769 | else if (cmap->colors) |
770 | { | |
771 | data[pos] = cmap->colors[pixel].red >> 8; | |
772 | data[pos+1] = cmap->colors[pixel].green >> 8; | |
773 | data[pos+2] = cmap->colors[pixel].blue >> 8; | |
774 | } | |
775 | else | |
776 | { | |
777 | wxFAIL_MSG( wxT("Image conversion failed. Unknown visual type.") ); | |
778 | } | |
779 | ||
780 | if (gdk_image_mask) | |
781 | { | |
782 | int mask_pixel = gdk_image_get_pixel( gdk_image_mask, i, j ); | |
783 | if (mask_pixel == 0) | |
784 | { | |
785 | data[pos] = 16; | |
786 | data[pos+1] = 16; | |
787 | data[pos+2] = 16; | |
788 | } | |
789 | } | |
790 | ||
791 | pos += 3; | |
792 | } | |
793 | } | |
794 | ||
795 | gdk_image_destroy( gdk_image ); | |
c2fa61e8 | 796 | if (gdk_image_mask) gdk_image_destroy( gdk_image_mask ); |
b5f01ae0 VS |
797 | |
798 | return image; | |
799 | } | |
800 | ||
c801d85f KB |
801 | wxBitmap::wxBitmap( const wxBitmap& bmp ) |
802 | { | |
fd0eed64 | 803 | Ref( bmp ); |
ff7b1510 | 804 | } |
6f65e337 | 805 | |
debe6624 | 806 | wxBitmap::wxBitmap( const wxString &filename, int type ) |
c801d85f | 807 | { |
fd0eed64 | 808 | LoadFile( filename, type ); |
ff7b1510 | 809 | } |
c801d85f | 810 | |
debe6624 | 811 | wxBitmap::wxBitmap( const char bits[], int width, int height, int WXUNUSED(depth)) |
6f65e337 | 812 | { |
fd0eed64 | 813 | m_refData = new wxBitmapRefData(); |
6f65e337 | 814 | |
fd0eed64 | 815 | M_BMPDATA->m_mask = (wxMask *) NULL; |
8bbe427f | 816 | M_BMPDATA->m_bitmap = |
c2fa61e8 | 817 | gdk_bitmap_create_from_data( wxGetRootWindow()->window, (gchar *) bits, width, height ); |
fd0eed64 RR |
818 | M_BMPDATA->m_width = width; |
819 | M_BMPDATA->m_height = height; | |
820 | M_BMPDATA->m_bpp = 1; | |
6f65e337 | 821 | |
223d09f6 | 822 | wxCHECK_RET( M_BMPDATA->m_bitmap, wxT("couldn't create bitmap") ); |
6f65e337 | 823 | } |
8bbe427f VZ |
824 | |
825 | wxBitmap::~wxBitmap() | |
c801d85f | 826 | { |
ff7b1510 | 827 | } |
8bbe427f | 828 | |
c801d85f KB |
829 | wxBitmap& wxBitmap::operator = ( const wxBitmap& bmp ) |
830 | { | |
7ecb8b06 VZ |
831 | if ( m_refData != bmp.m_refData ) |
832 | Ref( bmp ); | |
833 | ||
8bbe427f | 834 | return *this; |
ff7b1510 | 835 | } |
8bbe427f | 836 | |
f6bcfd97 | 837 | bool wxBitmap::operator == ( const wxBitmap& bmp ) const |
c801d85f | 838 | { |
8bbe427f | 839 | return m_refData == bmp.m_refData; |
ff7b1510 | 840 | } |
8bbe427f | 841 | |
f6bcfd97 | 842 | bool wxBitmap::operator != ( const wxBitmap& bmp ) const |
c801d85f | 843 | { |
8bbe427f | 844 | return m_refData != bmp.m_refData; |
ff7b1510 | 845 | } |
8bbe427f | 846 | |
91b8de8d | 847 | bool wxBitmap::Ok() const |
c801d85f | 848 | { |
fd0eed64 | 849 | return (m_refData != NULL); |
ff7b1510 | 850 | } |
8bbe427f | 851 | |
91b8de8d | 852 | int wxBitmap::GetHeight() const |
c801d85f | 853 | { |
223d09f6 | 854 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); |
e55ad60e | 855 | |
fd0eed64 | 856 | return M_BMPDATA->m_height; |
ff7b1510 | 857 | } |
c801d85f | 858 | |
91b8de8d | 859 | int wxBitmap::GetWidth() const |
c801d85f | 860 | { |
223d09f6 | 861 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); |
8bbe427f | 862 | |
fd0eed64 | 863 | return M_BMPDATA->m_width; |
ff7b1510 | 864 | } |
c801d85f | 865 | |
91b8de8d | 866 | int wxBitmap::GetDepth() const |
c801d85f | 867 | { |
223d09f6 | 868 | wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") ); |
8bbe427f | 869 | |
fd0eed64 | 870 | return M_BMPDATA->m_bpp; |
ff7b1510 | 871 | } |
c801d85f | 872 | |
91b8de8d | 873 | wxMask *wxBitmap::GetMask() const |
c801d85f | 874 | { |
223d09f6 | 875 | wxCHECK_MSG( Ok(), (wxMask *) NULL, wxT("invalid bitmap") ); |
8bbe427f | 876 | |
fd0eed64 | 877 | return M_BMPDATA->m_mask; |
ff7b1510 | 878 | } |
c801d85f KB |
879 | |
880 | void wxBitmap::SetMask( wxMask *mask ) | |
881 | { | |
223d09f6 | 882 | wxCHECK_RET( Ok(), wxT("invalid bitmap") ); |
8bbe427f | 883 | |
fd0eed64 | 884 | if (M_BMPDATA->m_mask) delete M_BMPDATA->m_mask; |
8bbe427f | 885 | |
fd0eed64 | 886 | M_BMPDATA->m_mask = mask; |
ff7b1510 | 887 | } |
c801d85f | 888 | |
db0aec83 VS |
889 | bool wxBitmap::CopyFromIcon(const wxIcon& icon) |
890 | { | |
891 | *this = icon; | |
892 | return TRUE; | |
893 | } | |
894 | ||
17bec151 RR |
895 | wxBitmap wxBitmap::GetSubBitmap( const wxRect& rect) const |
896 | { | |
897 | wxCHECK_MSG( Ok() && | |
13111b2a VZ |
898 | (rect.x >= 0) && (rect.y >= 0) && |
899 | (rect.x+rect.width <= M_BMPDATA->m_width) && (rect.y+rect.height <= M_BMPDATA->m_height), | |
17bec151 | 900 | wxNullBitmap, wxT("invalid bitmap or bitmap region") ); |
13111b2a | 901 | |
17bec151 RR |
902 | wxBitmap ret( rect.width, rect.height, M_BMPDATA->m_bpp ); |
903 | wxASSERT_MSG( ret.Ok(), wxT("GetSubBitmap error") ); | |
13111b2a | 904 | |
17bec151 RR |
905 | if (ret.GetPixmap()) |
906 | { | |
907 | GdkGC *gc = gdk_gc_new( ret.GetPixmap() ); | |
13111b2a VZ |
908 | gdk_draw_pixmap( ret.GetPixmap(), gc, GetPixmap(), rect.x, rect.y, 0, 0, rect.width, rect.height ); |
909 | gdk_gc_destroy( gc ); | |
17bec151 RR |
910 | } |
911 | else | |
912 | { | |
913 | GdkGC *gc = gdk_gc_new( ret.GetBitmap() ); | |
f6bcfd97 | 914 | gdk_wx_draw_bitmap( ret.GetBitmap(), gc, GetBitmap(), rect.x, rect.y, 0, 0, rect.width, rect.height ); |
13111b2a | 915 | gdk_gc_destroy( gc ); |
17bec151 | 916 | } |
13111b2a | 917 | |
17bec151 RR |
918 | if (GetMask()) |
919 | { | |
920 | wxMask *mask = new wxMask; | |
c2fa61e8 | 921 | mask->m_bitmap = gdk_pixmap_new( wxGetRootWindow()->window, rect.width, rect.height, 1 ); |
13111b2a | 922 | |
17bec151 | 923 | GdkGC *gc = gdk_gc_new( mask->m_bitmap ); |
f6bcfd97 | 924 | gdk_wx_draw_bitmap( mask->m_bitmap, gc, M_BMPDATA->m_mask->m_bitmap, 0, 0, rect.x, rect.y, rect.width, rect.height ); |
13111b2a VZ |
925 | gdk_gc_destroy( gc ); |
926 | ||
927 | ret.SetMask( mask ); | |
17bec151 | 928 | } |
13111b2a | 929 | |
17bec151 RR |
930 | return ret; |
931 | } | |
932 | ||
fd0eed64 | 933 | bool wxBitmap::SaveFile( const wxString &name, int type, wxPalette *WXUNUSED(palette) ) |
c801d85f | 934 | { |
223d09f6 | 935 | wxCHECK_MSG( Ok(), FALSE, wxT("invalid bitmap") ); |
8bbe427f | 936 | |
b75dd496 | 937 | // Try to save the bitmap via wxImage handlers: |
fd0eed64 | 938 | { |
4bc67cc5 | 939 | wxImage image( *this ); |
284b4c88 | 940 | if (image.Ok()) return image.SaveFile( name, type ); |
fd0eed64 | 941 | } |
8bbe427f | 942 | |
fd0eed64 | 943 | return FALSE; |
ff7b1510 | 944 | } |
c801d85f | 945 | |
fd0eed64 | 946 | bool wxBitmap::LoadFile( const wxString &name, int type ) |
c801d85f | 947 | { |
fd0eed64 | 948 | UnRef(); |
8bbe427f | 949 | |
fd0eed64 | 950 | if (!wxFileExists(name)) return FALSE; |
8bbe427f | 951 | |
005f5d18 | 952 | GdkVisual *visual = wxTheApp->GetGdkVisual(); |
c2fa61e8 | 953 | |
fd0eed64 RR |
954 | if (type == wxBITMAP_TYPE_XPM) |
955 | { | |
956 | m_refData = new wxBitmapRefData(); | |
8bbe427f | 957 | |
fd0eed64 | 958 | GdkBitmap *mask = (GdkBitmap*) NULL; |
8bbe427f | 959 | |
c2fa61e8 | 960 | M_BMPDATA->m_pixmap = gdk_pixmap_create_from_xpm( wxGetRootWindow()->window, &mask, NULL, name.fn_str() ); |
8bbe427f | 961 | |
fd0eed64 RR |
962 | if (mask) |
963 | { | |
964 | M_BMPDATA->m_mask = new wxMask(); | |
965 | M_BMPDATA->m_mask->m_bitmap = mask; | |
966 | } | |
8bbe427f | 967 | |
fd0eed64 | 968 | gdk_window_get_size( M_BMPDATA->m_pixmap, &(M_BMPDATA->m_width), &(M_BMPDATA->m_height) ); |
c2fa61e8 | 969 | |
103aab26 | 970 | M_BMPDATA->m_bpp = visual->depth; |
fd0eed64 | 971 | } |
b75dd496 | 972 | else // try if wxImage can load it |
fd0eed64 RR |
973 | { |
974 | wxImage image; | |
b75dd496 | 975 | if (!image.LoadFile( name, type )) return FALSE; |
4bc67cc5 | 976 | if (image.Ok()) *this = image.ConvertToBitmap(); |
b75dd496 | 977 | else return FALSE; |
fd0eed64 | 978 | } |
8bbe427f | 979 | |
fd0eed64 | 980 | return TRUE; |
ff7b1510 | 981 | } |
8bbe427f | 982 | |
91b8de8d | 983 | wxPalette *wxBitmap::GetPalette() const |
c801d85f | 984 | { |
fd0eed64 | 985 | if (!Ok()) return (wxPalette *) NULL; |
8bbe427f | 986 | |
fd0eed64 | 987 | return M_BMPDATA->m_palette; |
ff7b1510 | 988 | } |
c801d85f | 989 | |
4bc67cc5 RR |
990 | void wxBitmap::SetHeight( int height ) |
991 | { | |
992 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
993 | ||
994 | M_BMPDATA->m_height = height; | |
995 | } | |
996 | ||
997 | void wxBitmap::SetWidth( int width ) | |
998 | { | |
999 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
1000 | ||
1001 | M_BMPDATA->m_width = width; | |
1002 | } | |
1003 | ||
1004 | void wxBitmap::SetDepth( int depth ) | |
1005 | { | |
1006 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
1007 | ||
1008 | M_BMPDATA->m_bpp = depth; | |
1009 | } | |
1010 | ||
1011 | void wxBitmap::SetPixmap( GdkPixmap *pixmap ) | |
1012 | { | |
1013 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
1014 | ||
1015 | M_BMPDATA->m_pixmap = pixmap; | |
1016 | } | |
1017 | ||
82ea63e6 RR |
1018 | void wxBitmap::SetBitmap( GdkPixmap *bitmap ) |
1019 | { | |
1020 | if (!m_refData) m_refData = new wxBitmapRefData(); | |
1021 | ||
1022 | M_BMPDATA->m_bitmap = bitmap; | |
1023 | } | |
1024 | ||
91b8de8d | 1025 | GdkPixmap *wxBitmap::GetPixmap() const |
c801d85f | 1026 | { |
223d09f6 | 1027 | wxCHECK_MSG( Ok(), (GdkPixmap *) NULL, wxT("invalid bitmap") ); |
8bbe427f | 1028 | |
fd0eed64 | 1029 | return M_BMPDATA->m_pixmap; |
ff7b1510 | 1030 | } |
8bbe427f | 1031 | |
91b8de8d | 1032 | GdkBitmap *wxBitmap::GetBitmap() const |
6f65e337 | 1033 | { |
223d09f6 | 1034 | wxCHECK_MSG( Ok(), (GdkBitmap *) NULL, wxT("invalid bitmap") ); |
8bbe427f | 1035 | |
fd0eed64 | 1036 | return M_BMPDATA->m_bitmap; |
ff7b1510 | 1037 | } |