]>
git.saurik.com Git - wxWidgets.git/blob - src/gtk/statbmp.cpp
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
15 #include "wx/statbmp.h"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
23 wxStaticBitmap::wxStaticBitmap(void)
27 wxStaticBitmap::wxStaticBitmap( wxWindow
*parent
, wxWindowID id
, const wxBitmap
&bitmap
,
28 const wxPoint
&pos
, const wxSize
&size
,
29 long style
, const wxString
&name
)
31 Create( parent
, id
, bitmap
, pos
, size
, style
, name
);
34 bool wxStaticBitmap::Create( wxWindow
*parent
, wxWindowID id
, const wxBitmap
&bitmap
,
35 const wxPoint
&pos
, const wxSize
&size
,
36 long style
, const wxString
&name
)
38 if (!PreCreation( parent
, pos
, size
) ||
39 !CreateBase( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
))
41 wxFAIL_MSG( wxT("wxStaticBitmap creation failed") );
47 m_widget
= gtk_image_new();
48 g_object_ref(m_widget
);
54 m_parent
->DoAddChild( this );
59 void wxStaticBitmap::SetBitmap( const wxBitmap
&bitmap
)
65 // always use pixbuf, because pixmap mask does not
66 // work with disabled images in some themes
67 gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget
), m_bitmap
.GetPixbuf());
70 SetSize(GetBestSize());
76 wxStaticBitmap::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
78 // TODO: overload to allow using gtk_pixmap_new?
79 return GetDefaultAttributesFromGTKWidget(gtk_label_new
);
82 #endif // wxUSE_STATBMP