]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/checkbox.cpp
no message
[wxWidgets.git] / src / gtk1 / 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
dcf924a3
RR
17#if wxUSE_CHECKBOX
18
83624f79
RR
19#include "gdk/gdk.h"
20#include "gtk/gtk.h"
21
acfd422a
RR
22//-----------------------------------------------------------------------------
23// idle system
24//-----------------------------------------------------------------------------
25
26extern void wxapp_install_idle_handler();
27extern bool g_isIdle;
28
66bd6b93
RR
29//-----------------------------------------------------------------------------
30// data
31//-----------------------------------------------------------------------------
32
2f073eb2
RR
33extern bool g_blockEventsOnDrag;
34extern wxCursor g_globalCursor;
66bd6b93 35
c801d85f 36//-----------------------------------------------------------------------------
e1e955e1 37// "clicked"
c801d85f
KB
38//-----------------------------------------------------------------------------
39
66bd6b93 40static void gtk_checkbox_clicked_callback( GtkWidget *WXUNUSED(widget), wxCheckBox *cb )
c801d85f 41{
acfd422a
RR
42 if (g_isIdle) wxapp_install_idle_handler();
43
a2053b27 44 if (!cb->m_hasVMT) return;
ff8bfdbb 45
b292e2f5 46 if (g_blockEventsOnDrag) return;
ff8bfdbb 47
b292e2f5
RR
48 wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, cb->GetId());
49 event.SetInt( cb->GetValue() );
50 event.SetEventObject(cb);
51 cb->GetEventHandler()->ProcessEvent(event);
6de97a3b 52}
c801d85f 53
e1e955e1
RR
54//-----------------------------------------------------------------------------
55// wxCheckBox
c801d85f
KB
56//-----------------------------------------------------------------------------
57
58IMPLEMENT_DYNAMIC_CLASS(wxCheckBox,wxControl)
59
2cc0e28f 60wxCheckBox::wxCheckBox()
c801d85f 61{
6de97a3b 62}
c801d85f 63
2cc0e28f
VZ
64bool wxCheckBox::Create(wxWindow *parent,
65 wxWindowID id,
66 const wxString &label,
67 const wxPoint &pos,
68 const wxSize &size,
69 long style,
70 const wxValidator& validator,
71 const wxString &name )
c801d85f 72{
b292e2f5
RR
73 m_needParent = TRUE;
74 m_acceptsFocus = TRUE;
ff8bfdbb 75
4dcaf11a
RR
76 if (!PreCreation( parent, pos, size ) ||
77 !CreateBase( parent, id, pos, size, style, validator, name ))
78 {
223d09f6 79 wxFAIL_MSG( wxT("wxCheckBox creation failed") );
4dcaf11a
RR
80 return FALSE;
81 }
ce4169a4 82
2cc0e28f
VZ
83 wxControl::SetLabel( label );
84
85 if ( style & wxALIGN_RIGHT )
86 {
87 // VZ: as I don't know a way to create a right aligned checkbox with
88 // GTK we will create a checkbox without label and a label at the
89 // left of it
90 m_widgetCheckbox = gtk_check_button_new();
6de97a3b 91
3bce7509 92 m_widgetLabel = gtk_label_new(m_label.mbc_str());
2cc0e28f 93 gtk_misc_set_alignment(GTK_MISC(m_widgetLabel), 0.0, 0.5);
ff8bfdbb 94
2cc0e28f
VZ
95 m_widget = gtk_hbox_new(FALSE, 0);
96 gtk_box_pack_start(GTK_BOX(m_widget), m_widgetLabel, FALSE, FALSE, 3);
97 gtk_box_pack_start(GTK_BOX(m_widget), m_widgetCheckbox, FALSE, FALSE, 3);
98
2cc0e28f
VZ
99 gtk_widget_show( m_widgetLabel );
100 gtk_widget_show( m_widgetCheckbox );
101 }
102 else
103 {
3bce7509 104 m_widgetCheckbox = gtk_check_button_new_with_label( m_label.mbc_str() );
2cc0e28f
VZ
105 m_widgetLabel = GTK_BUTTON( m_widgetCheckbox )->child;
106 m_widget = m_widgetCheckbox;
107 }
108
109 wxSize newSize(size);
110 if (newSize.x == -1)
111 {
112 newSize.x = 25 + gdk_string_measure( m_widgetCheckbox->style->font,
3bce7509 113 m_label.mbc_str() );
2cc0e28f
VZ
114 }
115 if (newSize.y == -1)
116 newSize.y = 26;
ff8bfdbb 117
b292e2f5 118 SetSize( newSize.x, newSize.y );
ff8bfdbb 119
2cc0e28f
VZ
120 gtk_signal_connect( GTK_OBJECT(m_widgetCheckbox),
121 "clicked",
122 GTK_SIGNAL_FUNC(gtk_checkbox_clicked_callback),
123 (gpointer *)this );
ff8bfdbb 124
f03fc89f 125 m_parent->DoAddChild( this );
ff8bfdbb 126
b292e2f5 127 PostCreation();
ff8bfdbb 128
b292e2f5
RR
129 SetBackgroundColour( parent->GetBackgroundColour() );
130 SetForegroundColour( parent->GetForegroundColour() );
a7ac4461 131 SetFont( parent->GetFont() );
f96aa4d9 132
b292e2f5 133 Show( TRUE );
ff8bfdbb 134
b292e2f5 135 return TRUE;
6de97a3b 136}
c801d85f 137
debe6624 138void wxCheckBox::SetValue( bool state )
c801d85f 139{
223d09f6 140 wxCHECK_RET( m_widgetCheckbox != NULL, wxT("invalid checkbox") );
ff8bfdbb 141
953704c1 142 if (state == GetValue())
8bf45ed1
VZ
143 return;
144
953704c1
RR
145 gtk_signal_disconnect_by_func( GTK_OBJECT(m_widgetCheckbox),
146 GTK_SIGNAL_FUNC(gtk_checkbox_clicked_callback),
147 (gpointer *)this );
ae0bdb01 148
2cc0e28f 149 gtk_toggle_button_set_state( GTK_TOGGLE_BUTTON(m_widgetCheckbox), state );
953704c1
RR
150
151 gtk_signal_connect( GTK_OBJECT(m_widgetCheckbox),
152 "clicked",
153 GTK_SIGNAL_FUNC(gtk_checkbox_clicked_callback),
154 (gpointer *)this );
6de97a3b 155}
c801d85f 156
83058c58 157bool wxCheckBox::GetValue() const
c801d85f 158{
223d09f6 159 wxCHECK_MSG( m_widgetCheckbox != NULL, FALSE, wxT("invalid checkbox") );
f96aa4d9 160
2cc0e28f 161 return GTK_TOGGLE_BUTTON(m_widgetCheckbox)->active;
6de97a3b 162}
c801d85f 163
83058c58
RR
164void wxCheckBox::SetLabel( const wxString& label )
165{
223d09f6 166 wxCHECK_RET( m_widgetLabel != NULL, wxT("invalid checkbox") );
f96aa4d9 167
b292e2f5 168 wxControl::SetLabel( label );
ff8bfdbb 169
3bce7509 170 gtk_label_set( GTK_LABEL(m_widgetLabel), GetLabel().mbc_str() );
83058c58
RR
171}
172
f03fc89f 173bool wxCheckBox::Enable( bool enable )
d3904ceb 174{
f03fc89f
VZ
175 if ( !wxControl::Enable( enable ) )
176 return FALSE;
ff8bfdbb 177
2cc0e28f 178 gtk_widget_set_sensitive( m_widgetLabel, enable );
f03fc89f
VZ
179
180 return TRUE;
d3904ceb
RR
181}
182
58614078 183void wxCheckBox::ApplyWidgetStyle()
868a2826 184{
b292e2f5 185 SetWidgetStyle();
2cc0e28f
VZ
186 gtk_widget_set_style( m_widgetCheckbox, m_widgetStyle );
187 gtk_widget_set_style( m_widgetLabel, m_widgetStyle );
f96aa4d9
RR
188}
189
2f073eb2
RR
190bool wxCheckBox::IsOwnGtkWindow( GdkWindow *window )
191{
192 return (window == GTK_TOGGLE_BUTTON(m_widget)->event_window);
193}
194
195void wxCheckBox::OnInternalIdle()
196{
197 wxCursor cursor = m_cursor;
198 if (g_globalCursor.Ok()) cursor = g_globalCursor;
199
200 if (GTK_TOGGLE_BUTTON(m_widget)->event_window && cursor.Ok())
201 {
202 /* I now set the cursor the anew in every OnInternalIdle call
203 as setting the cursor in a parent window also effects the
204 windows above so that checking for the current cursor is
205 not possible. */
206
207 gdk_window_set_cursor( GTK_TOGGLE_BUTTON(m_widget)->event_window, cursor.GetCursor() );
208 }
209
210 UpdateWindowUI();
211}
212
dcf924a3 213#endif