]> Pileus Git - ~andy/gtk/blob - gtk/gtkeventbox.c
General property notification cleanup.
[~andy/gtk] / gtk / gtkeventbox.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 "gtksignal.h"
28 #include "gtkeventbox.h"
29
30
31 static void gtk_event_box_class_init               (GtkEventBoxClass *klass);
32 static void gtk_event_box_init                     (GtkEventBox      *event_box);
33 static void gtk_event_box_realize                  (GtkWidget        *widget);
34 static void gtk_event_box_size_request             (GtkWidget        *widget,
35                                                     GtkRequisition   *requisition);
36 static void gtk_event_box_size_allocate            (GtkWidget        *widget,
37                                                     GtkAllocation    *allocation);
38 static void gtk_event_box_paint                    (GtkWidget         *widget,
39                                                     GdkRectangle      *area);
40 static gint gtk_event_box_expose                   (GtkWidget         *widget,
41                                                    GdkEventExpose     *event);
42
43
44 static GtkBinClass *parent_class = NULL;
45
46 GtkType
47 gtk_event_box_get_type (void)
48 {
49   static GtkType event_box_type = 0;
50
51   if (!event_box_type)
52     {
53       static const GtkTypeInfo event_box_info =
54       {
55         "GtkEventBox",
56         sizeof (GtkEventBox),
57         sizeof (GtkEventBoxClass),
58         (GtkClassInitFunc) gtk_event_box_class_init,
59         (GtkObjectInitFunc) gtk_event_box_init,
60         /* reserved_1 */ NULL,
61         /* reserved_2 */ NULL,
62         (GtkClassInitFunc) NULL,
63       };
64
65       event_box_type = gtk_type_unique (gtk_bin_get_type (), &event_box_info);
66     }
67
68   return event_box_type;
69 }
70
71 static void
72 gtk_event_box_class_init (GtkEventBoxClass *class)
73 {
74   GtkWidgetClass *widget_class;
75
76   parent_class = g_type_class_peek_parent (class);
77   
78   widget_class = (GtkWidgetClass*) class;
79
80   widget_class->realize = gtk_event_box_realize;
81   widget_class->size_request = gtk_event_box_size_request;
82   widget_class->size_allocate = gtk_event_box_size_allocate;
83   widget_class->expose_event = gtk_event_box_expose;
84 }
85
86 static void
87 gtk_event_box_init (GtkEventBox *event_box)
88 {
89   GTK_WIDGET_UNSET_FLAGS (event_box, GTK_NO_WINDOW);
90 }
91
92 GtkWidget*
93 gtk_event_box_new (void)
94 {
95   return GTK_WIDGET ( gtk_type_new (gtk_event_box_get_type ()));
96 }
97
98 static void
99 gtk_event_box_realize (GtkWidget *widget)
100 {
101   GdkWindowAttr attributes;
102   gint attributes_mask;
103   gint border_width;
104
105   g_return_if_fail (GTK_IS_EVENT_BOX (widget));
106
107   GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
108
109   border_width = GTK_CONTAINER (widget)->border_width;
110   
111   attributes.x = widget->allocation.x + border_width;
112   attributes.y = widget->allocation.y + border_width;
113   attributes.width = widget->allocation.width - 2*border_width;
114   attributes.height = widget->allocation.height - 2*border_width;
115   attributes.window_type = GDK_WINDOW_CHILD;
116   attributes.wclass = GDK_INPUT_OUTPUT;
117   attributes.visual = gtk_widget_get_visual (widget);
118   attributes.colormap = gtk_widget_get_colormap (widget);
119   attributes.event_mask = gtk_widget_get_events (widget)
120                         | GDK_BUTTON_MOTION_MASK
121                         | GDK_BUTTON_PRESS_MASK
122                         | GDK_BUTTON_RELEASE_MASK
123                         | GDK_EXPOSURE_MASK
124                         | GDK_ENTER_NOTIFY_MASK
125                         | GDK_LEAVE_NOTIFY_MASK;
126
127   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
128
129   widget->window = gdk_window_new (gtk_widget_get_parent_window (widget), &attributes, attributes_mask);
130   gdk_window_set_user_data (widget->window, widget);
131
132   widget->style = gtk_style_attach (widget->style, widget->window);
133   gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL);
134 }
135
136 static void
137 gtk_event_box_size_request (GtkWidget      *widget,
138                             GtkRequisition *requisition)
139 {
140   GtkBin *bin;
141
142   g_return_if_fail (GTK_IS_EVENT_BOX (widget));
143   g_return_if_fail (requisition != NULL);
144
145   bin = GTK_BIN (widget);
146
147   requisition->width = GTK_CONTAINER (widget)->border_width * 2;
148   requisition->height = GTK_CONTAINER (widget)->border_width * 2;
149
150   if (bin->child && GTK_WIDGET_VISIBLE (bin->child))
151     {
152       GtkRequisition child_requisition;
153       
154       gtk_widget_size_request (bin->child, &child_requisition);
155
156       requisition->width += child_requisition.width;
157       requisition->height += child_requisition.height;
158     }
159 }
160
161 static void
162 gtk_event_box_size_allocate (GtkWidget     *widget,
163                             GtkAllocation *allocation)
164 {
165   GtkBin *bin;
166   GtkAllocation child_allocation;
167
168   g_return_if_fail (GTK_IS_EVENT_BOX (widget));
169   g_return_if_fail (allocation != NULL);
170
171   widget->allocation = *allocation;
172   bin = GTK_BIN (widget);
173
174   child_allocation.x = 0;
175   child_allocation.y = 0;
176   child_allocation.width = MAX (allocation->width - GTK_CONTAINER (widget)->border_width * 2, 0);
177   child_allocation.height = MAX (allocation->height - GTK_CONTAINER (widget)->border_width * 2, 0);
178
179   if (GTK_WIDGET_REALIZED (widget))
180     {
181       gdk_window_move_resize (widget->window,
182                               allocation->x + GTK_CONTAINER (widget)->border_width,
183                               allocation->y + GTK_CONTAINER (widget)->border_width,
184                               child_allocation.width,
185                               child_allocation.height);
186     }
187   
188   if (bin->child)
189     {
190       gtk_widget_size_allocate (bin->child, &child_allocation);
191     }
192 }
193
194 static void
195 gtk_event_box_paint (GtkWidget    *widget,
196                      GdkRectangle *area)
197 {
198   gtk_paint_flat_box (widget->style, widget->window,
199                       widget->state, GTK_SHADOW_NONE,
200                       area, widget, "eventbox",
201                       0, 0, -1, -1);
202 }
203
204 static gint
205 gtk_event_box_expose (GtkWidget      *widget,
206                      GdkEventExpose *event)
207 {
208   g_return_val_if_fail (GTK_IS_EVENT_BOX (widget), FALSE);
209   g_return_val_if_fail (event != NULL, FALSE);
210
211   if (GTK_WIDGET_DRAWABLE (widget))
212     {
213       gtk_event_box_paint (widget, &event->area);
214       
215       (* GTK_WIDGET_CLASS (parent_class)->expose_event) (widget, event);
216     }
217
218   return FALSE;
219 }
220