]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/button.cpp
wxSize/wxPoint/wxRect versions of functions added to wxMSW, wxMotif;
[wxWidgets.git] / src / gtk / button.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: button.cpp
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
c801d85f
KB
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifdef __GNUG__
11#pragma implementation "button.h"
12#endif
13
14#include "wx/button.h"
15
16//-----------------------------------------------------------------------------
17// classes
18//-----------------------------------------------------------------------------
19
20class wxButton;
21
66bd6b93
RR
22//-----------------------------------------------------------------------------
23// data
24//-----------------------------------------------------------------------------
25
26extern bool g_blockEventsOnDrag;
27
c801d85f 28//-----------------------------------------------------------------------------
e1e955e1 29// "clicked"
c801d85f
KB
30//-----------------------------------------------------------------------------
31
66bd6b93 32static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button )
c801d85f 33{
66bd6b93
RR
34 if (!button->HasVMT()) return;
35 if (g_blockEventsOnDrag) return;
36
c801d85f
KB
37 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId());
38 event.SetEventObject(button);
47908e25 39 button->GetEventHandler()->ProcessEvent(event);
6de97a3b 40}
c801d85f
KB
41
42//-----------------------------------------------------------------------------
e1e955e1
RR
43// wxButton
44//-----------------------------------------------------------------------------
45
46IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl)
c801d85f 47
fd0eed64 48wxButton::wxButton()
c801d85f 49{
6de97a3b 50}
c801d85f 51
fd0eed64
RR
52wxButton::~wxButton()
53{
54 if (m_clientData) delete m_clientData;
55}
56
c801d85f 57bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label,
32c77a71 58 const wxPoint &pos, const wxSize &size,
6de97a3b 59 long style, const wxValidator& validator, const wxString &name )
c801d85f 60{
fd0eed64 61 m_clientData = (wxClientData*) NULL;
c801d85f 62 m_needParent = TRUE;
32c77a71 63
c801d85f
KB
64 wxSize newSize = size;
65
66 PreCreation( parent, id, pos, newSize, style, name );
6de97a3b
RR
67
68 SetValidator( validator );
32c77a71 69
32c77a71 70 m_widget = gtk_button_new_with_label( m_label );
b593568e 71 SetLabel(label);
32c77a71 72
c801d85f
KB
73 if (newSize.x == -1) newSize.x = 15+gdk_string_measure( m_widget->style->font, label );
74 if (newSize.y == -1) newSize.y = 26;
75 SetSize( newSize.x, newSize.y );
32c77a71
VZ
76
77 gtk_signal_connect( GTK_OBJECT(m_widget), "clicked",
c801d85f
KB
78 GTK_SIGNAL_FUNC(gtk_button_clicked_callback), (gpointer*)this );
79
6ca41e57
RR
80 m_parent->AddChild( this );
81
82 (m_parent->m_insertCallback)( m_parent, this );
83
c801d85f 84 PostCreation();
f96aa4d9
RR
85
86 SetBackgroundColour( parent->GetBackgroundColour() );
58614078 87 SetForegroundColour( parent->GetForegroundColour() );
32c77a71 88
c801d85f 89 Show( TRUE );
32c77a71 90
c801d85f 91 return TRUE;
6de97a3b 92}
32c77a71 93
c801d85f
KB
94void wxButton::SetDefault(void)
95{
903f689b
RR
96/*
97 GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT );
6de97a3b 98 gtk_widget_grab_default( m_widget );
903f689b 99*/
6de97a3b 100}
c801d85f
KB
101
102void wxButton::SetLabel( const wxString &label )
103{
f96aa4d9
RR
104 wxCHECK_RET( m_widget != NULL, "invalid button" );
105
c801d85f 106 wxControl::SetLabel( label );
f96aa4d9
RR
107
108 gtk_label_set( GTK_LABEL( GTK_BUTTON(m_widget)->child ), GetLabel() );
6de97a3b 109}
c801d85f 110
a9c96bcc
RR
111void wxButton::Enable( bool enable )
112{
f96aa4d9
RR
113 wxCHECK_RET( m_widget != NULL, "invalid button" );
114
a9c96bcc 115 wxControl::Enable( enable );
f96aa4d9
RR
116
117 gtk_widget_set_sensitive( GTK_BUTTON(m_widget)->child, enable );
a9c96bcc
RR
118}
119
58614078 120void wxButton::ApplyWidgetStyle()
868a2826 121{
58614078 122 SetWidgetStyle();
a81258be 123 gtk_widget_set_style( m_widget, m_widgetStyle );
a81258be
RR
124 gtk_widget_set_style( GTK_BUTTON(m_widget)->child, m_widgetStyle );
125}
f96aa4d9 126
fd0eed64 127