]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/bitmap.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "bitmap.h"
15 #include "wx/bitmap.h"
16 #include "gdk/gdkprivate.h"
19 #include "../gdk_imlib/gdk_imlib.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 IMPLEMENT_DYNAMIC_CLASS(wxMask
,wxObject
)
33 wxMask::wxMask( const wxBitmap
& WXUNUSED(bitmap
), const wxColour
& WXUNUSED(colour
) )
37 wxMask::wxMask( const wxBitmap
& WXUNUSED(bitmap
), int WXUNUSED(paletteIndex
) )
41 wxMask::wxMask( const wxBitmap
& WXUNUSED(bitmap
) )
48 // do not delete the mask, gdk_imlib does it for you
50 if (m_bitmap
) gdk_bitmap_unref( m_bitmap
);
54 GdkBitmap
*wxMask::GetBitmap(void) const
59 //-----------------------------------------------------------------------------
61 //-----------------------------------------------------------------------------
63 // CMB 20/5/98: added m_bitmap for GdkBitmaps
64 class wxBitmapRefData
: public wxObjectRefData
68 wxBitmapRefData(void);
69 ~wxBitmapRefData(void);
78 GdkImlibImage
*m_image
;
83 wxBitmapRefData::wxBitmapRefData(void)
97 wxBitmapRefData::~wxBitmapRefData(void)
100 if (m_pixmap
) gdk_imlib_free_pixmap( m_pixmap
);
101 if (m_image
) gdk_imlib_destroy_image( m_image
);
103 if (m_pixmap
) gdk_pixmap_unref( m_pixmap
);
105 if (m_bitmap
) gdk_bitmap_unref( m_bitmap
);
106 if (m_mask
) delete m_mask
;
107 if (m_palette
) delete m_palette
;
110 //-----------------------------------------------------------------------------
112 #define M_BMPDATA ((wxBitmapRefData *)m_refData)
114 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
,wxGDIObject
)
116 wxBitmap::wxBitmap(void)
118 if (wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
121 wxBitmap::wxBitmap( int width
, int height
, int depth
)
123 m_refData
= new wxBitmapRefData();
124 M_BMPDATA
->m_mask
= NULL
;
125 M_BMPDATA
->m_pixmap
=
126 gdk_pixmap_new( (GdkWindow
*) &gdk_root_parent
, width
, height
, depth
);
127 M_BMPDATA
->m_width
= width
;
128 M_BMPDATA
->m_height
= height
;
129 M_BMPDATA
->m_bpp
= depth
;
131 if (wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
134 wxBitmap::wxBitmap( char **bits
)
136 m_refData
= new wxBitmapRefData();
138 #ifndef USE_GDK_IMLIB
140 GdkBitmap
*mask
= NULL
;
142 M_BMPDATA
->m_pixmap
=
143 gdk_pixmap_create_from_xpm_d( (GdkWindow
*) &gdk_root_parent
, &mask
, NULL
, (gchar
**) bits
);
147 M_BMPDATA
->m_mask
= new wxMask();
148 M_BMPDATA
->m_mask
->m_bitmap
= mask
;
151 gdk_window_get_size( M_BMPDATA
->m_pixmap
, &(M_BMPDATA
->m_width
), &(M_BMPDATA
->m_height
) );
155 M_BMPDATA
->m_image
= gdk_imlib_create_image_from_xpm_data( bits
);
160 M_BMPDATA
->m_bpp
= 24; // ?
162 if (wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
165 wxBitmap::wxBitmap( const wxBitmap
& bmp
)
169 if (wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
172 wxBitmap::wxBitmap( const wxBitmap
* bmp
)
174 if (bmp
) Ref( *bmp
);
176 if (wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
179 wxBitmap::wxBitmap( const wxString
&filename
, int type
)
181 LoadFile( filename
, type
);
184 // CMB 15/5/98: add constructor for xbm bitmaps
185 wxBitmap::wxBitmap( const char bits
[], int width
, int height
, int WXUNUSED(depth
))
187 m_refData
= new wxBitmapRefData();
189 M_BMPDATA
->m_mask
= NULL
;
190 M_BMPDATA
->m_bitmap
=
191 gdk_bitmap_create_from_data( (GdkWindow
*) &gdk_root_parent
, (gchar
*) bits
, width
, height
);
192 M_BMPDATA
->m_width
= width
;
193 M_BMPDATA
->m_height
= height
;
194 M_BMPDATA
->m_bpp
= 1;
196 if (wxTheBitmapList
) wxTheBitmapList
->AddBitmap(this);
199 wxBitmap::~wxBitmap(void)
201 if (wxTheBitmapList
) wxTheBitmapList
->DeleteObject(this);
204 wxBitmap
& wxBitmap::operator = ( const wxBitmap
& bmp
)
206 if (*this == bmp
) return (*this);
211 bool wxBitmap::operator == ( const wxBitmap
& bmp
)
213 return m_refData
== bmp
.m_refData
;
216 bool wxBitmap::operator != ( const wxBitmap
& bmp
)
218 return m_refData
!= bmp
.m_refData
;
221 bool wxBitmap::Ok(void) const
223 return m_refData
!= NULL
;
226 int wxBitmap::GetHeight(void) const
229 return M_BMPDATA
->m_height
;
232 int wxBitmap::GetWidth(void) const
235 return M_BMPDATA
->m_width
;
238 int wxBitmap::GetDepth(void) const
241 return M_BMPDATA
->m_bpp
;
244 void wxBitmap::SetHeight( int height
)
247 M_BMPDATA
->m_height
= height
;
250 void wxBitmap::SetWidth( int width
)
253 M_BMPDATA
->m_width
= width
;
256 void wxBitmap::SetDepth( int depth
)
259 M_BMPDATA
->m_bpp
= depth
;
262 wxMask
*wxBitmap::GetMask(void) const
264 if (!Ok()) return NULL
;
266 return M_BMPDATA
->m_mask
;
269 void wxBitmap::SetMask( wxMask
*mask
)
273 if (M_BMPDATA
->m_mask
) delete M_BMPDATA
->m_mask
;
274 M_BMPDATA
->m_mask
= mask
;
277 void wxBitmap::Resize( int height
, int width
)
283 if (M_BMPDATA
->m_bitmap
) return; // not supported for bitmaps
285 if (!M_BMPDATA
->m_image
) RecreateImage();
287 if (M_BMPDATA
->m_pixmap
) gdk_imlib_free_pixmap( M_BMPDATA
->m_pixmap
);
288 if (M_BMPDATA
->m_mask
) delete M_BMPDATA
->m_mask
;
290 GdkImlibImage
* image
= gdk_imlib_clone_scaled_image( M_BMPDATA
->m_image
, height
, width
);
291 gdk_imlib_destroy_image( M_BMPDATA
->m_image
);
292 M_BMPDATA
->m_image
= image
;
293 M_BMPDATA
->m_height
= height
;
294 M_BMPDATA
->m_width
= width
;
301 bool wxBitmap::SaveFile( const wxString
&name
, int WXUNUSED(type
),
302 wxPalette
*WXUNUSED(palette
) )
306 if (!Ok()) return FALSE
;
308 if (!M_BMPDATA
->m_image
) RecreateImage();
310 return gdk_imlib_save_image( M_BMPDATA
->m_image
, WXSTRINGCAST name
, NULL
);
317 bool wxBitmap::LoadFile( const wxString
&name
, int WXUNUSED(type
) )
322 m_refData
= new wxBitmapRefData();
324 M_BMPDATA
->m_image
= gdk_imlib_load_image( WXSTRINGCAST name
);
326 if (!M_BMPDATA
->m_image
)
334 gdk_window_get_size( M_BMPDATA
->m_pixmap
, &(M_BMPDATA
->m_width
), &(M_BMPDATA
->m_height
) );
335 M_BMPDATA
->m_bpp
= 24; // ?
343 wxPalette
*wxBitmap::GetPalette(void) const
345 if (!Ok()) return NULL
;
346 return M_BMPDATA
->m_palette
;
349 GdkPixmap
*wxBitmap::GetPixmap(void) const
351 if (!Ok()) return NULL
;
352 return M_BMPDATA
->m_pixmap
;
355 GdkBitmap
*wxBitmap::GetBitmap(void) const
357 if (!Ok()) return NULL
;
359 return M_BMPDATA
->m_bitmap
;
362 void wxBitmap::DestroyImage(void)
366 if (M_BMPDATA
->m_image
)
368 gdk_imlib_destroy_image( M_BMPDATA
->m_image
);
369 M_BMPDATA
->m_image
= NULL
;
373 void wxBitmap::RecreateImage(void)
377 void wxBitmap::Render(void)
383 gdk_imlib_render( M_BMPDATA
->m_image
, M_BMPDATA
->m_image
->rgb_width
, M_BMPDATA
->m_image
->rgb_height
);
384 M_BMPDATA
->m_width
= M_BMPDATA
->m_image
->rgb_width
;
385 M_BMPDATA
->m_height
= M_BMPDATA
->m_image
->rgb_height
;
386 M_BMPDATA
->m_pixmap
= gdk_imlib_move_image( M_BMPDATA
->m_image
);
387 GdkBitmap
*mask
= gdk_imlib_move_mask( M_BMPDATA
->m_image
);
390 M_BMPDATA
->m_mask
= new wxMask();
391 M_BMPDATA
->m_mask
->m_bitmap
= mask
;