]>
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 void wxStaticBitmap::CreatePixmapWidget()
40 wxCHECK_RET( m_bitmap
.Ok(), wxT("should only be called if we have a bitmap") );
42 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
43 if ( m_bitmap
.GetMask() )
44 mask
= m_bitmap
.GetMask()->GetBitmap();
45 m_widget
= gtk_pixmap_new( m_bitmap
.GetPixmap(), mask
);
47 /* insert GTK representation */
48 (*m_parent
->m_insertCallback
)(m_parent
, this);
50 gtk_widget_show( m_widget
);
55 bool wxStaticBitmap::Create( wxWindow
*parent
, wxWindowID id
, const wxBitmap
&bitmap
,
56 const wxPoint
&pos
, const wxSize
&size
,
57 long style
, const wxString
&name
)
61 if (!PreCreation( parent
, pos
, size
) ||
62 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
64 wxFAIL_MSG( wxT("wxXX creation failed") );
72 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
73 if ( m_bitmap
.GetMask() )
74 mask
= m_bitmap
.GetMask()->GetBitmap();
75 m_widget
= gtk_pixmap_new( m_bitmap
.GetPixmap(), mask
);
77 SetSizeOrDefault( size
);
81 m_widget
= gtk_label_new( "Bitmap" );
86 m_parent
->DoAddChild( this );
93 void wxStaticBitmap::SetBitmap( const wxBitmap
&bitmap
)
95 bool hasWidget
= m_bitmap
.Ok();
102 gtk_widget_destroy( m_widget
);
104 /* recreate m_widget because we've created a label
105 and not a bitmap above */
106 CreatePixmapWidget();
110 GdkBitmap
*mask
= (GdkBitmap
*) NULL
;
111 if (m_bitmap
.GetMask()) mask
= m_bitmap
.GetMask()->GetBitmap();
112 gtk_pixmap_set( GTK_PIXMAP(m_widget
), m_bitmap
.GetPixmap(), mask
);
119 wxSize
wxStaticBitmap::DoGetBestSize() const
122 return wxSize(m_bitmap
.GetWidth(), m_bitmap
.GetHeight());
124 return wxSize(16, 16); // completely arbitrary