mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-09 11:21:19 +00:00
84 lines
2.2 KiB
C++
84 lines
2.2 KiB
C++
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: src/gtk/statbmp.cpp
|
||
|
// Purpose:
|
||
|
// Author: Robert Roebling
|
||
|
// Id: $Id: statbmp.cpp 67254 2011-03-20 00:14:35Z DS $
|
||
|
// 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);
|
||
|
|
||
|
if (bitmap.Ok())
|
||
|
SetBitmap(bitmap);
|
||
|
|
||
|
PostCreation(size);
|
||
|
m_parent->DoAddChild( this );
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void wxStaticBitmap::SetBitmap( const wxBitmap &bitmap )
|
||
|
{
|
||
|
m_bitmap = bitmap;
|
||
|
|
||
|
if (m_bitmap.Ok())
|
||
|
{
|
||
|
// 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))
|
||
|
{
|
||
|
// TODO: overload to allow using gtk_pixmap_new?
|
||
|
return GetDefaultAttributesFromGTKWidget(gtk_label_new);
|
||
|
}
|
||
|
|
||
|
#endif // wxUSE_STATBMP
|
||
|
|