]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk1/statbmp.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "statbmp.h"
14 #include "wx/statbmp.h"
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
25 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap
,wxControl
)
27 wxStaticBitmap::wxStaticBitmap(void)
31 wxStaticBitmap::wxStaticBitmap( wxWindow
*parent
, wxWindowID id
, const wxBitmap
&bitmap
,
32 const wxPoint
&pos
, const wxSize
&size
,
33 long style
, const wxString
&name
)
35 Create( parent
, id
, bitmap
, pos
, size
, style
, name
);
38 bool wxStaticBitmap::Create( wxWindow
*parent
, wxWindowID id
, const wxBitmap
&bitmap
,
39 const wxPoint
&pos
, const wxSize
&size
,
40 long style
, const wxString
&name
)
44 wxSize newSize
= size
;
46 PreCreation( parent
, id
, pos
, size
, style
, name
);
52 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
53 if (m_bitmap
.GetMask()) mask
= m_bitmap
.GetMask()->GetBitmap();
54 m_widget
= gtk_pixmap_new( m_bitmap
.GetPixmap(), mask
);
56 if (newSize
.x
== -1) newSize
.x
= m_bitmap
.GetWidth();
57 if (newSize
.y
== -1) newSize
.y
= m_bitmap
.GetHeight();
58 SetSize( newSize
.x
, newSize
.y
);
62 m_widget
= gtk_label_new( "Bitmap" );
65 m_parent
->DoAddChild( this );
74 void wxStaticBitmap::SetBitmap( const wxBitmap
&bitmap
)
80 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
81 if (m_bitmap
.GetMask()) mask
= m_bitmap
.GetMask()->GetBitmap();
82 gtk_pixmap_set( GTK_PIXMAP(m_widget
), m_bitmap
.GetPixmap(), mask
);