]> Pileus Git - ~andy/gtk/blob - gtk/gtkradiobutton.c
Define macros GTK_PARAM_READABLE, GTK_PARAM_WRITABLE, GTK_PARAM_READWRITE
[~andy/gtk] / gtk / gtkradiobutton.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 "gtkmarshalers.h"
30 #include "gtkradiobutton.h"
31 #include "gtkprivate.h"
32 #include "gtkintl.h"
33 #include "gtkalias.h"
34
35
36 enum {
37   PROP_0,
38   PROP_GROUP
39 };
40
41
42 static void     gtk_radio_button_class_init     (GtkRadioButtonClass *klass);
43 static void     gtk_radio_button_init           (GtkRadioButton      *radio_button);
44 static void     gtk_radio_button_destroy        (GtkObject           *object);
45 static gboolean gtk_radio_button_focus          (GtkWidget           *widget,
46                                                  GtkDirectionType     direction);
47 static void     gtk_radio_button_clicked        (GtkButton           *button);
48 static void     gtk_radio_button_draw_indicator (GtkCheckButton      *check_button,
49                                                  GdkRectangle        *area);
50 static void     gtk_radio_button_set_property   (GObject             *object,
51                                                  guint                prop_id,
52                                                  const GValue        *value,
53                                                  GParamSpec          *pspec);
54 static void     gtk_radio_button_get_property   (GObject             *object,
55                                                  guint                prop_id,
56                                                  GValue              *value,
57                                                  GParamSpec          *pspec);
58
59 static GtkCheckButtonClass *parent_class = NULL;
60
61 static guint group_changed_signal = 0;
62
63 GType
64 gtk_radio_button_get_type (void)
65 {
66   static GType radio_button_type = 0;
67
68   if (!radio_button_type)
69     {
70       static const GTypeInfo radio_button_info =
71       {
72         sizeof (GtkRadioButtonClass),
73         NULL,           /* base_init */
74         NULL,           /* base_finalize */
75         (GClassInitFunc) gtk_radio_button_class_init,
76         NULL,           /* class_finalize */
77         NULL,           /* class_data */
78         sizeof (GtkRadioButton),
79         0,              /* n_preallocs */
80         (GInstanceInitFunc) gtk_radio_button_init,
81       };
82
83       radio_button_type =
84         g_type_register_static (GTK_TYPE_CHECK_BUTTON, "GtkRadioButton",
85                                 &radio_button_info, 0);
86     }
87
88   return radio_button_type;
89 }
90
91 static void
92 gtk_radio_button_class_init (GtkRadioButtonClass *class)
93 {
94   GObjectClass *gobject_class;
95   GtkObjectClass *object_class;
96   GtkButtonClass *button_class;
97   GtkCheckButtonClass *check_button_class;
98   GtkWidgetClass *widget_class;
99
100   gobject_class = G_OBJECT_CLASS (class);
101   object_class = (GtkObjectClass*) class;
102   widget_class = (GtkWidgetClass*) class;
103   button_class = (GtkButtonClass*) class;
104   check_button_class = (GtkCheckButtonClass*) class;
105
106   parent_class = g_type_class_peek_parent (class);
107
108   gobject_class->set_property = gtk_radio_button_set_property;
109   gobject_class->get_property = gtk_radio_button_get_property;
110
111   g_object_class_install_property (gobject_class,
112                                    PROP_GROUP,
113                                    g_param_spec_object ("group",
114                                                         P_("Group"),
115                                                         P_("The radio button whose group this widget belongs to."),
116                                                         GTK_TYPE_RADIO_BUTTON,
117                                                         GTK_PARAM_WRITABLE));
118   object_class->destroy = gtk_radio_button_destroy;
119
120   widget_class->focus = gtk_radio_button_focus;
121
122   button_class->clicked = gtk_radio_button_clicked;
123
124   check_button_class->draw_indicator = gtk_radio_button_draw_indicator;
125
126   class->group_changed = NULL;
127
128   /**
129    * GtkStyle::group-changed:
130    * @style: the object which received the signal
131    *
132    * Emitted when the group of radio buttons that a radio button belongs
133    * to changes. This is emitted when a radio button switches from
134    * being alone to being part of a group of 2 or more buttons, or
135    * vice-versa, and when a buttton is moved from one group of 2 or
136    * more buttons to a different one, but not when the composition
137    * of the group that a button belongs to changes.
138    *
139    * Since: 2.4
140    */
141   group_changed_signal = g_signal_new ("group-changed",
142                                        G_OBJECT_CLASS_TYPE (object_class),
143                                        G_SIGNAL_RUN_FIRST,
144                                        G_STRUCT_OFFSET (GtkRadioButtonClass, group_changed),
145                                        NULL, NULL,
146                                        _gtk_marshal_VOID__VOID,
147                                        G_TYPE_NONE, 0);
148 }
149
150 static void
151 gtk_radio_button_init (GtkRadioButton *radio_button)
152 {
153   GTK_WIDGET_SET_FLAGS (radio_button, GTK_NO_WINDOW);
154   GTK_WIDGET_UNSET_FLAGS (radio_button, GTK_RECEIVES_DEFAULT);
155
156   GTK_TOGGLE_BUTTON (radio_button)->active = TRUE;
157
158   GTK_BUTTON (radio_button)->depress_on_activate = FALSE;
159
160   radio_button->group = g_slist_prepend (NULL, radio_button);
161
162   _gtk_button_set_depressed (GTK_BUTTON (radio_button), TRUE);
163   gtk_widget_set_state (GTK_WIDGET (radio_button), GTK_STATE_ACTIVE);
164 }
165
166 static void
167 gtk_radio_button_set_property (GObject      *object,
168                                guint         prop_id,
169                                const GValue *value,
170                                GParamSpec   *pspec)
171 {
172   GtkRadioButton *radio_button;
173
174   radio_button = GTK_RADIO_BUTTON (object);
175
176   switch (prop_id)
177     {
178       GSList *slist;
179
180     case PROP_GROUP:
181       if (G_VALUE_HOLDS_OBJECT (value))
182         slist = gtk_radio_button_get_group ((GtkRadioButton*) g_value_get_object (value));
183       else
184         slist = NULL;
185       gtk_radio_button_set_group (radio_button, slist);
186       break;
187     default:
188       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
189       break;
190     }
191 }
192
193 static void
194 gtk_radio_button_get_property (GObject    *object,
195                                guint       prop_id,
196                                GValue     *value,
197                                GParamSpec *pspec)
198 {
199   GtkRadioButton *radio_button;
200
201   radio_button = GTK_RADIO_BUTTON (object);
202
203   switch (prop_id)
204     {
205     default:
206       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
207       break;
208     }
209 }
210
211 void
212 gtk_radio_button_set_group (GtkRadioButton *radio_button,
213                             GSList         *group)
214 {
215   GtkWidget *old_group_singleton = NULL;
216   GtkWidget *new_group_singleton = NULL;
217   
218   g_return_if_fail (GTK_IS_RADIO_BUTTON (radio_button));
219   g_return_if_fail (!g_slist_find (group, radio_button));
220
221   if (radio_button->group)
222     {
223       GSList *slist;
224
225       radio_button->group = g_slist_remove (radio_button->group, radio_button);
226       
227       if (radio_button->group && !radio_button->group->next)
228         old_group_singleton = g_object_ref (radio_button->group->data);
229           
230       for (slist = radio_button->group; slist; slist = slist->next)
231         {
232           GtkRadioButton *tmp_button;
233           
234           tmp_button = slist->data;
235           
236           tmp_button->group = radio_button->group;
237         }
238     }
239   
240   if (group && !group->next)
241     new_group_singleton = g_object_ref (group->data);
242   
243   radio_button->group = g_slist_prepend (group, radio_button);
244   
245   if (group)
246     {
247       GSList *slist;
248       
249       for (slist = group; slist; slist = slist->next)
250         {
251           GtkRadioButton *tmp_button;
252           
253           tmp_button = slist->data;
254           
255           tmp_button->group = radio_button->group;
256         }
257     }
258
259   g_object_ref (radio_button);
260   
261   g_signal_emit (radio_button, group_changed_signal, 0);
262   if (old_group_singleton)
263     {
264       g_signal_emit (old_group_singleton, group_changed_signal, 0);
265       g_object_unref (old_group_singleton);
266     }
267   if (new_group_singleton)
268     {
269       g_signal_emit (new_group_singleton, group_changed_signal, 0);
270       g_object_unref (new_group_singleton);
271     }
272
273   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (radio_button), group == NULL);
274
275   g_object_unref (radio_button);
276 }
277
278 GtkWidget*
279 gtk_radio_button_new (GSList *group)
280 {
281   GtkRadioButton *radio_button;
282
283   radio_button = g_object_new (GTK_TYPE_RADIO_BUTTON, NULL);
284
285   if (group)
286     gtk_radio_button_set_group (radio_button, group);
287
288   return GTK_WIDGET (radio_button);
289 }
290
291 GtkWidget*
292 gtk_radio_button_new_with_label (GSList      *group,
293                                  const gchar *label)
294 {
295   GtkWidget *radio_button;
296
297   radio_button = g_object_new (GTK_TYPE_RADIO_BUTTON, "label", label, NULL) ;
298
299   if (group)
300     gtk_radio_button_set_group (GTK_RADIO_BUTTON (radio_button), group);
301
302   return radio_button;
303 }
304
305
306 /**
307  * gtk_radio_button_new_with_mnemonic:
308  * @group: the radio button group
309  * @label: the text of the button, with an underscore in front of the
310  *         mnemonic character
311  * @returns: a new #GtkRadioButton
312  *
313  * Creates a new #GtkRadioButton containing a label, adding it to the same 
314  * group as @group. The label will be created using 
315  * gtk_label_new_with_mnemonic(), so underscores in @label indicate the 
316  * mnemonic for the button.
317  **/
318 GtkWidget*
319 gtk_radio_button_new_with_mnemonic (GSList      *group,
320                                     const gchar *label)
321 {
322   GtkWidget *radio_button;
323
324   radio_button = g_object_new (GTK_TYPE_RADIO_BUTTON, "label", label, "use_underline", TRUE, NULL);
325
326   if (group)
327     gtk_radio_button_set_group (GTK_RADIO_BUTTON (radio_button), group);
328
329   return radio_button;
330 }
331
332 GtkWidget*
333 gtk_radio_button_new_from_widget (GtkRadioButton *group)
334 {
335   GSList *l = NULL;
336   if (group)
337     l = gtk_radio_button_get_group (group);
338   return gtk_radio_button_new (l);
339 }
340
341
342 GtkWidget*
343 gtk_radio_button_new_with_label_from_widget (GtkRadioButton *group,
344                                              const gchar    *label)
345 {
346   GSList *l = NULL;
347   if (group)
348     l = gtk_radio_button_get_group (group);
349   return gtk_radio_button_new_with_label (l, label);
350 }
351
352 /**
353  * gtk_radio_button_new_with_mnemonic_from_widget:
354  * @group: widget to get radio group from
355  * @label: the text of the button, with an underscore in front of the
356  *         mnemonic character
357  * @returns: a new #GtkRadioButton
358  *
359  * Creates a new #GtkRadioButton containing a label. The label
360  * will be created using gtk_label_new_with_mnemonic(), so underscores
361  * in @label indicate the mnemonic for the button.
362  **/
363 GtkWidget*
364 gtk_radio_button_new_with_mnemonic_from_widget (GtkRadioButton *group,
365                                                 const gchar    *label)
366 {
367   GSList *l = NULL;
368   if (group)
369     l = gtk_radio_button_get_group (group);
370   return gtk_radio_button_new_with_mnemonic (l, label);
371 }
372
373 GSList*
374 gtk_radio_button_get_group (GtkRadioButton *radio_button)
375 {
376   g_return_val_if_fail (GTK_IS_RADIO_BUTTON (radio_button), NULL);
377
378   return radio_button->group;
379 }
380
381
382 static void
383 gtk_radio_button_destroy (GtkObject *object)
384 {
385   GtkWidget *old_group_singleton = NULL;
386   GtkRadioButton *radio_button;
387   GtkRadioButton *tmp_button;
388   GSList *tmp_list;
389   gboolean was_in_group;
390   
391   radio_button = GTK_RADIO_BUTTON (object);
392
393   was_in_group = radio_button->group && radio_button->group->next;
394   
395   radio_button->group = g_slist_remove (radio_button->group, radio_button);
396   if (radio_button->group && !radio_button->group->next)
397     old_group_singleton = radio_button->group->data;
398
399   tmp_list = radio_button->group;
400
401   while (tmp_list)
402     {
403       tmp_button = tmp_list->data;
404       tmp_list = tmp_list->next;
405
406       tmp_button->group = radio_button->group;
407     }
408
409   /* this button is no longer in the group */
410   radio_button->group = NULL;
411
412   if (old_group_singleton)
413     g_signal_emit (old_group_singleton, group_changed_signal, 0);
414   if (was_in_group)
415     g_signal_emit (radio_button, group_changed_signal, 0);
416   
417   if (GTK_OBJECT_CLASS (parent_class)->destroy)
418     (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
419 }
420
421 static void
422 get_coordinates (GtkWidget    *widget,
423                  GtkWidget    *reference,
424                  gint         *x,
425                  gint         *y)
426 {
427   *x = widget->allocation.x + widget->allocation.width / 2;
428   *y = widget->allocation.y + widget->allocation.height / 2;
429   
430   gtk_widget_translate_coordinates (widget, reference, *x, *y, x, y);
431 }
432
433 static gint
434 left_right_compare (gconstpointer a,
435                     gconstpointer b,
436                     gpointer      data)
437 {
438   gint x1, y1, x2, y2;
439
440   get_coordinates ((GtkWidget *)a, data, &x1, &y1);
441   get_coordinates ((GtkWidget *)b, data, &x2, &y2);
442
443   if (y1 == y2)
444     return (x1 < x2) ? -1 : ((x1 == x2) ? 0 : 1);
445   else
446     return (y1 < y2) ? -1 : 1;
447 }
448
449 static gint
450 up_down_compare (gconstpointer a,
451                  gconstpointer b,
452                  gpointer      data)
453 {
454   gint x1, y1, x2, y2;
455   
456   get_coordinates ((GtkWidget *)a, data, &x1, &y1);
457   get_coordinates ((GtkWidget *)b, data, &x2, &y2);
458   
459   if (x1 == x2)
460     return (y1 < y2) ? -1 : ((y1 == y2) ? 0 : 1);
461   else
462     return (x1 < x2) ? -1 : 1;
463 }
464
465 static gboolean
466 gtk_radio_button_focus (GtkWidget         *widget,
467                         GtkDirectionType   direction)
468 {
469   GtkRadioButton *radio_button = GTK_RADIO_BUTTON (widget);
470   GSList *tmp_slist;
471
472   /* Radio buttons with draw_indicator unset focus "normally", since
473    * they look like buttons to the user.
474    */
475   if (!GTK_TOGGLE_BUTTON (widget)->draw_indicator)
476     return GTK_WIDGET_CLASS (parent_class)->focus (widget, direction);
477   
478   if (gtk_widget_is_focus (widget))
479     {
480       GSList *focus_list, *tmp_list;
481       GtkWidget *toplevel = gtk_widget_get_toplevel (widget);
482       GtkWidget *new_focus = NULL;
483
484       focus_list = g_slist_copy (radio_button->group);
485       
486       switch (direction)
487         {
488         case GTK_DIR_TAB_FORWARD:
489         case GTK_DIR_TAB_BACKWARD:
490           return FALSE;
491         case GTK_DIR_LEFT:
492         case GTK_DIR_RIGHT:
493           focus_list = g_slist_sort_with_data (focus_list, left_right_compare, toplevel);
494           break;
495         case GTK_DIR_UP:
496         case GTK_DIR_DOWN:
497           focus_list = g_slist_sort_with_data (focus_list, up_down_compare, toplevel);
498           break;
499         }
500
501       if (direction == GTK_DIR_LEFT || direction == GTK_DIR_UP)
502         focus_list = g_slist_reverse (focus_list);
503
504       tmp_list = g_slist_find (focus_list, widget);
505
506       if (tmp_list)
507         {
508           tmp_list = tmp_list->next;
509           
510           while (tmp_list)
511             {
512               GtkWidget *child = tmp_list->data;
513               
514               if (GTK_WIDGET_VISIBLE (child) && GTK_WIDGET_IS_SENSITIVE (child))
515                 {
516                   new_focus = child;
517                   break;
518                 }
519
520               tmp_list = tmp_list->next;
521             }
522         }
523
524       if (!new_focus)
525         {
526           tmp_list = focus_list;
527
528           while (tmp_list)
529             {
530               GtkWidget *child = tmp_list->data;
531               
532               if (GTK_WIDGET_VISIBLE (child) && GTK_WIDGET_IS_SENSITIVE (child))
533                 {
534                   new_focus = child;
535                   break;
536                 }
537               
538               tmp_list = tmp_list->next;
539             }
540         }
541       
542       g_slist_free (focus_list);
543
544       if (new_focus)
545         {
546           gtk_widget_grab_focus (new_focus);
547           gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (new_focus), TRUE);
548         }
549
550       return TRUE;
551     }
552   else
553     {
554       GtkRadioButton *selected_button = NULL;
555       
556       /* We accept the focus if, we don't have the focus and
557        *  - we are the currently active button in the group
558        *  - there is no currently active radio button.
559        */
560       
561       tmp_slist = radio_button->group;
562       while (tmp_slist)
563         {
564           if (GTK_TOGGLE_BUTTON (tmp_slist->data)->active)
565             selected_button = tmp_slist->data;
566           tmp_slist = tmp_slist->next;
567         }
568       
569       if (selected_button && selected_button != radio_button)
570         return FALSE;
571
572       gtk_widget_grab_focus (widget);
573       return TRUE;
574     }
575 }
576
577 static void
578 gtk_radio_button_clicked (GtkButton *button)
579 {
580   GtkToggleButton *toggle_button;
581   GtkRadioButton *radio_button;
582   GtkToggleButton *tmp_button;
583   GtkStateType new_state;
584   GSList *tmp_list;
585   gint toggled;
586   gboolean depressed;
587
588   radio_button = GTK_RADIO_BUTTON (button);
589   toggle_button = GTK_TOGGLE_BUTTON (button);
590   toggled = FALSE;
591
592   g_object_ref (GTK_WIDGET (button));
593
594   if (toggle_button->active)
595     {
596       tmp_button = NULL;
597       tmp_list = radio_button->group;
598
599       while (tmp_list)
600         {
601           tmp_button = tmp_list->data;
602           tmp_list = tmp_list->next;
603
604           if (tmp_button->active && tmp_button != toggle_button)
605             break;
606
607           tmp_button = NULL;
608         }
609
610       if (!tmp_button)
611         {
612           new_state = (button->in_button ? GTK_STATE_PRELIGHT : GTK_STATE_ACTIVE);
613         }
614       else
615         {
616           toggled = TRUE;
617           toggle_button->active = !toggle_button->active;
618           new_state = (button->in_button ? GTK_STATE_PRELIGHT : GTK_STATE_NORMAL);
619         }
620     }
621   else
622     {
623       toggled = TRUE;
624       toggle_button->active = !toggle_button->active;
625
626       tmp_list = radio_button->group;
627       while (tmp_list)
628         {
629           tmp_button = tmp_list->data;
630           tmp_list = tmp_list->next;
631
632           if (tmp_button->active && (tmp_button != toggle_button))
633             {
634               gtk_button_clicked (GTK_BUTTON (tmp_button));
635               break;
636             }
637         }
638
639       new_state = (button->in_button ? GTK_STATE_PRELIGHT : GTK_STATE_ACTIVE);
640     }
641
642   if (toggle_button->inconsistent)
643     depressed = FALSE;
644   else if (button->in_button && button->button_down)
645     depressed = !toggle_button->active;
646   else
647     depressed = toggle_button->active;
648
649   if (GTK_WIDGET_STATE (button) != new_state)
650     gtk_widget_set_state (GTK_WIDGET (button), new_state);
651
652   if (toggled)
653     gtk_toggle_button_toggled (toggle_button);
654
655   _gtk_button_set_depressed (button, depressed);
656
657   gtk_widget_queue_draw (GTK_WIDGET (button));
658
659   g_object_unref (button);
660 }
661
662 static void
663 gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
664                                  GdkRectangle   *area)
665 {
666   GtkWidget *widget;
667   GtkWidget *child;
668   GtkButton *button;
669   GtkToggleButton *toggle_button;
670   GtkStateType state_type;
671   GtkShadowType shadow_type;
672   gint x, y;
673   gint indicator_size, indicator_spacing;
674   gint focus_width;
675   gint focus_pad;
676   gboolean interior_focus;
677
678   if (GTK_WIDGET_DRAWABLE (check_button))
679     {
680       widget = GTK_WIDGET (check_button);
681       button = GTK_BUTTON (check_button);
682       toggle_button = GTK_TOGGLE_BUTTON (check_button);
683
684       gtk_widget_style_get (widget,
685                             "interior_focus", &interior_focus,
686                             "focus-line-width", &focus_width,
687                             "focus-padding", &focus_pad,
688                             NULL);
689
690       _gtk_check_button_get_props (check_button, &indicator_size, &indicator_spacing);
691
692       x = widget->allocation.x + indicator_spacing + GTK_CONTAINER (widget)->border_width;
693       y = widget->allocation.y + (widget->allocation.height - indicator_size) / 2;
694
695       child = GTK_BIN (check_button)->child;
696       if (!interior_focus || !(child && GTK_WIDGET_VISIBLE (child)))
697         x += focus_width + focus_pad;      
698
699       if (toggle_button->inconsistent)
700         shadow_type = GTK_SHADOW_ETCHED_IN;
701       else if (toggle_button->active)
702         shadow_type = GTK_SHADOW_IN;
703       else
704         shadow_type = GTK_SHADOW_OUT;
705
706       if (button->activate_timeout || (button->button_down && button->in_button))
707         state_type = GTK_STATE_ACTIVE;
708       else if (button->in_button)
709         state_type = GTK_STATE_PRELIGHT;
710       else if (!GTK_WIDGET_IS_SENSITIVE (widget))
711         state_type = GTK_STATE_INSENSITIVE;
712       else
713         state_type = GTK_STATE_NORMAL;
714
715       if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
716         x = widget->allocation.x + widget->allocation.width - (indicator_size + x - widget->allocation.x);
717
718       if (GTK_WIDGET_STATE (toggle_button) == GTK_STATE_PRELIGHT)
719         {
720           GdkRectangle restrict_area;
721           GdkRectangle new_area;
722               
723           restrict_area.x = widget->allocation.x + GTK_CONTAINER (widget)->border_width;
724           restrict_area.y = widget->allocation.y + GTK_CONTAINER (widget)->border_width;
725           restrict_area.width = widget->allocation.width - (2 * GTK_CONTAINER (widget)->border_width);
726           restrict_area.height = widget->allocation.height - (2 * GTK_CONTAINER (widget)->border_width);
727           
728           if (gdk_rectangle_intersect (area, &restrict_area, &new_area))
729             {
730               gtk_paint_flat_box (widget->style, widget->window, GTK_STATE_PRELIGHT,
731                                   GTK_SHADOW_ETCHED_OUT, 
732                                   area, widget, "checkbutton",
733                                   new_area.x, new_area.y,
734                                   new_area.width, new_area.height);
735             }
736         }
737
738       gtk_paint_option (widget->style, widget->window,
739                         state_type, shadow_type,
740                         area, widget, "radiobutton",
741                         x, y, indicator_size, indicator_size);
742     }
743 }
744
745 #define __GTK_RADIO_BUTTON_C__
746 #include "gtkaliasdef.c"