X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/112892b9180e35d20ca68d2383feb04a0aaa4af3..e1dc4cc6872ce44134a881feeb0ede2b8b91af55:/src/gtk1/bmpbuttn.cpp diff --git a/src/gtk1/bmpbuttn.cpp b/src/gtk1/bmpbuttn.cpp index 09722663f3..431e677569 100644 --- a/src/gtk1/bmpbuttn.cpp +++ b/src/gtk1/bmpbuttn.cpp @@ -2,9 +2,8 @@ // Name: bmpbuttn.cpp // Purpose: // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -21,35 +20,38 @@ class wxBitmapButton; //----------------------------------------------------------------------------- -// wxBitmapButton +// data //----------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton,wxControl) +extern bool g_blockEventsOnDrag; -void gtk_bmpbutton_clicked_callback( GtkWidget *WXUNUSED(widget), gpointer data ) +//----------------------------------------------------------------------------- +// "clicked" +//----------------------------------------------------------------------------- + +static void gtk_bmpbutton_clicked_callback( GtkWidget *WXUNUSED(widget), wxBitmapButton *button ) { - wxBitmapButton *button = (wxBitmapButton*)data; + if (!button->HasVMT()) return; + if (g_blockEventsOnDrag) return; + wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId()); event.SetEventObject(button); - button->ProcessEvent(event); -}; + button->GetEventHandler()->ProcessEvent(event); +} +//----------------------------------------------------------------------------- +// wxBitmapButton //----------------------------------------------------------------------------- -wxBitmapButton::wxBitmapButton(void) -{ -}; +IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton,wxControl) -wxBitmapButton::wxBitmapButton( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap, - const wxPoint &pos, const wxSize &size, - const long style, const wxString &name ) +wxBitmapButton::wxBitmapButton(void) { - Create( parent, id, bitmap, pos, size, style, name ); -}; +} bool wxBitmapButton::Create( wxWindow *parent, wxWindowID id, const wxBitmap &bitmap, const wxPoint &pos, const wxSize &size, - const long style, const wxString &name ) + long style, const wxValidator& validator, const wxString &name ) { m_needParent = TRUE; @@ -57,6 +59,8 @@ bool wxBitmapButton::Create( wxWindow *parent, wxWindowID id, const wxBitmap &b PreCreation( parent, id, pos, newSize, style, name ); + SetValidator( validator ); + m_bitmap = bitmap; m_label = ""; @@ -64,13 +68,13 @@ bool wxBitmapButton::Create( wxWindow *parent, wxWindowID id, const wxBitmap &b if (m_bitmap.Ok()) { - GdkBitmap *mask = NULL; + GdkBitmap *mask = (GdkBitmap *) NULL; if (m_bitmap.GetMask()) mask = m_bitmap.GetMask()->GetBitmap(); GtkWidget *pixmap = gtk_pixmap_new( m_bitmap.GetPixmap(), mask ); gtk_widget_show( pixmap ); gtk_container_add( GTK_CONTAINER(m_widget), pixmap ); - }; + } if (newSize.x == -1) newSize.x = m_bitmap.GetHeight()+10; if (newSize.y == -1) newSize.y = m_bitmap.GetWidth()+10; @@ -81,21 +85,52 @@ bool wxBitmapButton::Create( wxWindow *parent, wxWindowID id, const wxBitmap &b PostCreation(); + SetBackgroundColour( parent->GetBackgroundColour() ); + Show( TRUE ); return TRUE; -}; +} void wxBitmapButton::SetDefault(void) { -}; +/* + GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT ); + gtk_widget_grab_default( m_widget ); +*/ +} void wxBitmapButton::SetLabel( const wxString &label ) { + wxCHECK_RET( m_widget != NULL, "invalid button" ); + wxControl::SetLabel( label ); -}; +} wxString wxBitmapButton::GetLabel(void) const { + wxCHECK_MSG( m_widget != NULL, "", "invalid button" ); + return wxControl::GetLabel(); -}; +} + +void wxBitmapButton::SetBitmapLabel( const wxBitmap& bitmap ) +{ + wxCHECK_RET( m_widget != NULL, "invalid button" ); + + m_bitmap = bitmap; + if (!m_bitmap.Ok()) return; + + GtkButton *bin = GTK_BUTTON( m_widget ); + GtkPixmap *g_pixmap = GTK_PIXMAP( bin->child ); + + GdkBitmap *mask = (GdkBitmap *) NULL; + if (m_bitmap.GetMask()) mask = m_bitmap.GetMask()->GetBitmap(); + + gtk_pixmap_set( g_pixmap, m_bitmap.GetPixmap(), mask ); +} + +void wxBitmapButton::ApplyWidgetStyle() +{ +} +