]> Pileus Git - ~andy/gtk/blob - gtk/gtkbbox.c
new function, turns off decorations for a window.
[~andy/gtk] / gtk / gtkbbox.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 "gtkbbox.h"
28
29
30 static void gtk_button_box_class_init    (GtkButtonBoxClass   *klass);
31 static void gtk_button_box_init          (GtkButtonBox        *box);
32
33
34 static gint default_child_min_width = 85;
35 static gint default_child_min_height = 27;
36 static gint default_child_ipad_x = 7;
37 static gint default_child_ipad_y = 0;
38
39
40 GtkType
41 gtk_button_box_get_type (void)
42 {
43   static GtkType button_box_type = 0;
44
45   if (!button_box_type)
46     {
47       static const GtkTypeInfo button_box_info =
48       {
49         "GtkButtonBox",
50         sizeof (GtkButtonBox),
51         sizeof (GtkButtonBoxClass),
52         (GtkClassInitFunc) gtk_button_box_class_init,
53         (GtkObjectInitFunc) gtk_button_box_init,
54         /* reserved_1 */ NULL,
55         /* reserved_2 */ NULL,
56         (GtkClassInitFunc) NULL,
57       };
58
59       button_box_type = gtk_type_unique (gtk_box_get_type (), &button_box_info);
60     }
61
62   return button_box_type;
63 }
64
65 static void
66 gtk_button_box_class_init (GtkButtonBoxClass *class)
67 {
68   GtkWidgetClass *widget_class;
69
70   widget_class = (GtkWidgetClass*) class;
71
72   /* FIXME we need to override the "spacing" property on GtkBox once
73    * libgobject allows that.
74    */
75 }
76
77 static void
78 gtk_button_box_init (GtkButtonBox *button_box)
79 {
80   GTK_BOX (button_box)->spacing = 0;
81   button_box->child_min_width = GTK_BUTTONBOX_DEFAULT;
82   button_box->child_min_height = GTK_BUTTONBOX_DEFAULT;
83   button_box->child_ipad_x = GTK_BUTTONBOX_DEFAULT;
84   button_box->child_ipad_y = GTK_BUTTONBOX_DEFAULT;
85   button_box->layout_style = GTK_BUTTONBOX_DEFAULT_STYLE;
86 }
87
88 /* set per widget values for spacing, child size and child internal padding */
89
90 void gtk_button_box_set_child_size (GtkButtonBox *widget, gint width, gint height)
91 {
92   widget->child_min_width = width;
93   widget->child_min_height = height;
94 }
95
96 void gtk_button_box_set_child_ipadding (GtkButtonBox *widget,
97                                         gint ipad_x, gint ipad_y)
98 {
99   widget->child_ipad_x = ipad_x;
100   widget->child_ipad_y = ipad_y;
101 }
102
103 void gtk_button_box_set_layout (GtkButtonBox *widget, 
104                                 GtkButtonBoxStyle layout_style)
105 {
106   g_return_if_fail (layout_style >= GTK_BUTTONBOX_DEFAULT_STYLE &&
107                     layout_style <= GTK_BUTTONBOX_END);
108
109   widget->layout_style = layout_style;
110 }
111
112
113 /* get per widget values for spacing, child size and child internal padding */
114
115 void gtk_button_box_get_child_size (GtkButtonBox *widget,
116                                      gint *width, gint *height)
117 {
118   *width  = widget->child_min_width;
119   *height = widget->child_min_height;
120 }
121
122 void gtk_button_box_get_child_ipadding (GtkButtonBox *widget,
123                                          gint* ipad_x, gint *ipad_y)
124 {
125   *ipad_x = widget->child_ipad_x;
126   *ipad_y = widget->child_ipad_y;
127 }
128
129 GtkButtonBoxStyle gtk_button_box_get_layout (GtkButtonBox *widget)
130 {
131   return widget->layout_style;
132 }
133
134
135
136 /* Ask children how much space they require and round up 
137    to match minimum size and internal padding.
138    Returns the size each single child should have. */
139 void
140 _gtk_button_box_child_requisition (GtkWidget *widget,
141                                    int *nvis_children,
142                                    int *width,
143                                    int *height)
144 {
145   GtkButtonBox *bbox;
146   GtkBoxChild *child;
147   GList *children;
148   gint nchildren;
149   gint needed_width;
150   gint needed_height;
151   GtkRequisition child_requisition;
152   gint ipad_w;
153   gint ipad_h;
154   gint width_default;
155   gint height_default;
156   gint ipad_x_default;
157   gint ipad_y_default;
158   
159   gint child_min_width;
160   gint child_min_height;
161   gint ipad_x;
162   gint ipad_y;
163   
164   g_return_if_fail (widget != NULL);
165   g_return_if_fail (GTK_IS_BUTTON_BOX (widget));
166
167   bbox = GTK_BUTTON_BOX (widget);
168
169   width_default = default_child_min_width;
170   height_default = default_child_min_height;
171   ipad_x_default = default_child_ipad_x;
172   ipad_y_default = default_child_ipad_y;
173   
174   child_min_width = bbox->child_min_width   != GTK_BUTTONBOX_DEFAULT
175           ? bbox->child_min_width : width_default;
176   child_min_height = bbox->child_min_height !=GTK_BUTTONBOX_DEFAULT
177           ? bbox->child_min_height : height_default;
178   ipad_x = bbox->child_ipad_x != GTK_BUTTONBOX_DEFAULT
179           ? bbox->child_ipad_x : ipad_x_default;
180   ipad_y = bbox->child_ipad_y != GTK_BUTTONBOX_DEFAULT
181           ? bbox->child_ipad_y : ipad_y_default;
182
183   nchildren = 0;
184   children = GTK_BOX(bbox)->children;
185   needed_width = child_min_width;
186   needed_height = child_min_height;  
187   ipad_w = ipad_x * 2;
188   ipad_h = ipad_y * 2;
189   
190   while (children)
191     {
192       child = children->data;
193       children = children->next;
194
195       if (GTK_WIDGET_VISIBLE (child->widget))
196         {
197           nchildren += 1;
198           gtk_widget_size_request (child->widget, &child_requisition);
199           if (child_requisition.width + ipad_w > needed_width)
200                   needed_width = child_requisition.width + ipad_w;
201           if (child_requisition.height + ipad_h > needed_height)
202                   needed_height = child_requisition.height + ipad_h;
203         }
204     }
205   
206   *nvis_children = nchildren;
207   *width = needed_width;
208   *height = needed_height;
209 }