]>
Commit | Line | Data |
---|---|---|
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 | ||
83624f79 RR |
16 | #include "gdk/gdk.h" |
17 | #include "gtk/gtk.h" | |
18 | ||
c801d85f KB |
19 | //----------------------------------------------------------------------------- |
20 | // classes | |
21 | //----------------------------------------------------------------------------- | |
22 | ||
23 | class wxButton; | |
24 | ||
acfd422a RR |
25 | //----------------------------------------------------------------------------- |
26 | // idle system | |
27 | //----------------------------------------------------------------------------- | |
28 | ||
29 | extern void wxapp_install_idle_handler(); | |
30 | extern bool g_isIdle; | |
31 | ||
66bd6b93 RR |
32 | //----------------------------------------------------------------------------- |
33 | // data | |
34 | //----------------------------------------------------------------------------- | |
35 | ||
36 | extern bool g_blockEventsOnDrag; | |
37 | ||
c801d85f | 38 | //----------------------------------------------------------------------------- |
e1e955e1 | 39 | // "clicked" |
c801d85f KB |
40 | //----------------------------------------------------------------------------- |
41 | ||
66bd6b93 | 42 | static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button ) |
c801d85f | 43 | { |
32ac755d RR |
44 | if (g_isIdle) |
45 | wxapp_install_idle_handler(); | |
acfd422a | 46 | |
a2053b27 | 47 | if (!button->m_hasVMT) return; |
acfd422a | 48 | if (g_blockEventsOnDrag) return; |
32ac755d | 49 | |
acfd422a RR |
50 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, button->GetId()); |
51 | event.SetEventObject(button); | |
52 | button->GetEventHandler()->ProcessEvent(event); | |
6de97a3b | 53 | } |
c801d85f KB |
54 | |
55 | //----------------------------------------------------------------------------- | |
e1e955e1 RR |
56 | // wxButton |
57 | //----------------------------------------------------------------------------- | |
58 | ||
59 | IMPLEMENT_DYNAMIC_CLASS(wxButton,wxControl) | |
c801d85f | 60 | |
fd0eed64 | 61 | wxButton::wxButton() |
c801d85f | 62 | { |
6de97a3b | 63 | } |
c801d85f | 64 | |
fd0eed64 RR |
65 | wxButton::~wxButton() |
66 | { | |
acfd422a | 67 | if (m_clientData) delete m_clientData; |
fd0eed64 RR |
68 | } |
69 | ||
c801d85f | 70 | bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label, |
32c77a71 | 71 | const wxPoint &pos, const wxSize &size, |
6de97a3b | 72 | long style, const wxValidator& validator, const wxString &name ) |
c801d85f | 73 | { |
b292e2f5 RR |
74 | m_clientData = (wxClientData*) NULL; |
75 | m_needParent = TRUE; | |
76 | m_acceptsFocus = TRUE; | |
32c77a71 | 77 | |
b292e2f5 | 78 | wxSize newSize = size; |
c801d85f | 79 | |
b292e2f5 | 80 | PreCreation( parent, id, pos, newSize, style, name ); |
6de97a3b | 81 | |
b292e2f5 | 82 | SetValidator( validator ); |
32c77a71 | 83 | |
de1c750f RR |
84 | m_widget = gtk_button_new_with_label( "" ); |
85 | ||
86 | #if (GTK_MINOR_VERSION > 0) | |
87 | if (style & wxNO_BORDER) | |
88 | gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE ); | |
89 | #endif | |
90 | ||
b292e2f5 | 91 | SetLabel(label); |
32c77a71 | 92 | |
3bce7509 | 93 | if (newSize.x == -1) newSize.x = 15+gdk_string_measure( m_widget->style->font, label.mbc_str() ); |
b292e2f5 RR |
94 | if (newSize.y == -1) newSize.y = 26; |
95 | SetSize( newSize.x, newSize.y ); | |
32c77a71 | 96 | |
b292e2f5 RR |
97 | gtk_signal_connect( GTK_OBJECT(m_widget), "clicked", |
98 | GTK_SIGNAL_FUNC(gtk_button_clicked_callback), (gpointer*)this ); | |
c801d85f | 99 | |
f03fc89f | 100 | m_parent->DoAddChild( this ); |
6ca41e57 | 101 | |
b292e2f5 | 102 | PostCreation(); |
f96aa4d9 | 103 | |
b292e2f5 RR |
104 | SetBackgroundColour( parent->GetBackgroundColour() ); |
105 | SetForegroundColour( parent->GetForegroundColour() ); | |
a7ac4461 | 106 | SetFont( parent->GetFont() ); |
32c77a71 | 107 | |
b292e2f5 | 108 | Show( TRUE ); |
32c77a71 | 109 | |
b292e2f5 | 110 | return TRUE; |
6de97a3b | 111 | } |
32c77a71 | 112 | |
c801d85f KB |
113 | void wxButton::SetDefault(void) |
114 | { | |
3502e687 RR |
115 | GTK_WIDGET_SET_FLAGS( m_widget, GTK_CAN_DEFAULT ); |
116 | gtk_widget_grab_default( m_widget ); | |
117 | ||
118 | SetSize( m_x, m_y, m_width, m_height ); | |
6de97a3b | 119 | } |
c801d85f KB |
120 | |
121 | void wxButton::SetLabel( const wxString &label ) | |
122 | { | |
3bce7509 | 123 | wxCHECK_RET( m_widget != NULL, _T("invalid button") ); |
f96aa4d9 | 124 | |
b292e2f5 | 125 | wxControl::SetLabel( label ); |
f96aa4d9 | 126 | |
3bce7509 | 127 | gtk_label_set( GTK_LABEL( GTK_BUTTON(m_widget)->child ), GetLabel().mbc_str() ); |
6de97a3b | 128 | } |
c801d85f | 129 | |
f03fc89f | 130 | bool wxButton::Enable( bool enable ) |
a9c96bcc | 131 | { |
f03fc89f VZ |
132 | if ( !wxControl::Enable( enable ) ) |
133 | return FALSE; | |
f96aa4d9 | 134 | |
b292e2f5 | 135 | gtk_widget_set_sensitive( GTK_BUTTON(m_widget)->child, enable ); |
f03fc89f VZ |
136 | |
137 | return TRUE; | |
a9c96bcc RR |
138 | } |
139 | ||
58614078 | 140 | void wxButton::ApplyWidgetStyle() |
868a2826 | 141 | { |
b292e2f5 RR |
142 | SetWidgetStyle(); |
143 | gtk_widget_set_style( m_widget, m_widgetStyle ); | |
144 | gtk_widget_set_style( GTK_BUTTON(m_widget)->child, m_widgetStyle ); | |
a81258be | 145 | } |