]> Pileus Git - ~andy/gtk/blob - gtk/gtkdrawingarea.c
gtk/gtkdrawingarea.c: use accessor functions to access GtkWidget
[~andy/gtk] / gtk / gtkdrawingarea.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 "gtkdrawingarea.h"
29 #include "gtkintl.h"
30
31
32 static void gtk_drawing_area_realize       (GtkWidget           *widget);
33 static void gtk_drawing_area_size_allocate (GtkWidget           *widget,
34                                             GtkAllocation       *allocation);
35 static void gtk_drawing_area_send_configure (GtkDrawingArea     *darea);
36
37 G_DEFINE_TYPE (GtkDrawingArea, gtk_drawing_area, GTK_TYPE_WIDGET)
38
39 static void
40 gtk_drawing_area_class_init (GtkDrawingAreaClass *class)
41 {
42   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
43
44   widget_class->realize = gtk_drawing_area_realize;
45   widget_class->size_allocate = gtk_drawing_area_size_allocate;
46 }
47
48 static void
49 gtk_drawing_area_init (GtkDrawingArea *darea)
50 {
51   darea->draw_data = NULL;
52 }
53
54
55 GtkWidget*
56 gtk_drawing_area_new (void)
57 {
58   return g_object_new (GTK_TYPE_DRAWING_AREA, NULL);
59 }
60
61 static void
62 gtk_drawing_area_realize (GtkWidget *widget)
63 {
64   GtkDrawingArea *darea = GTK_DRAWING_AREA (widget);
65   GtkAllocation allocation;
66   GdkWindow *window;
67   GdkWindowAttr attributes;
68   gint attributes_mask;
69
70   if (!gtk_widget_get_has_window (widget))
71     {
72       GTK_WIDGET_CLASS (gtk_drawing_area_parent_class)->realize (widget);
73     }
74   else
75     {
76       gtk_widget_set_realized (widget, TRUE);
77
78       gtk_widget_get_allocation (widget, &allocation);
79
80       attributes.window_type = GDK_WINDOW_CHILD;
81       attributes.x = allocation.x;
82       attributes.y = allocation.y;
83       attributes.width = allocation.width;
84       attributes.height = allocation.height;
85       attributes.wclass = GDK_INPUT_OUTPUT;
86       attributes.visual = gtk_widget_get_visual (widget);
87       attributes.colormap = gtk_widget_get_colormap (widget);
88       attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK;
89
90       attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
91
92       window = gdk_window_new (gtk_widget_get_parent_window (widget),
93                                &attributes, attributes_mask);
94       gdk_window_set_user_data (window, darea);
95       gtk_widget_set_window (widget, window);
96
97       gtk_widget_style_attach (widget);
98       gtk_style_set_background (gtk_widget_get_style (widget), window, GTK_STATE_NORMAL);
99     }
100
101   gtk_drawing_area_send_configure (GTK_DRAWING_AREA (widget));
102 }
103
104 static void
105 gtk_drawing_area_size_allocate (GtkWidget     *widget,
106                                 GtkAllocation *allocation)
107 {
108   g_return_if_fail (GTK_IS_DRAWING_AREA (widget));
109   g_return_if_fail (allocation != NULL);
110
111   gtk_widget_set_allocation (widget, allocation);
112
113   if (gtk_widget_get_realized (widget))
114     {
115       if (gtk_widget_get_has_window (widget))
116         gdk_window_move_resize (gtk_widget_get_window (widget),
117                                 allocation->x, allocation->y,
118                                 allocation->width, allocation->height);
119
120       gtk_drawing_area_send_configure (GTK_DRAWING_AREA (widget));
121     }
122 }
123
124 static void
125 gtk_drawing_area_send_configure (GtkDrawingArea *darea)
126 {
127   GtkAllocation allocation;
128   GtkWidget *widget;
129   GdkEvent *event = gdk_event_new (GDK_CONFIGURE);
130
131   widget = GTK_WIDGET (darea);
132   gtk_widget_get_allocation (widget, &allocation);
133
134   event->configure.window = g_object_ref (gtk_widget_get_window (widget));
135   event->configure.send_event = TRUE;
136   event->configure.x = allocation.x;
137   event->configure.y = allocation.y;
138   event->configure.width = allocation.width;
139   event->configure.height = allocation.height;
140   
141   gtk_widget_event (widget, event);
142   gdk_event_free (event);
143 }