]> Pileus Git - ~andy/gtk/blob - gtk/gtktogglebutton.c
Apply a cleanup patch by Kjartan Maraas (#341812)
[~andy/gtk] / gtk / gtktogglebutton.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include <config.h>
28 #include "gtklabel.h"
29 #include "gtkmain.h"
30 #include "gtkmarshalers.h"
31 #include "gtktogglebutton.h"
32 #include "gtkprivate.h"
33 #include "gtkintl.h"
34 #include "gtkalias.h"
35
36 #define DEFAULT_LEFT_POS  4
37 #define DEFAULT_TOP_POS   4
38 #define DEFAULT_SPACING   7
39
40 enum {
41   TOGGLED,
42   LAST_SIGNAL
43 };
44
45 enum {
46   PROP_0,
47   PROP_ACTIVE,
48   PROP_INCONSISTENT,
49   PROP_DRAW_INDICATOR
50 };
51
52
53 static gint gtk_toggle_button_expose        (GtkWidget            *widget,
54                                              GdkEventExpose       *event);
55 static gboolean gtk_toggle_button_mnemonic_activate  (GtkWidget            *widget,
56                                                       gboolean              group_cycling);
57 static void gtk_toggle_button_pressed       (GtkButton            *button);
58 static void gtk_toggle_button_released      (GtkButton            *button);
59 static void gtk_toggle_button_clicked       (GtkButton            *button);
60 static void gtk_toggle_button_set_property  (GObject              *object,
61                                              guint                 prop_id,
62                                              const GValue         *value,
63                                              GParamSpec           *pspec);
64 static void gtk_toggle_button_get_property  (GObject              *object,
65                                              guint                 prop_id,
66                                              GValue               *value,
67                                              GParamSpec           *pspec);
68 static void gtk_toggle_button_update_state  (GtkButton            *button);
69
70 static guint toggle_button_signals[LAST_SIGNAL] = { 0 };
71
72 G_DEFINE_TYPE (GtkToggleButton, gtk_toggle_button, GTK_TYPE_BUTTON)
73
74 static void
75 gtk_toggle_button_class_init (GtkToggleButtonClass *class)
76 {
77   GObjectClass *gobject_class;
78   GtkWidgetClass *widget_class;
79   GtkButtonClass *button_class;
80
81   gobject_class = G_OBJECT_CLASS (class);
82   widget_class = (GtkWidgetClass*) class;
83   button_class = (GtkButtonClass*) class;
84
85   gobject_class->set_property = gtk_toggle_button_set_property;
86   gobject_class->get_property = gtk_toggle_button_get_property;
87
88   widget_class->expose_event = gtk_toggle_button_expose;
89   widget_class->mnemonic_activate = gtk_toggle_button_mnemonic_activate;
90
91   button_class->pressed = gtk_toggle_button_pressed;
92   button_class->released = gtk_toggle_button_released;
93   button_class->clicked = gtk_toggle_button_clicked;
94   button_class->enter = gtk_toggle_button_update_state;
95   button_class->leave = gtk_toggle_button_update_state;
96
97   class->toggled = NULL;
98
99   g_object_class_install_property (gobject_class,
100                                    PROP_ACTIVE,
101                                    g_param_spec_boolean ("active",
102                                                          P_("Active"),
103                                                          P_("If the toggle button should be pressed in or not"),
104                                                          FALSE,
105                                                          GTK_PARAM_READWRITE));
106
107   g_object_class_install_property (gobject_class,
108                                    PROP_INCONSISTENT,
109                                    g_param_spec_boolean ("inconsistent",
110                                                          P_("Inconsistent"),
111                                                          P_("If the toggle button is in an \"in between\" state"),
112                                                          FALSE,
113                                                          GTK_PARAM_READWRITE));
114
115   g_object_class_install_property (gobject_class,
116                                    PROP_DRAW_INDICATOR,
117                                    g_param_spec_boolean ("draw-indicator",
118                                                          P_("Draw Indicator"),
119                                                          P_("If the toggle part of the button is displayed"),
120                                                          FALSE,
121                                                          GTK_PARAM_READWRITE));
122
123   toggle_button_signals[TOGGLED] =
124     g_signal_new (I_("toggled"),
125                   G_OBJECT_CLASS_TYPE (gobject_class),
126                   G_SIGNAL_RUN_FIRST,
127                   G_STRUCT_OFFSET (GtkToggleButtonClass, toggled),
128                   NULL, NULL,
129                   _gtk_marshal_VOID__VOID,
130                   G_TYPE_NONE, 0);
131 }
132
133 static void
134 gtk_toggle_button_init (GtkToggleButton *toggle_button)
135 {
136   toggle_button->active = FALSE;
137   toggle_button->draw_indicator = FALSE;
138   GTK_BUTTON (toggle_button)->depress_on_activate = TRUE;
139 }
140
141
142 GtkWidget*
143 gtk_toggle_button_new (void)
144 {
145   return g_object_new (GTK_TYPE_TOGGLE_BUTTON, NULL);
146 }
147
148 GtkWidget*
149 gtk_toggle_button_new_with_label (const gchar *label)
150 {
151   return g_object_new (GTK_TYPE_TOGGLE_BUTTON, "label", label, NULL);
152 }
153
154 /**
155  * gtk_toggle_button_new_with_mnemonic:
156  * @label: the text of the button, with an underscore in front of the
157  *         mnemonic character
158  * @returns: a new #GtkToggleButton
159  *
160  * Creates a new #GtkToggleButton containing a label. The label
161  * will be created using gtk_label_new_with_mnemonic(), so underscores
162  * in @label indicate the mnemonic for the button.
163  **/
164 GtkWidget*
165 gtk_toggle_button_new_with_mnemonic (const gchar *label)
166 {
167   return g_object_new (GTK_TYPE_TOGGLE_BUTTON, 
168                        "label", label, 
169                        "use-underline", TRUE, 
170                        NULL);
171 }
172
173 static void
174 gtk_toggle_button_set_property (GObject      *object,
175                                 guint         prop_id,
176                                 const GValue *value,
177                                 GParamSpec   *pspec)
178 {
179   GtkToggleButton *tb;
180
181   tb = GTK_TOGGLE_BUTTON (object);
182
183   switch (prop_id)
184     {
185     case PROP_ACTIVE:
186       gtk_toggle_button_set_active (tb, g_value_get_boolean (value));
187       break;
188     case PROP_INCONSISTENT:
189       gtk_toggle_button_set_inconsistent (tb, g_value_get_boolean (value));
190       break;
191     case PROP_DRAW_INDICATOR:
192       gtk_toggle_button_set_mode (tb, g_value_get_boolean (value));
193       break;
194     default:
195       break;
196     }
197 }
198
199 static void
200 gtk_toggle_button_get_property (GObject      *object,
201                                 guint         prop_id,
202                                 GValue       *value,
203                                 GParamSpec   *pspec)
204 {
205   GtkToggleButton *tb;
206
207   tb = GTK_TOGGLE_BUTTON (object);
208
209   switch (prop_id)
210     {
211     case PROP_ACTIVE:
212       g_value_set_boolean (value, tb->active);
213       break;
214     case PROP_INCONSISTENT:
215       g_value_set_boolean (value, tb->inconsistent);
216       break;
217     case PROP_DRAW_INDICATOR:
218       g_value_set_boolean (value, tb->draw_indicator);
219       break;
220     default:
221       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
222       break;
223     }
224 }
225
226 /**
227  * gtk_toggle_button_set_mode:
228  * @toggle_button: a #GtkToggleButton
229  * @draw_indicator: if %TRUE, draw the button as a separate indicator
230  * and label; if %FALSE, draw the button like a normal button
231  *
232  * Sets whether the button is displayed as a separate indicator and label.
233  * You can call this function on a checkbutton or a radiobutton with
234  * @draw_indicator = %FALSE to make the button look like a normal button
235  *
236  * This function only affects instances of classes like #GtkCheckButton
237  * and #GtkRadioButton that derive from #GtkToggleButton,
238  * not instances of #GtkToggleButton itself.
239  */
240 void
241 gtk_toggle_button_set_mode (GtkToggleButton *toggle_button,
242                             gboolean         draw_indicator)
243 {
244   g_return_if_fail (GTK_IS_TOGGLE_BUTTON (toggle_button));
245
246   draw_indicator = draw_indicator ? TRUE : FALSE;
247
248   if (toggle_button->draw_indicator != draw_indicator)
249     {
250       toggle_button->draw_indicator = draw_indicator;
251       GTK_BUTTON (toggle_button)->depress_on_activate = !draw_indicator;
252       
253       if (GTK_WIDGET_VISIBLE (toggle_button))
254         gtk_widget_queue_resize (GTK_WIDGET (toggle_button));
255
256       g_object_notify (G_OBJECT (toggle_button), "draw-indicator");
257     }
258 }
259
260 /**
261  * gtk_toggle_button_get_mode:
262  * @toggle_button: a #GtkToggleButton
263  *
264  * Retrieves whether the button is displayed as a separate indicator
265  * and label. See gtk_toggle_button_set_mode().
266  *
267  * Return value: %TRUE if the togglebutton is drawn as a separate indicator
268  *   and label.
269  **/
270 gboolean
271 gtk_toggle_button_get_mode (GtkToggleButton *toggle_button)
272 {
273   g_return_val_if_fail (GTK_IS_TOGGLE_BUTTON (toggle_button), FALSE);
274
275   return toggle_button->draw_indicator;
276 }
277
278 void
279 gtk_toggle_button_set_active (GtkToggleButton *toggle_button,
280                               gboolean         is_active)
281 {
282   g_return_if_fail (GTK_IS_TOGGLE_BUTTON (toggle_button));
283
284   is_active = is_active != FALSE;
285
286   if (toggle_button->active != is_active)
287     gtk_button_clicked (GTK_BUTTON (toggle_button));
288 }
289
290
291 gboolean
292 gtk_toggle_button_get_active (GtkToggleButton *toggle_button)
293 {
294   g_return_val_if_fail (GTK_IS_TOGGLE_BUTTON (toggle_button), FALSE);
295
296   return (toggle_button->active) ? TRUE : FALSE;
297 }
298
299
300 void
301 gtk_toggle_button_toggled (GtkToggleButton *toggle_button)
302 {
303   g_return_if_fail (GTK_IS_TOGGLE_BUTTON (toggle_button));
304
305   g_signal_emit (toggle_button, toggle_button_signals[TOGGLED], 0);
306 }
307
308 /**
309  * gtk_toggle_button_set_inconsistent:
310  * @toggle_button: a #GtkToggleButton
311  * @setting: %TRUE if state is inconsistent
312  *
313  * If the user has selected a range of elements (such as some text or
314  * spreadsheet cells) that are affected by a toggle button, and the
315  * current values in that range are inconsistent, you may want to
316  * display the toggle in an "in between" state. This function turns on
317  * "in between" display.  Normally you would turn off the inconsistent
318  * state again if the user toggles the toggle button. This has to be
319  * done manually, gtk_toggle_button_set_inconsistent() only affects
320  * visual appearance, it doesn't affect the semantics of the button.
321  * 
322  **/
323 void
324 gtk_toggle_button_set_inconsistent (GtkToggleButton *toggle_button,
325                                     gboolean         setting)
326 {
327   g_return_if_fail (GTK_IS_TOGGLE_BUTTON (toggle_button));
328   
329   setting = setting != FALSE;
330
331   if (setting != toggle_button->inconsistent)
332     {
333       toggle_button->inconsistent = setting;
334       
335       gtk_toggle_button_update_state (GTK_BUTTON (toggle_button));
336       gtk_widget_queue_draw (GTK_WIDGET (toggle_button));
337
338       g_object_notify (G_OBJECT (toggle_button), "inconsistent");      
339     }
340 }
341
342 /**
343  * gtk_toggle_button_get_inconsistent:
344  * @toggle_button: a #GtkToggleButton
345  * 
346  * Gets the value set by gtk_toggle_button_set_inconsistent().
347  * 
348  * Return value: %TRUE if the button is displayed as inconsistent, %FALSE otherwise
349  **/
350 gboolean
351 gtk_toggle_button_get_inconsistent (GtkToggleButton *toggle_button)
352 {
353   g_return_val_if_fail (GTK_IS_TOGGLE_BUTTON (toggle_button), FALSE);
354
355   return toggle_button->inconsistent;
356 }
357
358 static gint
359 gtk_toggle_button_expose (GtkWidget      *widget,
360                           GdkEventExpose *event)
361 {
362   if (GTK_WIDGET_DRAWABLE (widget))
363     {
364       GtkWidget *child = GTK_BIN (widget)->child;
365       GtkButton *button = GTK_BUTTON (widget);
366       GtkStateType state_type;
367       GtkShadowType shadow_type;
368
369       state_type = GTK_WIDGET_STATE (widget);
370       
371       if (GTK_TOGGLE_BUTTON (widget)->inconsistent)
372         {
373           if (state_type == GTK_STATE_ACTIVE)
374             state_type = GTK_STATE_NORMAL;
375           shadow_type = GTK_SHADOW_ETCHED_IN;
376         }
377       else
378         shadow_type = button->depressed ? GTK_SHADOW_IN : GTK_SHADOW_OUT;
379
380       _gtk_button_paint (button, &event->area, state_type, shadow_type,
381                          "togglebutton", "togglebuttondefault");
382
383       if (child)
384         gtk_container_propagate_expose (GTK_CONTAINER (widget), child, event);
385     }
386   
387   return FALSE;
388 }
389
390 static gboolean
391 gtk_toggle_button_mnemonic_activate (GtkWidget *widget,
392                                      gboolean   group_cycling)
393 {
394   /*
395    * We override the standard implementation in 
396    * gtk_widget_real_mnemonic_activate() in order to focus the widget even
397    * if there is no mnemonic conflict.
398    */
399   if (GTK_WIDGET_CAN_FOCUS (widget))
400     gtk_widget_grab_focus (widget);
401
402   if (!group_cycling)
403     gtk_widget_activate (widget);
404
405   return TRUE;
406 }
407
408 static void
409 gtk_toggle_button_pressed (GtkButton *button)
410 {
411   button->button_down = TRUE;
412
413   gtk_toggle_button_update_state (button);
414   gtk_widget_queue_draw (GTK_WIDGET (button));
415 }
416
417 static void
418 gtk_toggle_button_released (GtkButton *button)
419 {
420   if (button->button_down)
421     {
422       button->button_down = FALSE;
423
424       if (button->in_button)
425         gtk_button_clicked (button);
426
427       gtk_toggle_button_update_state (button);
428       gtk_widget_queue_draw (GTK_WIDGET (button));
429     }
430 }
431
432 static void
433 gtk_toggle_button_clicked (GtkButton *button)
434 {
435   GtkToggleButton *toggle_button = GTK_TOGGLE_BUTTON (button);
436   toggle_button->active = !toggle_button->active;
437
438   gtk_toggle_button_toggled (toggle_button);
439
440   gtk_toggle_button_update_state (button);
441
442   g_object_notify (G_OBJECT (toggle_button), "active");
443 }
444
445 static void
446 gtk_toggle_button_update_state (GtkButton *button)
447 {
448   GtkToggleButton *toggle_button = GTK_TOGGLE_BUTTON (button);
449   gboolean depressed, touchscreen;
450   GtkStateType new_state;
451
452   g_object_get (gtk_widget_get_settings (GTK_WIDGET (button)),
453                 "gtk-touchscreen-mode", &touchscreen,
454                 NULL);
455
456   if (toggle_button->inconsistent)
457     depressed = FALSE;
458   else if (button->in_button && button->button_down)
459     depressed = TRUE;
460   else
461     depressed = toggle_button->active;
462       
463   if (!touchscreen && button->in_button && (!button->button_down || toggle_button->draw_indicator))
464     new_state = GTK_STATE_PRELIGHT;
465   else
466     new_state = depressed ? GTK_STATE_ACTIVE : GTK_STATE_NORMAL;
467
468   _gtk_button_set_depressed (button, depressed); 
469   gtk_widget_set_state (GTK_WIDGET (toggle_button), new_state);
470 }
471
472 #define __GTK_TOGGLE_BUTTON_C__
473 #include "gtkaliasdef.c"