]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/checkbox.cpp
Fox around a bug in GTK's GtkNotebook
[wxWidgets.git] / src / gtk / checkbox.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: checkbox.cpp
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
ff8bfdbb 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifdef __GNUG__
12#pragma implementation "checkbox.h"
13#endif
14
15#include "wx/checkbox.h"
16
83624f79
RR
17#include "gdk/gdk.h"
18#include "gtk/gtk.h"
19
acfd422a
RR
20//-----------------------------------------------------------------------------
21// idle system
22//-----------------------------------------------------------------------------
23
24extern void wxapp_install_idle_handler();
25extern bool g_isIdle;
26
66bd6b93
RR
27//-----------------------------------------------------------------------------
28// data
29//-----------------------------------------------------------------------------
30
31extern bool g_blockEventsOnDrag;
32
c801d85f 33//-----------------------------------------------------------------------------
e1e955e1 34// "clicked"
c801d85f
KB
35//-----------------------------------------------------------------------------
36
66bd6b93 37static void gtk_checkbox_clicked_callback( GtkWidget *WXUNUSED(widget), wxCheckBox *cb )
c801d85f 38{
acfd422a
RR
39 if (g_isIdle) wxapp_install_idle_handler();
40
b292e2f5 41 if (!cb->HasVMT()) return;
ff8bfdbb 42
b292e2f5
RR
43 if (cb->m_blockFirstEvent)
44 {
45 cb->m_blockFirstEvent = FALSE;
46 return;
ff8bfdbb
VZ
47 }
48
b292e2f5 49 if (g_blockEventsOnDrag) return;
ff8bfdbb 50
b292e2f5
RR
51 wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, cb->GetId());
52 event.SetInt( cb->GetValue() );
53 event.SetEventObject(cb);
54 cb->GetEventHandler()->ProcessEvent(event);
6de97a3b 55}
c801d85f 56
e1e955e1
RR
57//-----------------------------------------------------------------------------
58// wxCheckBox
c801d85f
KB
59//-----------------------------------------------------------------------------
60
61IMPLEMENT_DYNAMIC_CLASS(wxCheckBox,wxControl)
62
2cc0e28f 63wxCheckBox::wxCheckBox()
c801d85f 64{
6de97a3b 65}
c801d85f 66
2cc0e28f
VZ
67bool wxCheckBox::Create(wxWindow *parent,
68 wxWindowID id,
69 const wxString &label,
70 const wxPoint &pos,
71 const wxSize &size,
72 long style,
73 const wxValidator& validator,
74 const wxString &name )
c801d85f 75{
b292e2f5
RR
76 m_needParent = TRUE;
77 m_acceptsFocus = TRUE;
ff8bfdbb 78
b292e2f5 79 PreCreation( parent, id, pos, size, style, name );
c801d85f 80
2cc0e28f
VZ
81 m_blockFirstEvent = FALSE;
82
b292e2f5 83 SetValidator( validator );
2cc0e28f
VZ
84 wxControl::SetLabel( label );
85
86 if ( style & wxALIGN_RIGHT )
87 {
88 // VZ: as I don't know a way to create a right aligned checkbox with
89 // GTK we will create a checkbox without label and a label at the
90 // left of it
91 m_widgetCheckbox = gtk_check_button_new();
6de97a3b 92
3bce7509 93 m_widgetLabel = gtk_label_new(m_label.mbc_str());
2cc0e28f 94 gtk_misc_set_alignment(GTK_MISC(m_widgetLabel), 0.0, 0.5);
ff8bfdbb 95
2cc0e28f
VZ
96 m_widget = gtk_hbox_new(FALSE, 0);
97 gtk_box_pack_start(GTK_BOX(m_widget), m_widgetLabel, FALSE, FALSE, 3);
98 gtk_box_pack_start(GTK_BOX(m_widget), m_widgetCheckbox, FALSE, FALSE, 3);
99
100 // VZ: why do I have to do this to make them appear?
101 gtk_widget_show( m_widgetLabel );
102 gtk_widget_show( m_widgetCheckbox );
103 }
104 else
105 {
3bce7509 106 m_widgetCheckbox = gtk_check_button_new_with_label( m_label.mbc_str() );
2cc0e28f
VZ
107 m_widgetLabel = GTK_BUTTON( m_widgetCheckbox )->child;
108 m_widget = m_widgetCheckbox;
109 }
110
111 wxSize newSize(size);
112 if (newSize.x == -1)
113 {
114 newSize.x = 25 + gdk_string_measure( m_widgetCheckbox->style->font,
3bce7509 115 m_label.mbc_str() );
2cc0e28f
VZ
116 }
117 if (newSize.y == -1)
118 newSize.y = 26;
ff8bfdbb 119
b292e2f5 120 SetSize( newSize.x, newSize.y );
ff8bfdbb 121
2cc0e28f
VZ
122 gtk_signal_connect( GTK_OBJECT(m_widgetCheckbox),
123 "clicked",
124 GTK_SIGNAL_FUNC(gtk_checkbox_clicked_callback),
125 (gpointer *)this );
ff8bfdbb 126
b292e2f5 127 m_parent->AddChild( this );
6ca41e57 128
b292e2f5 129 (m_parent->m_insertCallback)( m_parent, this );
ff8bfdbb 130
b292e2f5 131 PostCreation();
ff8bfdbb 132
b292e2f5
RR
133 SetBackgroundColour( parent->GetBackgroundColour() );
134 SetForegroundColour( parent->GetForegroundColour() );
a7ac4461 135 SetFont( parent->GetFont() );
f96aa4d9 136
b292e2f5 137 Show( TRUE );
ff8bfdbb 138
b292e2f5 139 return TRUE;
6de97a3b 140}
c801d85f 141
debe6624 142void wxCheckBox::SetValue( bool state )
c801d85f 143{
3bce7509 144 wxCHECK_RET( m_widgetCheckbox != NULL, _T("invalid checkbox") );
ff8bfdbb 145
8bf45ed1
VZ
146 if ( state == GetValue() )
147 return;
148
149 // for compatibility with wxMSW don't send notification when the check box
150 // state is changed programmatically
b292e2f5 151 m_blockFirstEvent = TRUE;
ae0bdb01 152
2cc0e28f 153 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widgetCheckbox), state );
6de97a3b 154}
c801d85f 155
83058c58 156bool wxCheckBox::GetValue() const
c801d85f 157{
3bce7509 158 wxCHECK_MSG( m_widgetCheckbox != NULL, FALSE, _T("invalid checkbox") );
f96aa4d9 159
2cc0e28f 160 return GTK_TOGGLE_BUTTON(m_widgetCheckbox)->active;
6de97a3b 161}
c801d85f 162
83058c58
RR
163void wxCheckBox::SetLabel( const wxString& label )
164{
3bce7509 165 wxCHECK_RET( m_widgetLabel != NULL, _T("invalid checkbox") );
f96aa4d9 166
b292e2f5 167 wxControl::SetLabel( label );
ff8bfdbb 168
3bce7509 169 gtk_label_set( GTK_LABEL(m_widgetLabel), GetLabel().mbc_str() );
83058c58
RR
170}
171
d3904ceb
RR
172void wxCheckBox::Enable( bool enable )
173{
3bce7509 174 wxCHECK_RET( m_widgetLabel != NULL, _T("invalid checkbox") );
f96aa4d9 175
b292e2f5 176 wxControl::Enable( enable );
ff8bfdbb 177
2cc0e28f 178 gtk_widget_set_sensitive( m_widgetLabel, enable );
d3904ceb
RR
179}
180
58614078 181void wxCheckBox::ApplyWidgetStyle()
868a2826 182{
b292e2f5 183 SetWidgetStyle();
2cc0e28f
VZ
184 gtk_widget_set_style( m_widgetCheckbox, m_widgetStyle );
185 gtk_widget_set_style( m_widgetLabel, m_widgetStyle );
f96aa4d9
RR
186}
187