]> Pileus Git - ~andy/gtk/blob - gtk/gtkcheckbutton.c
Patch from Matthias Clasen to remove remove all instances of
[~andy/gtk] / gtk / gtkcheckbutton.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 "gtkcheckbutton.h"
28 #include "gtkintl.h"
29 #include "gtklabel.h"
30
31
32 #define INDICATOR_SIZE     13
33 #define INDICATOR_SPACING  2
34
35
36 static void gtk_check_button_class_init          (GtkCheckButtonClass *klass);
37 static void gtk_check_button_init                (GtkCheckButton      *check_button);
38 static void gtk_check_button_size_request        (GtkWidget           *widget,
39                                                   GtkRequisition      *requisition);
40 static void gtk_check_button_size_allocate       (GtkWidget           *widget,
41                                                   GtkAllocation       *allocation);
42 static gint gtk_check_button_expose              (GtkWidget           *widget,
43                                                   GdkEventExpose      *event);
44 static void gtk_check_button_paint               (GtkWidget           *widget,
45                                                   GdkRectangle        *area);
46 static void gtk_check_button_draw_indicator      (GtkCheckButton      *check_button,
47                                                   GdkRectangle        *area);
48 static void gtk_real_check_button_draw_indicator (GtkCheckButton      *check_button,
49                                                   GdkRectangle        *area);
50
51 static GtkToggleButtonClass *parent_class = NULL;
52
53
54 GtkType
55 gtk_check_button_get_type (void)
56 {
57   static GtkType check_button_type = 0;
58   
59   if (!check_button_type)
60     {
61       static const GtkTypeInfo check_button_info =
62       {
63         "GtkCheckButton",
64         sizeof (GtkCheckButton),
65         sizeof (GtkCheckButtonClass),
66         (GtkClassInitFunc) gtk_check_button_class_init,
67         (GtkObjectInitFunc) gtk_check_button_init,
68         /* reserved_1 */ NULL,
69         /* reserved_2 */ NULL,
70         (GtkClassInitFunc) NULL,
71       };
72       
73       check_button_type = gtk_type_unique (GTK_TYPE_TOGGLE_BUTTON, &check_button_info);
74     }
75   
76   return check_button_type;
77 }
78
79 static void
80 gtk_check_button_class_init (GtkCheckButtonClass *class)
81 {
82   GtkWidgetClass *widget_class;
83   
84   widget_class = (GtkWidgetClass*) class;
85   parent_class = gtk_type_class (gtk_toggle_button_get_type ());
86   
87   widget_class->size_request = gtk_check_button_size_request;
88   widget_class->size_allocate = gtk_check_button_size_allocate;
89   widget_class->expose_event = gtk_check_button_expose;
90
91   class->draw_indicator = gtk_real_check_button_draw_indicator;
92
93   gtk_widget_class_install_style_property (widget_class,
94                                            g_param_spec_int ("indicator_size",
95                                                              _("Indicator Size"),
96                                                              _("Size of check or radio indicator"),
97                                                              0,
98                                                              G_MAXINT,
99                                                              INDICATOR_SIZE,
100                                                              G_PARAM_READABLE));
101   gtk_widget_class_install_style_property (widget_class,
102                                            g_param_spec_int ("indicator_spacing",
103                                                              _("Indicator Spacing"),
104                                                              _("Spacing around check or radio indicator"),
105                                                              0,
106                                                              G_MAXINT,
107                                                              INDICATOR_SPACING,
108                                                              G_PARAM_READABLE));
109 }
110
111 static void
112 gtk_check_button_init (GtkCheckButton *check_button)
113 {
114   GTK_WIDGET_SET_FLAGS (check_button, GTK_NO_WINDOW);
115   GTK_WIDGET_UNSET_FLAGS (check_button, GTK_RECEIVES_DEFAULT);
116   GTK_TOGGLE_BUTTON (check_button)->draw_indicator = TRUE;
117 }
118
119 GtkWidget*
120 gtk_check_button_new (void)
121 {
122   return gtk_widget_new (GTK_TYPE_CHECK_BUTTON, NULL);
123 }
124
125
126 GtkWidget*
127 gtk_check_button_new_with_label (const gchar *label)
128 {
129   GtkWidget *check_button;
130   GtkWidget *label_widget;
131   
132   check_button = gtk_check_button_new ();
133   label_widget = gtk_label_new (label);
134   gtk_misc_set_alignment (GTK_MISC (label_widget), 0.0, 0.5);
135   
136   gtk_container_add (GTK_CONTAINER (check_button), label_widget);
137   gtk_widget_show (label_widget);
138   
139   return check_button;
140 }
141
142 /**
143  * gtk_check_button_new_with_mnemonic:
144  * @label: The text of the button, with an underscore in front of the
145  *         mnemonic character
146  * @returns: a new #GtkCheckButton
147  *
148  * Creates a new #GtkCheckButton containing a label. The label
149  * will be created using gtk_label_new_with_mnemonic(), so underscores
150  * in @label indicate the mnemonic for the check button.
151  **/
152 GtkWidget*
153 gtk_check_button_new_with_mnemonic (const gchar *label)
154 {
155   GtkWidget *check_button;
156   GtkWidget *label_widget;
157   
158   check_button = gtk_check_button_new ();
159   label_widget = gtk_label_new_with_mnemonic (label);
160   gtk_misc_set_alignment (GTK_MISC (label_widget), 0.0, 0.5);
161   
162   gtk_container_add (GTK_CONTAINER (check_button), label_widget);
163   gtk_widget_show (label_widget);
164   
165   return check_button;
166 }
167
168
169 /* This should only be called when toggle_button->draw_indicator
170  * is true.
171  */
172 static void
173 gtk_check_button_paint (GtkWidget    *widget,
174                         GdkRectangle *area)
175 {
176   GtkCheckButton *check_button = GTK_CHECK_BUTTON (widget);
177   
178   if (GTK_WIDGET_DRAWABLE (widget))
179     {
180       gint border_width;
181       gint interior_focus;
182           
183       gtk_widget_style_get (widget, "interior_focus", &interior_focus, NULL);
184
185       gtk_check_button_draw_indicator (check_button, area);
186       
187       border_width = GTK_CONTAINER (widget)->border_width;
188       if (GTK_WIDGET_HAS_FOCUS (widget))
189         {
190           if (interior_focus)
191             {
192               GtkWidget *child = GTK_BIN (widget)->child;
193
194               if (child && GTK_WIDGET_VISIBLE (child))
195                 gtk_paint_focus (widget->style, widget->window,
196                                  NULL, widget, "checkbutton",
197                                  child->allocation.x - 1,
198                                  child->allocation.y - 1,
199                                  child->allocation.width + 1,
200                                  child->allocation.height + 1);
201             }
202           else
203             gtk_paint_focus (widget->style, widget->window,
204                              NULL, widget, "checkbutton",
205                              border_width + widget->allocation.x,
206                              border_width + widget->allocation.y,
207                              widget->allocation.width - 2 * border_width - 1,
208                              widget->allocation.height - 2 * border_width - 1);
209         }
210     }
211 }
212
213 void
214 _gtk_check_button_get_props (GtkCheckButton *check_button,
215                              gint           *indicator_size,
216                              gint           *indicator_spacing)
217 {
218   GtkWidget *widget =  GTK_WIDGET (check_button);
219
220   if (indicator_size)
221     gtk_widget_style_get (widget, "indicator_size", indicator_size, NULL);
222
223   if (indicator_spacing)
224     gtk_widget_style_get (widget, "indicator_spacing", indicator_spacing, NULL);
225 }
226
227 static void
228 gtk_check_button_size_request (GtkWidget      *widget,
229                                GtkRequisition *requisition)
230 {
231   GtkToggleButton *toggle_button;
232   
233   g_return_if_fail (GTK_IS_CHECK_BUTTON (widget));
234   g_return_if_fail (requisition != NULL);
235   
236   toggle_button = GTK_TOGGLE_BUTTON (widget);
237   
238   if (toggle_button->draw_indicator)
239     {
240       GtkWidget *child;
241       gint temp;
242       gint indicator_size;
243       gint indicator_spacing;
244       gint border_width = GTK_CONTAINER (widget)->border_width;
245       
246       requisition->width = border_width * 2 + 2;
247       requisition->height = border_width * 2 + 2;
248
249       child = GTK_BIN (widget)->child;
250       if (child && GTK_WIDGET_VISIBLE (child))
251         {
252           GtkRequisition child_requisition;
253           
254           gtk_widget_size_request (child, &child_requisition);
255
256           requisition->width += child_requisition.width;
257           requisition->height += child_requisition.height;
258         }
259       
260       _gtk_check_button_get_props (GTK_CHECK_BUTTON (widget),
261                                    &indicator_size, &indicator_spacing);
262       
263       requisition->width += (indicator_size + indicator_spacing * 3 + 2);
264       
265       temp = (indicator_size + indicator_spacing * 2);
266       requisition->height = MAX (requisition->height, temp) + 2;
267     }
268   else
269     (* GTK_WIDGET_CLASS (parent_class)->size_request) (widget, requisition);
270 }
271
272 static void
273 gtk_check_button_size_allocate (GtkWidget     *widget,
274                                 GtkAllocation *allocation)
275 {
276   GtkCheckButton *check_button;
277   GtkToggleButton *toggle_button;
278   GtkButton *button;
279   GtkAllocation child_allocation;
280   
281   g_return_if_fail (GTK_IS_CHECK_BUTTON (widget));
282   g_return_if_fail (allocation != NULL);
283   
284   check_button = GTK_CHECK_BUTTON (widget);
285   toggle_button = GTK_TOGGLE_BUTTON (widget);
286
287   if (toggle_button->draw_indicator)
288     {
289       gint indicator_size;
290       gint indicator_spacing;
291       
292       _gtk_check_button_get_props (check_button, &indicator_size, &indicator_spacing);
293                                                     
294       widget->allocation = *allocation;
295       if (GTK_WIDGET_REALIZED (widget))
296         gdk_window_move_resize (toggle_button->event_window,
297                                 allocation->x, allocation->y,
298                                 allocation->width, allocation->height);
299       
300       button = GTK_BUTTON (widget);
301       
302       if (GTK_BIN (button)->child && GTK_WIDGET_VISIBLE (GTK_BIN (button)->child))
303         {
304           gint border_width = GTK_CONTAINER (widget)->border_width;
305  
306           child_allocation.x = (border_width + indicator_size + indicator_spacing * 3 + 1 +
307                                 widget->allocation.x);
308           child_allocation.y = border_width + 1 + widget->allocation.y;
309           child_allocation.width = MAX (1, allocation->width - 
310                                         (border_width + indicator_size + indicator_spacing * 3 + 1) -
311                                         border_width - 1);
312           child_allocation.height = MAX (1, allocation->height - (border_width + 1) * 2);
313           
314           if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
315             child_allocation.x = allocation->x + allocation->width
316               - (child_allocation.x - allocation->x + child_allocation.width);
317           
318           gtk_widget_size_allocate (GTK_BIN (button)->child, &child_allocation);
319         }
320     }
321   else
322     (* GTK_WIDGET_CLASS (parent_class)->size_allocate) (widget, allocation);
323 }
324
325 static gint
326 gtk_check_button_expose (GtkWidget      *widget,
327                          GdkEventExpose *event)
328 {
329   GtkCheckButton *check_button;
330   GtkToggleButton *toggle_button;
331   GtkBin *bin;
332   
333   g_return_val_if_fail (widget != NULL, FALSE);
334   g_return_val_if_fail (GTK_IS_CHECK_BUTTON (widget), FALSE);
335   g_return_val_if_fail (event != NULL, FALSE);
336   
337   check_button = GTK_CHECK_BUTTON (widget);
338   toggle_button = GTK_TOGGLE_BUTTON (widget);
339   bin = GTK_BIN (widget);
340   
341   if (GTK_WIDGET_DRAWABLE (widget))
342     {
343       if (toggle_button->draw_indicator)
344         {
345           gtk_check_button_paint (widget, &event->area);
346           
347           if (bin->child)
348             gtk_container_propagate_expose (GTK_CONTAINER (widget),
349                                             bin->child,
350                                             event);
351         }
352       else if (GTK_WIDGET_CLASS (parent_class)->expose_event)
353         (* GTK_WIDGET_CLASS (parent_class)->expose_event) (widget, event);
354     }
355   
356   return FALSE;
357 }
358
359
360 static void
361 gtk_check_button_draw_indicator (GtkCheckButton *check_button,
362                                  GdkRectangle   *area)
363 {
364   GtkCheckButtonClass *class;
365   
366   g_return_if_fail (GTK_IS_CHECK_BUTTON (check_button));
367   
368   class = GTK_CHECK_BUTTON_GET_CLASS (check_button);
369   
370   if (class->draw_indicator)
371     (* class->draw_indicator) (check_button, area);
372 }
373
374 static void
375 gtk_real_check_button_draw_indicator (GtkCheckButton *check_button,
376                                       GdkRectangle   *area)
377 {
378   GtkWidget *widget;
379   GtkToggleButton *toggle_button;
380   GtkStateType state_type;
381   GtkShadowType shadow_type;
382   GdkRectangle restrict_area;
383   GdkRectangle new_area;
384   gint width, height;
385   gint x, y;
386   gint indicator_size;
387   gint indicator_spacing;
388   GdkWindow *window;
389   
390   g_return_if_fail (GTK_IS_CHECK_BUTTON (check_button));
391   
392   widget = GTK_WIDGET (check_button);
393   toggle_button = GTK_TOGGLE_BUTTON (check_button);
394   
395   if (GTK_WIDGET_DRAWABLE (check_button))
396     {
397       window = widget->window;
398       
399       _gtk_check_button_get_props (check_button, &indicator_size, &indicator_spacing);
400                                                     
401       state_type = GTK_WIDGET_STATE (widget);
402       if (state_type != GTK_STATE_NORMAL &&
403           state_type != GTK_STATE_PRELIGHT)
404         state_type = GTK_STATE_NORMAL;
405       
406       restrict_area.x = widget->allocation.x + GTK_CONTAINER (widget)->border_width;
407       restrict_area.y = widget->allocation.y + GTK_CONTAINER (widget)->border_width;
408       restrict_area.width = widget->allocation.width - ( 2 * GTK_CONTAINER (widget)->border_width);
409       restrict_area.height = widget->allocation.height - ( 2 * GTK_CONTAINER (widget)->border_width);
410       
411       if (gdk_rectangle_intersect (area, &restrict_area, &new_area))
412         {
413           if (state_type != GTK_STATE_NORMAL)
414             gtk_paint_flat_box (widget->style, window, state_type, 
415                                 GTK_SHADOW_ETCHED_OUT, 
416                                 area, widget, "checkbutton",
417                                 new_area.x, new_area.y,
418                                 new_area.width, new_area.height);
419         }
420       
421       x = widget->allocation.x + indicator_spacing + GTK_CONTAINER (widget)->border_width;
422       y = widget->allocation.y + (widget->allocation.height - indicator_size) / 2;
423       width = indicator_size;
424       height = indicator_size;
425
426       if (GTK_TOGGLE_BUTTON (widget)->inconsistent)
427         {
428           state_type = GTK_WIDGET_STATE (widget) == GTK_STATE_ACTIVE ? GTK_STATE_NORMAL : GTK_WIDGET_STATE (widget);
429           shadow_type = GTK_SHADOW_ETCHED_IN;
430         }
431       else if (GTK_TOGGLE_BUTTON (widget)->active)
432         {
433           state_type = GTK_STATE_ACTIVE;
434           shadow_type = GTK_SHADOW_IN;
435         }
436       else
437         {
438           shadow_type = GTK_SHADOW_OUT;
439           state_type = GTK_WIDGET_STATE (widget);
440         }
441
442       if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
443         x = widget->allocation.x + widget->allocation.width - (width + x - widget->allocation.x);
444
445       gtk_paint_check (widget->style, window,
446                        state_type, shadow_type,
447                        area, widget, "checkbutton",
448                        x, y, width, height);
449     }
450 }