1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "bitmap.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
19 #include "wx/palette.h"
20 #include "wx/bitmap.h"
22 #include "wx/filefn.h"
24 #include "wx/dcmemory.h"
28 // need this to get gdk_image_new_bitmap()
29 #define GDK_ENABLE_BROKEN
37 #include <gdk/gdkimage.h>
39 #include <gdk/gdkrgb.h>
40 #endif // GTK+ 2.0/1.2
44 extern void gdk_wx_draw_bitmap (GdkDrawable
*drawable
,
54 //-----------------------------------------------------------------------------
56 //-----------------------------------------------------------------------------
58 extern GtkWidget
*wxGetRootWindow();
60 //-----------------------------------------------------------------------------
62 //-----------------------------------------------------------------------------
64 IMPLEMENT_DYNAMIC_CLASS(wxMask
,wxObject
)
68 m_bitmap
= (GdkBitmap
*) NULL
;
71 wxMask::wxMask( const wxBitmap
& bitmap
, const wxColour
& colour
)
73 m_bitmap
= (GdkBitmap
*) NULL
;
74 Create( bitmap
, colour
);
77 wxMask::wxMask( const wxBitmap
& bitmap
, int paletteIndex
)
79 m_bitmap
= (GdkBitmap
*) NULL
;
80 Create( bitmap
, paletteIndex
);
83 wxMask::wxMask( const wxBitmap
& bitmap
)
85 m_bitmap
= (GdkBitmap
*) NULL
;
92 gdk_bitmap_unref( m_bitmap
);
95 bool wxMask::Create( const wxBitmap
& bitmap
,
96 const wxColour
& colour
)
100 gdk_bitmap_unref( m_bitmap
);
101 m_bitmap
= (GdkBitmap
*) NULL
;
104 wxImage image
= bitmap
.ConvertToImage();
105 if (!image
.Ok()) return FALSE
;
107 m_bitmap
= gdk_pixmap_new( wxGetRootWindow()->window
, image
.GetWidth(), image
.GetHeight(), 1 );
108 GdkGC
*gc
= gdk_gc_new( m_bitmap
);
115 gdk_gc_set_foreground( gc
, &color
);
116 gdk_gc_set_fill( gc
, GDK_SOLID
);
117 gdk_draw_rectangle( m_bitmap
, gc
, TRUE
, 0, 0, image
.GetWidth(), image
.GetHeight() );
119 unsigned char *data
= image
.GetData();
122 unsigned char red
= colour
.Red();
123 unsigned char green
= colour
.Green();
124 unsigned char blue
= colour
.Blue();
126 GdkVisual
*visual
= wxTheApp
->GetGdkVisual();
128 int bpp
= visual
->depth
;
129 if ((bpp
== 16) && (visual
->red_mask
!= 0xf800))
134 green
= green
& 0xf8;
140 green
= green
& 0xfc;
146 green
= green
& 0xf0;
154 gdk_gc_set_foreground( gc
, &color
);
156 for (int j
= 0; j
< image
.GetHeight(); j
++)
160 for (i
= 0; i
< image
.GetWidth(); i
++)
162 if ((data
[index
] == red
) &&
163 (data
[index
+1] == green
) &&
164 (data
[index
+2] == blue
))
173 gdk_draw_line( m_bitmap
, gc
, start_x
, j
, i
-1, j
);
180 gdk_draw_line( m_bitmap
, gc
, start_x
, j
, i
, j
);
188 bool wxMask::Create( const wxBitmap
& bitmap
, int paletteIndex
)
191 wxPalette
*pal
= bitmap
.GetPalette();
193 wxCHECK_MSG( pal
, FALSE
, wxT("Cannot create mask from bitmap without palette") );
195 pal
->GetRGB(paletteIndex
, &r
, &g
, &b
);
197 return Create(bitmap
, wxColour(r
, g
, b
));
200 bool wxMask::Create( const wxBitmap
& bitmap
)
204 gdk_bitmap_unref( m_bitmap
);
205 m_bitmap
= (GdkBitmap
*) NULL
;
208 if (!bitmap
.Ok()) return FALSE
;
210 wxCHECK_MSG( bitmap
.GetBitmap(), FALSE
, wxT("Cannot create mask from colour bitmap") );
212 m_bitmap
= gdk_pixmap_new( wxGetRootWindow()->window
, bitmap
.GetWidth(), bitmap
.GetHeight(), 1 );
214 if (!m_bitmap
) return FALSE
;
216 GdkGC
*gc
= gdk_gc_new( m_bitmap
);
218 gdk_wx_draw_bitmap( m_bitmap
, gc
, bitmap
.GetBitmap(), 0, 0, 0, 0, bitmap
.GetWidth(), bitmap
.GetHeight() );
225 GdkBitmap
*wxMask::GetBitmap() const
230 //-----------------------------------------------------------------------------
232 //-----------------------------------------------------------------------------
234 class wxBitmapRefData
: public wxObjectRefData
246 wxPalette
*m_palette
;
249 wxBitmapRefData::wxBitmapRefData()
251 m_pixmap
= (GdkPixmap
*) NULL
;
252 m_bitmap
= (GdkBitmap
*) NULL
;
253 m_mask
= (wxMask
*) NULL
;
257 m_palette
= (wxPalette
*) NULL
;
260 wxBitmapRefData::~wxBitmapRefData()
263 gdk_pixmap_unref( m_pixmap
);
265 gdk_bitmap_unref( m_bitmap
);
270 //-----------------------------------------------------------------------------
272 #define M_BMPDATA ((wxBitmapRefData *)m_refData)
274 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
,wxGDIObject
)
280 wxBitmap::wxBitmap( int width
, int height
, int depth
)
282 Create( width
, height
, depth
);
285 bool wxBitmap::Create( int width
, int height
, int depth
)
289 if ( width
<= 0 || height
<= 0 )
294 GdkVisual
*visual
= wxTheApp
->GetGdkVisual();
297 depth
= visual
->depth
;
299 wxCHECK_MSG( (depth
== visual
->depth
) || (depth
== 1), FALSE
,
300 wxT("invalid bitmap depth") )
302 m_refData
= new wxBitmapRefData();
303 M_BMPDATA
->m_mask
= (wxMask
*) NULL
;
304 M_BMPDATA
->m_width
= width
;
305 M_BMPDATA
->m_height
= height
;
308 M_BMPDATA
->m_bitmap
= gdk_pixmap_new( wxGetRootWindow()->window
, width
, height
, 1 );
309 M_BMPDATA
->m_bpp
= 1;
313 M_BMPDATA
->m_pixmap
= gdk_pixmap_new( wxGetRootWindow()->window
, width
, height
, depth
);
314 M_BMPDATA
->m_bpp
= visual
->depth
;
320 bool wxBitmap::CreateFromXpm( const char **bits
)
324 wxCHECK_MSG( bits
!= NULL
, FALSE
, wxT("invalid bitmap data") )
326 GdkVisual
*visual
= wxTheApp
->GetGdkVisual();
328 m_refData
= new wxBitmapRefData();
330 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
332 M_BMPDATA
->m_pixmap
= gdk_pixmap_create_from_xpm_d( wxGetRootWindow()->window
, &mask
, NULL
, (gchar
**) bits
);
334 wxCHECK_MSG( M_BMPDATA
->m_pixmap
, FALSE
, wxT("couldn't create pixmap") );
338 M_BMPDATA
->m_mask
= new wxMask();
339 M_BMPDATA
->m_mask
->m_bitmap
= mask
;
342 gdk_window_get_size( M_BMPDATA
->m_pixmap
, &(M_BMPDATA
->m_width
), &(M_BMPDATA
->m_height
) );
344 M_BMPDATA
->m_bpp
= visual
->depth
; // Can we get a different depth from create_from_xpm_d() ?
349 wxBitmap
wxBitmap::Rescale( int clipx
, int clipy
, int clipwidth
, int clipheight
, int newx
, int newy
)
351 wxCHECK_MSG( Ok(), wxNullBitmap
, wxT("invalid bitmap") );
353 if (newy
==M_BMPDATA
->m_width
&& newy
==M_BMPDATA
->m_height
)
356 GdkImage
*img
= (GdkImage
*) NULL
;
358 img
= gdk_image_get( GetPixmap(), 0, 0, GetWidth(), GetHeight() );
359 else if (GetBitmap())
360 img
= gdk_image_get( GetBitmap(), 0, 0, GetWidth(), GetHeight() );
362 wxFAIL_MSG( wxT("Ill-formed bitmap") );
364 wxCHECK_MSG( img
, wxNullBitmap
, wxT("couldn't create image") );
369 int width
= wxMax(newx
, 1);
370 int height
= wxMax(newy
, 1);
371 width
= wxMin(width
, clipwidth
);
372 height
= wxMin(height
, clipheight
);
375 GdkPixmap
*dstpix
= NULL
;
378 GdkVisual
*visual
= gdk_window_get_visual( GetPixmap() );
380 visual
= wxTheApp
->GetGdkVisual();
383 bmp
= wxBitmap(width
,height
,bpp
);
384 dstpix
= bmp
.GetPixmap();
385 gc
= gdk_gc_new( dstpix
);
389 long dstbyteperline
= 0;
394 dstbyteperline
= width
/8*M_BMPDATA
->m_bpp
;
395 if (width
*M_BMPDATA
->m_bpp
% 8 != 0)
397 dst
= (char*) malloc(dstbyteperline
*height
);
400 // be careful to use the right scaling factor
401 float scx
= (float)M_BMPDATA
->m_width
/(float)newx
;
402 float scy
= (float)M_BMPDATA
->m_height
/(float)newy
;
403 // prepare accel-tables
404 int *tablex
= (int *)calloc(width
,sizeof(int));
405 int *tabley
= (int *)calloc(height
,sizeof(int));
407 // accel table filled with clipped values
408 for (int x
= 0; x
< width
; x
++)
409 tablex
[x
] = (int) (scx
* (x
+clipx
));
410 for (int y
= 0; y
< height
; y
++)
411 tabley
[y
] = (int) (scy
* (y
+clipy
));
413 // Main rescaling routine starts here
414 for (int h
= 0; h
< height
; h
++)
418 guint32 old_pixval
= 0;
420 for (int w
= 0; w
< width
; w
++)
428 pixval
= gdk_image_get_pixel( img
, x
, tabley
[h
] );
438 char shift
= bit
<< w
% 8;
444 dst
[h
*dstbyteperline
+w
/8] = outbyte
;
452 gdk_gc_set_foreground( gc
, &col
);
453 gdk_draw_point( dstpix
, gc
, w
, h
);
457 // do not forget the last byte
458 if ((bpp
== 1) && (width
% 8 != 0))
459 dst
[h
*dstbyteperline
+width
/8] = outbyte
;
462 gdk_image_destroy( img
);
463 if (gc
) gdk_gc_unref( gc
);
467 bmp
= wxBitmap( (const char *)dst
, width
, height
, 1 );
473 dstbyteperline
= width
/8;
476 dst
= (char*) malloc(dstbyteperline
*height
);
477 img
= gdk_image_get( GetMask()->GetBitmap(), 0, 0, GetWidth(), GetHeight() );
479 for (int h
= 0; h
< height
; h
++)
483 guint32 old_pixval
= 0;
485 for (int w
= 0; w
< width
; w
++)
493 pixval
= gdk_image_get_pixel( img
, x
, tabley
[h
] );
501 char shift
= bit
<< w
% 8;
507 dst
[h
*dstbyteperline
+w
/8] = outbyte
;
512 // do not forget the last byte
514 dst
[h
*dstbyteperline
+width
/8] = outbyte
;
516 wxMask
* mask
= new wxMask
;
517 mask
->m_bitmap
= gdk_bitmap_create_from_data( wxGetRootWindow()->window
, (gchar
*) dst
, width
, height
);
521 gdk_image_destroy( img
);
530 bool wxBitmap::CreateFromImage( const wxImage
& image
, int depth
)
534 wxCHECK_MSG( image
.Ok(), FALSE
, wxT("invalid image") )
535 wxCHECK_MSG( depth
== -1 || depth
== 1, FALSE
, wxT("invalid bitmap depth") )
537 int width
= image
.GetWidth();
538 int height
= image
.GetHeight();
540 if ( width
<= 0 || height
<= 0 )
545 m_refData
= new wxBitmapRefData();
551 // conversion to mono bitmap:
555 SetBitmap( gdk_pixmap_new( wxGetRootWindow()->window
, width
, height
, 1 ) );
559 GdkVisual
*visual
= wxTheApp
->GetGdkVisual();
561 // Create picture image
563 unsigned char *data_data
= (unsigned char*)malloc( ((width
>> 3)+8) * height
);
565 GdkImage
*data_image
=
566 gdk_image_new_bitmap( visual
, data_data
, width
, height
);
570 GdkImage
*mask_image
= (GdkImage
*) NULL
;
574 unsigned char *mask_data
= (unsigned char*)malloc( ((width
>> 3)+8) * height
);
576 mask_image
= gdk_image_new_bitmap( visual
, mask_data
, width
, height
);
578 wxMask
*mask
= new wxMask();
579 mask
->m_bitmap
= gdk_pixmap_new( wxGetRootWindow()->window
, width
, height
, 1 );
584 int r_mask
= image
.GetMaskRed();
585 int g_mask
= image
.GetMaskGreen();
586 int b_mask
= image
.GetMaskBlue();
588 unsigned char* data
= image
.GetData();
591 for (int y
= 0; y
< height
; y
++)
593 for (int x
= 0; x
< width
; x
++)
604 if ((r
== r_mask
) && (b
== b_mask
) && (g
== g_mask
))
605 gdk_image_put_pixel( mask_image
, x
, y
, 1 );
607 gdk_image_put_pixel( mask_image
, x
, y
, 0 );
610 if ((r
== 255) && (b
== 255) && (g
== 255))
611 gdk_image_put_pixel( data_image
, x
, y
, 1 );
613 gdk_image_put_pixel( data_image
, x
, y
, 0 );
620 GdkGC
*data_gc
= gdk_gc_new( GetBitmap() );
622 gdk_draw_image( GetBitmap(), data_gc
, data_image
, 0, 0, 0, 0, width
, height
);
624 gdk_image_destroy( data_image
);
625 gdk_gc_unref( data_gc
);
631 GdkGC
*mask_gc
= gdk_gc_new( GetMask()->GetBitmap() );
633 gdk_draw_image( GetMask()->GetBitmap(), mask_gc
, mask_image
, 0, 0, 0, 0, width
, height
);
635 gdk_image_destroy( mask_image
);
636 gdk_gc_unref( mask_gc
);
641 // conversion to colour bitmap:
645 SetPixmap( gdk_pixmap_new( wxGetRootWindow()->window
, width
, height
, -1 ) );
647 GdkVisual
*visual
= wxTheApp
->GetGdkVisual();
649 int bpp
= visual
->depth
;
653 if ((bpp
== 16) && (visual
->red_mask
!= 0xf800))
658 // We handle 8-bit bitmaps ourselves using the colour cube, 12-bit
659 // visuals are not supported by GDK so we do these ourselves, too.
660 // 15-bit and 16-bit should actually work and 24-bit certainly does.
662 if (!image
.HasMask() && (bpp
> 16))
664 if (!image
.HasMask() && (bpp
> 12))
667 static bool s_hasInitialized
= FALSE
;
669 if (!s_hasInitialized
)
672 s_hasInitialized
= TRUE
;
675 GdkGC
*gc
= gdk_gc_new( GetPixmap() );
677 gdk_draw_rgb_image( GetPixmap(),
689 // Create picture image
691 GdkImage
*data_image
=
692 gdk_image_new( GDK_IMAGE_FASTEST
, visual
, width
, height
);
696 GdkImage
*mask_image
= (GdkImage
*) NULL
;
700 unsigned char *mask_data
= (unsigned char*)malloc( ((width
>> 3)+8) * height
);
702 mask_image
= gdk_image_new_bitmap( visual
, mask_data
, width
, height
);
704 wxMask
*mask
= new wxMask();
705 mask
->m_bitmap
= gdk_pixmap_new( wxGetRootWindow()->window
, width
, height
, 1 );
712 enum byte_order
{ RGB
, RBG
, BRG
, BGR
, GRB
, GBR
};
713 byte_order b_o
= RGB
;
717 if ((visual
->red_mask
> visual
->green_mask
) && (visual
->green_mask
> visual
->blue_mask
)) b_o
= RGB
;
718 else if ((visual
->red_mask
> visual
->blue_mask
) && (visual
->blue_mask
> visual
->green_mask
)) b_o
= RBG
;
719 else if ((visual
->blue_mask
> visual
->red_mask
) && (visual
->red_mask
> visual
->green_mask
)) b_o
= BRG
;
720 else if ((visual
->blue_mask
> visual
->green_mask
) && (visual
->green_mask
> visual
->red_mask
)) b_o
= BGR
;
721 else if ((visual
->green_mask
> visual
->red_mask
) && (visual
->red_mask
> visual
->blue_mask
)) b_o
= GRB
;
722 else if ((visual
->green_mask
> visual
->blue_mask
) && (visual
->blue_mask
> visual
->red_mask
)) b_o
= GBR
;
725 int r_mask
= image
.GetMaskRed();
726 int g_mask
= image
.GetMaskGreen();
727 int b_mask
= image
.GetMaskBlue();
729 unsigned char* data
= image
.GetData();
732 for (int y
= 0; y
< height
; y
++)
734 for (int x
= 0; x
< width
; x
++)
745 if ((r
== r_mask
) && (b
== b_mask
) && (g
== g_mask
))
746 gdk_image_put_pixel( mask_image
, x
, y
, 1 );
748 gdk_image_put_pixel( mask_image
, x
, y
, 0 );
756 if (wxTheApp
->m_colorCube
)
758 pixel
= wxTheApp
->m_colorCube
[ ((r
& 0xf8) << 7) + ((g
& 0xf8) << 2) + ((b
& 0xf8) >> 3) ];
762 GdkColormap
*cmap
= gtk_widget_get_default_colormap();
763 GdkColor
*colors
= cmap
->colors
;
764 int max
= 3 * (65536);
766 for (int i
= 0; i
< cmap
->size
; i
++)
768 int rdiff
= (r
<< 8) - colors
[i
].red
;
769 int gdiff
= (g
<< 8) - colors
[i
].green
;
770 int bdiff
= (b
<< 8) - colors
[i
].blue
;
771 int sum
= ABS (rdiff
) + ABS (gdiff
) + ABS (bdiff
);
772 if (sum
< max
) { pixel
= i
; max
= sum
; }
776 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
785 case RGB
: pixel
= ((r
& 0xf0) << 4) | (g
& 0xf0) | ((b
& 0xf0) >> 4); break;
786 case RBG
: pixel
= ((r
& 0xf0) << 4) | (b
& 0xf0) | ((g
& 0xf0) >> 4); break;
787 case GRB
: pixel
= ((g
& 0xf0) << 4) | (r
& 0xf0) | ((b
& 0xf0) >> 4); break;
788 case GBR
: pixel
= ((g
& 0xf0) << 4) | (b
& 0xf0) | ((r
& 0xf0) >> 4); break;
789 case BRG
: pixel
= ((b
& 0xf0) << 4) | (r
& 0xf0) | ((g
& 0xf0) >> 4); break;
790 case BGR
: pixel
= ((b
& 0xf0) << 4) | (g
& 0xf0) | ((r
& 0xf0) >> 4); break;
792 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
800 case RGB
: pixel
= ((r
& 0xf8) << 7) | ((g
& 0xf8) << 2) | ((b
& 0xf8) >> 3); break;
801 case RBG
: pixel
= ((r
& 0xf8) << 7) | ((b
& 0xf8) << 2) | ((g
& 0xf8) >> 3); break;
802 case GRB
: pixel
= ((g
& 0xf8) << 7) | ((r
& 0xf8) << 2) | ((b
& 0xf8) >> 3); break;
803 case GBR
: pixel
= ((g
& 0xf8) << 7) | ((b
& 0xf8) << 2) | ((r
& 0xf8) >> 3); break;
804 case BRG
: pixel
= ((b
& 0xf8) << 7) | ((r
& 0xf8) << 2) | ((g
& 0xf8) >> 3); break;
805 case BGR
: pixel
= ((b
& 0xf8) << 7) | ((g
& 0xf8) << 2) | ((r
& 0xf8) >> 3); break;
807 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
812 // I actually don't know if for 16-bit displays, it is alway the green
813 // component or the second component which has 6 bits.
817 case RGB
: pixel
= ((r
& 0xf8) << 8) | ((g
& 0xfc) << 3) | ((b
& 0xf8) >> 3); break;
818 case RBG
: pixel
= ((r
& 0xf8) << 8) | ((b
& 0xfc) << 3) | ((g
& 0xf8) >> 3); break;
819 case GRB
: pixel
= ((g
& 0xf8) << 8) | ((r
& 0xfc) << 3) | ((b
& 0xf8) >> 3); break;
820 case GBR
: pixel
= ((g
& 0xf8) << 8) | ((b
& 0xfc) << 3) | ((r
& 0xf8) >> 3); break;
821 case BRG
: pixel
= ((b
& 0xf8) << 8) | ((r
& 0xfc) << 3) | ((g
& 0xf8) >> 3); break;
822 case BGR
: pixel
= ((b
& 0xf8) << 8) | ((g
& 0xfc) << 3) | ((r
& 0xf8) >> 3); break;
824 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
833 case RGB
: pixel
= (r
<< 16) | (g
<< 8) | b
; break;
834 case RBG
: pixel
= (r
<< 16) | (b
<< 8) | g
; break;
835 case BRG
: pixel
= (b
<< 16) | (r
<< 8) | g
; break;
836 case BGR
: pixel
= (b
<< 16) | (g
<< 8) | r
; break;
837 case GRB
: pixel
= (g
<< 16) | (r
<< 8) | b
; break;
838 case GBR
: pixel
= (g
<< 16) | (b
<< 8) | r
; break;
840 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
849 GdkGC
*data_gc
= gdk_gc_new( GetPixmap() );
851 gdk_draw_image( GetPixmap(), data_gc
, data_image
, 0, 0, 0, 0, width
, height
);
853 gdk_image_destroy( data_image
);
854 gdk_gc_unref( data_gc
);
860 GdkGC
*mask_gc
= gdk_gc_new( GetMask()->GetBitmap() );
862 gdk_draw_image( GetMask()->GetBitmap(), mask_gc
, mask_image
, 0, 0, 0, 0, width
, height
);
864 gdk_image_destroy( mask_image
);
865 gdk_gc_unref( mask_gc
);
872 wxImage
wxBitmap::ConvertToImage() const
874 // the colour used as transparent one in wxImage and the one it is replaced
875 // with when it really occurs in the bitmap
876 static const int MASK_RED
= 1;
877 static const int MASK_GREEN
= 2;
878 static const int MASK_BLUE
= 3;
879 static const int MASK_BLUE_REPLACEMENT
= 2;
883 wxCHECK_MSG( Ok(), wxNullImage
, wxT("invalid bitmap") );
885 GdkImage
*gdk_image
= (GdkImage
*) NULL
;
888 gdk_image
= gdk_image_get( GetPixmap(),
890 GetWidth(), GetHeight() );
892 else if (GetBitmap())
894 gdk_image
= gdk_image_get( GetBitmap(),
896 GetWidth(), GetHeight() );
900 wxFAIL_MSG( wxT("Ill-formed bitmap") );
903 wxCHECK_MSG( gdk_image
, wxNullImage
, wxT("couldn't create image") );
905 image
.Create( GetWidth(), GetHeight() );
906 char unsigned *data
= image
.GetData();
910 gdk_image_destroy( gdk_image
);
911 wxFAIL_MSG( wxT("couldn't create image") );
915 GdkImage
*gdk_image_mask
= (GdkImage
*) NULL
;
918 gdk_image_mask
= gdk_image_get( GetMask()->GetBitmap(),
920 GetWidth(), GetHeight() );
922 image
.SetMaskColour( MASK_RED
, MASK_GREEN
, MASK_BLUE
);
926 int red_shift_right
= 0;
927 int green_shift_right
= 0;
928 int blue_shift_right
= 0;
929 int red_shift_left
= 0;
930 int green_shift_left
= 0;
931 int blue_shift_left
= 0;
932 bool use_shift
= FALSE
;
936 GdkVisual
*visual
= gdk_window_get_visual( GetPixmap() );
938 visual
= wxTheApp
->GetGdkVisual();
942 bpp
= visual
->red_prec
+ visual
->green_prec
+ visual
->blue_prec
;
943 red_shift_right
= visual
->red_shift
;
944 red_shift_left
= 8-visual
->red_prec
;
945 green_shift_right
= visual
->green_shift
;
946 green_shift_left
= 8-visual
->green_prec
;
947 blue_shift_right
= visual
->blue_shift
;
948 blue_shift_left
= 8-visual
->blue_prec
;
950 use_shift
= (visual
->type
== GDK_VISUAL_TRUE_COLOR
) || (visual
->type
== GDK_VISUAL_DIRECT_COLOR
);
958 GdkColormap
*cmap
= gtk_widget_get_default_colormap();
961 for (int j
= 0; j
< GetHeight(); j
++)
963 for (int i
= 0; i
< GetWidth(); i
++)
965 wxUint32 pixel
= gdk_image_get_pixel( gdk_image
, i
, j
);
983 data
[pos
] = (pixel
>> red_shift_right
) << red_shift_left
;
984 data
[pos
+1] = (pixel
>> green_shift_right
) << green_shift_left
;
985 data
[pos
+2] = (pixel
>> blue_shift_right
) << blue_shift_left
;
987 else if (cmap
->colors
)
989 data
[pos
] = cmap
->colors
[pixel
].red
>> 8;
990 data
[pos
+1] = cmap
->colors
[pixel
].green
>> 8;
991 data
[pos
+2] = cmap
->colors
[pixel
].blue
>> 8;
995 wxFAIL_MSG( wxT("Image conversion failed. Unknown visual type.") );
1000 int mask_pixel
= gdk_image_get_pixel( gdk_image_mask
, i
, j
);
1001 if (mask_pixel
== 0)
1003 data
[pos
] = MASK_RED
;
1004 data
[pos
+1] = MASK_GREEN
;
1005 data
[pos
+2] = MASK_BLUE
;
1007 else if ( data
[pos
] == MASK_RED
&&
1008 data
[pos
+1] == MASK_GREEN
&&
1009 data
[pos
+2] == MASK_BLUE
)
1011 data
[pos
+2] = MASK_BLUE_REPLACEMENT
;
1019 gdk_image_destroy( gdk_image
);
1020 if (gdk_image_mask
) gdk_image_destroy( gdk_image_mask
);
1025 wxBitmap::wxBitmap( const wxBitmap
& bmp
)
1031 wxBitmap::wxBitmap( const wxString
&filename
, int type
)
1033 LoadFile( filename
, type
);
1036 wxBitmap::wxBitmap( const char bits
[], int width
, int height
, int WXUNUSED(depth
))
1038 if ( width
> 0 && height
> 0 )
1040 m_refData
= new wxBitmapRefData();
1042 M_BMPDATA
->m_mask
= (wxMask
*) NULL
;
1043 M_BMPDATA
->m_bitmap
= gdk_bitmap_create_from_data
1045 wxGetRootWindow()->window
,
1050 M_BMPDATA
->m_width
= width
;
1051 M_BMPDATA
->m_height
= height
;
1052 M_BMPDATA
->m_bpp
= 1;
1054 wxASSERT_MSG( M_BMPDATA
->m_bitmap
, wxT("couldn't create bitmap") );
1058 wxBitmap::~wxBitmap()
1062 wxBitmap
& wxBitmap::operator = ( const wxBitmap
& bmp
)
1064 if ( m_refData
!= bmp
.m_refData
)
1070 bool wxBitmap::operator == ( const wxBitmap
& bmp
) const
1072 return m_refData
== bmp
.m_refData
;
1075 bool wxBitmap::operator != ( const wxBitmap
& bmp
) const
1077 return m_refData
!= bmp
.m_refData
;
1080 bool wxBitmap::Ok() const
1082 return (m_refData
!= NULL
) && (M_BMPDATA
->m_bitmap
|| M_BMPDATA
->m_pixmap
);
1085 int wxBitmap::GetHeight() const
1087 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1089 return M_BMPDATA
->m_height
;
1092 int wxBitmap::GetWidth() const
1094 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1096 return M_BMPDATA
->m_width
;
1099 int wxBitmap::GetDepth() const
1101 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1103 return M_BMPDATA
->m_bpp
;
1106 wxMask
*wxBitmap::GetMask() const
1108 wxCHECK_MSG( Ok(), (wxMask
*) NULL
, wxT("invalid bitmap") );
1110 return M_BMPDATA
->m_mask
;
1113 void wxBitmap::SetMask( wxMask
*mask
)
1115 wxCHECK_RET( Ok(), wxT("invalid bitmap") );
1117 if (M_BMPDATA
->m_mask
) delete M_BMPDATA
->m_mask
;
1119 M_BMPDATA
->m_mask
= mask
;
1122 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
)
1128 wxBitmap
wxBitmap::GetSubBitmap( const wxRect
& rect
) const
1130 wxCHECK_MSG( Ok() &&
1131 (rect
.x
>= 0) && (rect
.y
>= 0) &&
1132 (rect
.x
+rect
.width
<= M_BMPDATA
->m_width
) && (rect
.y
+rect
.height
<= M_BMPDATA
->m_height
),
1133 wxNullBitmap
, wxT("invalid bitmap or bitmap region") );
1135 wxBitmap
ret( rect
.width
, rect
.height
, M_BMPDATA
->m_bpp
);
1136 wxASSERT_MSG( ret
.Ok(), wxT("GetSubBitmap error") );
1138 if (ret
.GetPixmap())
1140 GdkGC
*gc
= gdk_gc_new( ret
.GetPixmap() );
1141 gdk_draw_pixmap( ret
.GetPixmap(), gc
, GetPixmap(), rect
.x
, rect
.y
, 0, 0, rect
.width
, rect
.height
);
1142 gdk_gc_destroy( gc
);
1146 GdkGC
*gc
= gdk_gc_new( ret
.GetBitmap() );
1148 col
.pixel
= 0xFFFFFF;
1149 gdk_gc_set_foreground( gc
, &col
);
1151 gdk_gc_set_background( gc
, &col
);
1152 gdk_wx_draw_bitmap( ret
.GetBitmap(), gc
, GetBitmap(), rect
.x
, rect
.y
, 0, 0, rect
.width
, rect
.height
);
1153 gdk_gc_destroy( gc
);
1158 wxMask
*mask
= new wxMask
;
1159 mask
->m_bitmap
= gdk_pixmap_new( wxGetRootWindow()->window
, rect
.width
, rect
.height
, 1 );
1161 GdkGC
*gc
= gdk_gc_new( mask
->m_bitmap
);
1163 col
.pixel
= 0xFFFFFF;
1164 gdk_gc_set_foreground( gc
, &col
);
1166 gdk_gc_set_background( gc
, &col
);
1167 gdk_wx_draw_bitmap( mask
->m_bitmap
, gc
, M_BMPDATA
->m_mask
->m_bitmap
, rect
.x
, rect
.y
, 0, 0, rect
.width
, rect
.height
);
1168 gdk_gc_destroy( gc
);
1170 ret
.SetMask( mask
);
1176 bool wxBitmap::SaveFile( const wxString
&name
, int type
, wxPalette
*WXUNUSED(palette
) )
1178 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid bitmap") );
1180 // Try to save the bitmap via wxImage handlers:
1182 wxImage image
= ConvertToImage();
1183 if (image
.Ok()) return image
.SaveFile( name
, type
);
1189 bool wxBitmap::LoadFile( const wxString
&name
, int type
)
1193 if (!wxFileExists(name
))
1196 GdkVisual
*visual
= wxTheApp
->GetGdkVisual();
1198 if (type
== wxBITMAP_TYPE_XPM
)
1200 m_refData
= new wxBitmapRefData();
1202 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
1204 M_BMPDATA
->m_pixmap
= gdk_pixmap_create_from_xpm
1206 wxGetRootWindow()->window
,
1214 M_BMPDATA
->m_mask
= new wxMask();
1215 M_BMPDATA
->m_mask
->m_bitmap
= mask
;
1218 gdk_window_get_size( M_BMPDATA
->m_pixmap
, &(M_BMPDATA
->m_width
), &(M_BMPDATA
->m_height
) );
1220 M_BMPDATA
->m_bpp
= visual
->depth
;
1222 else // try if wxImage can load it
1225 if ( !image
.LoadFile( name
, type
) || !image
.Ok() )
1228 *this = wxBitmap(image
);
1234 wxPalette
*wxBitmap::GetPalette() const
1237 return (wxPalette
*) NULL
;
1239 return M_BMPDATA
->m_palette
;
1242 void wxBitmap::SetHeight( int height
)
1245 m_refData
= new wxBitmapRefData();
1247 M_BMPDATA
->m_height
= height
;
1250 void wxBitmap::SetWidth( int width
)
1253 m_refData
= new wxBitmapRefData();
1255 M_BMPDATA
->m_width
= width
;
1258 void wxBitmap::SetDepth( int depth
)
1261 m_refData
= new wxBitmapRefData();
1263 M_BMPDATA
->m_bpp
= depth
;
1266 void wxBitmap::SetPixmap( GdkPixmap
*pixmap
)
1269 m_refData
= new wxBitmapRefData();
1271 M_BMPDATA
->m_pixmap
= pixmap
;
1274 void wxBitmap::SetBitmap( GdkPixmap
*bitmap
)
1277 m_refData
= new wxBitmapRefData();
1279 M_BMPDATA
->m_bitmap
= bitmap
;
1282 GdkPixmap
*wxBitmap::GetPixmap() const
1284 wxCHECK_MSG( Ok(), (GdkPixmap
*) NULL
, wxT("invalid bitmap") );
1286 return M_BMPDATA
->m_pixmap
;
1289 GdkBitmap
*wxBitmap::GetBitmap() const
1291 wxCHECK_MSG( Ok(), (GdkBitmap
*) NULL
, wxT("invalid bitmap") );
1293 return M_BMPDATA
->m_bitmap
;