1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "checkbox.h"
19 #include "wx/checkbox.h"
21 #include "wx/gtk/private.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
27 extern void wxapp_install_idle_handler();
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 extern bool g_blockEventsOnDrag
;
35 extern wxCursor g_globalCursor
;
37 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
41 static void gtk_checkbox_clicked_callback( GtkWidget
*WXUNUSED(widget
), wxCheckBox
*cb
)
43 if (g_isIdle
) wxapp_install_idle_handler();
45 if (!cb
->m_hasVMT
) return;
47 if (g_blockEventsOnDrag
) return;
49 if (cb
->m_blockEvent
) return;
51 wxCommandEvent
event(wxEVT_COMMAND_CHECKBOX_CLICKED
, cb
->GetId());
52 event
.SetInt( cb
->GetValue() );
53 event
.SetEventObject(cb
);
54 cb
->GetEventHandler()->ProcessEvent(event
);
57 //-----------------------------------------------------------------------------
59 //-----------------------------------------------------------------------------
61 IMPLEMENT_DYNAMIC_CLASS(wxCheckBox
,wxControl
)
63 wxCheckBox::wxCheckBox()
67 bool wxCheckBox::Create(wxWindow
*parent
,
69 const wxString
&label
,
73 const wxValidator
& validator
,
74 const wxString
&name
)
77 m_acceptsFocus
= TRUE
;
80 if (!PreCreation( parent
, pos
, size
) ||
81 !CreateBase( parent
, id
, pos
, size
, style
, validator
, name
))
83 wxFAIL_MSG( wxT("wxCheckBox creation failed") );
87 wxControl::SetLabel( label
);
89 if ( style
& wxALIGN_RIGHT
)
91 // VZ: as I don't know a way to create a right aligned checkbox with
92 // GTK we will create a checkbox without label and a label at the
94 m_widgetCheckbox
= gtk_check_button_new();
96 m_widgetLabel
= gtk_label_new(m_label
.mbc_str());
97 gtk_misc_set_alignment(GTK_MISC(m_widgetLabel
), 0.0, 0.5);
99 m_widget
= gtk_hbox_new(FALSE
, 0);
100 gtk_box_pack_start(GTK_BOX(m_widget
), m_widgetLabel
, FALSE
, FALSE
, 3);
101 gtk_box_pack_start(GTK_BOX(m_widget
), m_widgetCheckbox
, FALSE
, FALSE
, 3);
103 gtk_widget_show( m_widgetLabel
);
104 gtk_widget_show( m_widgetCheckbox
);
108 m_widgetCheckbox
= gtk_check_button_new_with_label( m_label
.mbc_str() );
109 m_widgetLabel
= BUTTON_CHILD( m_widgetCheckbox
);
110 m_widget
= m_widgetCheckbox
;
113 gtk_signal_connect( GTK_OBJECT(m_widgetCheckbox
),
115 GTK_SIGNAL_FUNC(gtk_checkbox_clicked_callback
),
118 m_parent
->DoAddChild( this );
122 SetFont( parent
->GetFont() );
124 wxSize
size_best( DoGetBestSize() );
125 wxSize
new_size( size
);
126 if (new_size
.x
== -1)
127 new_size
.x
= size_best
.x
;
128 if (new_size
.y
== -1)
129 new_size
.y
= size_best
.y
;
130 if ((new_size
.x
!= size
.x
) || (new_size
.y
!= size
.y
))
131 SetSize( new_size
.x
, new_size
.y
);
133 SetBackgroundColour( parent
->GetBackgroundColour() );
134 SetForegroundColour( parent
->GetForegroundColour() );
141 void wxCheckBox::SetValue( bool state
)
143 wxCHECK_RET( m_widgetCheckbox
!= NULL
, wxT("invalid checkbox") );
145 if (state
== GetValue())
150 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widgetCheckbox
), state
);
152 m_blockEvent
= FALSE
;
155 bool wxCheckBox::GetValue() const
157 wxCHECK_MSG( m_widgetCheckbox
!= NULL
, FALSE
, wxT("invalid checkbox") );
159 return GTK_TOGGLE_BUTTON(m_widgetCheckbox
)->active
;
162 void wxCheckBox::SetLabel( const wxString
& label
)
164 wxCHECK_RET( m_widgetLabel
!= NULL
, wxT("invalid checkbox") );
166 wxControl::SetLabel( label
);
168 gtk_label_set( GTK_LABEL(m_widgetLabel
), GetLabel().mbc_str() );
171 bool wxCheckBox::Enable( bool enable
)
173 if ( !wxControl::Enable( enable
) )
176 gtk_widget_set_sensitive( m_widgetLabel
, enable
);
181 void wxCheckBox::ApplyWidgetStyle()
184 gtk_widget_set_style( m_widgetCheckbox
, m_widgetStyle
);
185 gtk_widget_set_style( m_widgetLabel
, m_widgetStyle
);
188 bool wxCheckBox::IsOwnGtkWindow( GdkWindow
*window
)
190 return window
== TOGGLE_BUTTON_EVENT_WIN(m_widget
);
193 void wxCheckBox::OnInternalIdle()
195 wxCursor cursor
= m_cursor
;
196 if (g_globalCursor
.Ok()) cursor
= g_globalCursor
;
198 GdkWindow
*event_window
= TOGGLE_BUTTON_EVENT_WIN(m_widgetCheckbox
);
199 if ( event_window
&& cursor
.Ok() )
201 /* I now set the cursor the anew in every OnInternalIdle call
202 as setting the cursor in a parent window also effects the
203 windows above so that checking for the current cursor is
206 gdk_window_set_cursor( event_window
, cursor
.GetCursor() );
212 wxSize
wxCheckBox::DoGetBestSize() const
214 return wxControl::DoGetBestSize();