2011-03-20 18:05:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: src/gtk/statbmp.cpp
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// For compilers that support precompilation, includes "wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#if wxUSE_STATBMP
|
|
|
|
|
|
|
|
#include "wx/statbmp.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxStaticBitmap
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
wxStaticBitmap::wxStaticBitmap(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
wxStaticBitmap::wxStaticBitmap( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap,
|
|
|
|
const wxPoint &pos, const wxSize &size,
|
|
|
|
long style, const wxString &name )
|
|
|
|
{
|
|
|
|
Create( parent, id, bitmap, pos, size, style, name );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool wxStaticBitmap::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap,
|
|
|
|
const wxPoint &pos, const wxSize &size,
|
|
|
|
long style, const wxString &name )
|
|
|
|
{
|
|
|
|
if (!PreCreation( parent, pos, size ) ||
|
|
|
|
!CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
|
|
|
|
{
|
|
|
|
wxFAIL_MSG( wxT("wxStaticBitmap creation failed") );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_bitmap = bitmap;
|
|
|
|
|
|
|
|
m_widget = gtk_image_new();
|
|
|
|
g_object_ref(m_widget);
|
|
|
|
|
2012-03-17 18:12:27 -07:00
|
|
|
if (bitmap.IsOk())
|
2011-03-20 18:05:19 +00:00
|
|
|
SetBitmap(bitmap);
|
|
|
|
|
|
|
|
PostCreation(size);
|
|
|
|
m_parent->DoAddChild( this );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap )
|
|
|
|
{
|
|
|
|
m_bitmap = bitmap;
|
|
|
|
|
2012-03-17 18:12:27 -07:00
|
|
|
if (m_bitmap.IsOk())
|
2011-03-20 18:05:19 +00:00
|
|
|
{
|
|
|
|
// always use pixbuf, because pixmap mask does not
|
|
|
|
// work with disabled images in some themes
|
|
|
|
gtk_image_set_from_pixbuf(GTK_IMAGE(m_widget), m_bitmap.GetPixbuf());
|
|
|
|
|
|
|
|
InvalidateBestSize();
|
|
|
|
SetSize(GetBestSize());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
wxVisualAttributes
|
|
|
|
wxStaticBitmap::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
|
|
|
|
{
|
2013-09-22 18:44:55 -04:00
|
|
|
return GetDefaultAttributesFromGTKWidget(gtk_image_new());
|
2011-03-20 18:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // wxUSE_STATBMP
|
|
|
|
|