]> Pileus Git - ~andy/gtk/blob - gtk/gtkoffscreenwindow.c
Change FSF Address
[~andy/gtk] / gtk / gtkoffscreenwindow.c
1 /*
2  * This library is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public
4  * License as published by the Free Software Foundation; either
5  * version 2 of the License, or (at your option) any later version.
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  * Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public
13  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
14  *
15  * Authors: Cody Russell <crussell@canonical.com>
16  *          Alexander Larsson <alexl@redhat.com>
17  */
18
19 #include "config.h"
20
21 #include "gtkoffscreenwindow.h"
22 #include "gtkwidgetprivate.h"
23 #include "gtkcontainerprivate.h"
24 #include "gtkprivate.h"
25
26 /**
27  * SECTION:gtkoffscreenwindow
28  * @short_description: A toplevel to manage offscreen rendering of child widgets
29  * @title: GtkOffscreenWindow
30  *
31  * GtkOffscreenWindow is strictly intended to be used for obtaining
32  * snapshots of widgets that are not part of a normal widget hierarchy.
33  * Since #GtkOffscreenWindow is a toplevel widget you cannot obtain
34  * snapshots of a full window with it since you cannot pack a toplevel
35  * widget in another toplevel.
36  *
37  * The idea is to take a widget and manually set the state of it,
38  * add it to a GtkOffscreenWindow and then retrieve the snapshot
39  * as a #cairo_surface_t or #GdkPixbuf.
40  *
41  * GtkOffscreenWindow derives from #GtkWindow only as an implementation
42  * detail.  Applications should not use any API specific to #GtkWindow
43  * to operate on this object.  It should be treated as a #GtkBin that
44  * has no parent widget.
45  *
46  * When contained offscreen widgets are redrawn, GtkOffscreenWindow
47  * will emit a #GtkWidget::damage-event signal.
48  */
49
50 G_DEFINE_TYPE (GtkOffscreenWindow, gtk_offscreen_window, GTK_TYPE_WINDOW);
51
52 static void
53 gtk_offscreen_window_get_preferred_width (GtkWidget *widget,
54                                           gint      *minimum,
55                                           gint      *natural)
56 {
57   GtkBin *bin = GTK_BIN (widget);
58   GtkWidget *child;
59   gint border_width;
60   gint default_width;
61
62   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
63
64   *minimum = border_width * 2;
65   *natural = border_width * 2;
66
67   child = gtk_bin_get_child (bin);
68
69   if (child != NULL && gtk_widget_get_visible (child))
70     {
71       gint child_min, child_nat;
72
73       gtk_widget_get_preferred_width (child, &child_min, &child_nat);
74
75       *minimum += child_min;
76       *natural += child_nat;
77     }
78
79   gtk_window_get_default_size (GTK_WINDOW (widget),
80                                &default_width, NULL);
81
82   *minimum = MAX (*minimum, default_width);
83   *natural = MAX (*natural, default_width);
84 }
85
86 static void
87 gtk_offscreen_window_get_preferred_height (GtkWidget *widget,
88                                            gint      *minimum,
89                                            gint      *natural)
90 {
91   GtkBin *bin = GTK_BIN (widget);
92   GtkWidget *child;
93   gint border_width;
94   gint default_height;
95
96   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
97
98   *minimum = border_width * 2;
99   *natural = border_width * 2;
100
101   child = gtk_bin_get_child (bin);
102
103   if (child != NULL && gtk_widget_get_visible (child))
104     {
105       gint child_min, child_nat;
106
107       gtk_widget_get_preferred_height (child, &child_min, &child_nat);
108
109       *minimum += child_min;
110       *natural += child_nat;
111     }
112
113   gtk_window_get_default_size (GTK_WINDOW (widget),
114                                NULL, &default_height);
115
116   *minimum = MAX (*minimum, default_height);
117   *natural = MAX (*natural, default_height);
118 }
119
120 static void
121 gtk_offscreen_window_size_allocate (GtkWidget *widget,
122                                     GtkAllocation *allocation)
123 {
124   GtkBin *bin = GTK_BIN (widget);
125   GtkWidget *child;
126   gint border_width;
127
128   gtk_widget_set_allocation (widget, allocation);
129
130   border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
131
132   if (gtk_widget_get_realized (widget))
133     gdk_window_move_resize (gtk_widget_get_window (widget),
134                             allocation->x,
135                             allocation->y,
136                             allocation->width,
137                             allocation->height);
138
139   child = gtk_bin_get_child (bin);
140
141   if (child != NULL && gtk_widget_get_visible (child))
142     {
143       GtkAllocation  child_alloc;
144
145       child_alloc.x = border_width;
146       child_alloc.y = border_width;
147       child_alloc.width = allocation->width - 2 * border_width;
148       child_alloc.height = allocation->height - 2 * border_width;
149
150       gtk_widget_size_allocate (child, &child_alloc);
151     }
152
153   gtk_widget_queue_draw (widget);
154 }
155
156 static void
157 gtk_offscreen_window_realize (GtkWidget *widget)
158 {
159   GtkAllocation allocation;
160   GtkBin *bin;
161   GtkWidget *child;
162   GdkWindow *window;
163   GdkWindowAttr attributes;
164   gint attributes_mask;
165
166   bin = GTK_BIN (widget);
167
168   gtk_widget_set_realized (widget, TRUE);
169
170   gtk_widget_get_allocation (widget, &allocation);
171
172   attributes.x = allocation.x;
173   attributes.y = allocation.y;
174   attributes.width = allocation.width;
175   attributes.height = allocation.height;
176   attributes.window_type = GDK_WINDOW_OFFSCREEN;
177   attributes.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK;
178   attributes.visual = gtk_widget_get_visual (widget);
179   attributes.wclass = GDK_INPUT_OUTPUT;
180
181   attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL;
182
183   window = gdk_window_new (gtk_widget_get_parent_window (widget),
184                            &attributes, attributes_mask);
185   gtk_widget_set_window (widget, window);
186   gdk_window_set_user_data (window, widget);
187
188   child = gtk_bin_get_child (bin);
189   if (child)
190     gtk_widget_set_parent_window (child, window);
191
192   gtk_style_context_set_background (gtk_widget_get_style_context (widget),
193                                     window);
194 }
195
196 static void
197 gtk_offscreen_window_resize (GtkWidget *widget)
198 {
199   GtkAllocation allocation = { 0, 0 };
200   GtkRequisition requisition;
201
202   gtk_widget_get_preferred_size (widget, &requisition, NULL);
203
204   allocation.width  = requisition.width;
205   allocation.height = requisition.height;
206   gtk_widget_size_allocate (widget, &allocation);
207 }
208
209 static void
210 move_focus (GtkWidget       *widget,
211             GtkDirectionType dir)
212 {
213   gtk_widget_child_focus (widget, dir);
214
215   if (!gtk_container_get_focus_child (GTK_CONTAINER (widget)))
216     gtk_window_set_focus (GTK_WINDOW (widget), NULL);
217 }
218
219 static void
220 gtk_offscreen_window_show (GtkWidget *widget)
221 {
222   gboolean need_resize;
223   GtkContainer *container;
224
225   _gtk_widget_set_visible_flag (widget, TRUE);
226
227   container = GTK_CONTAINER (widget);
228   need_resize = _gtk_container_get_need_resize (container) || !gtk_widget_get_realized (widget);
229   _gtk_container_set_need_resize (container, FALSE);
230
231   if (need_resize)
232     gtk_offscreen_window_resize (widget);
233
234   gtk_widget_map (widget);
235
236   /* Try to make sure that we have some focused widget */
237   if (!gtk_window_get_focus (GTK_WINDOW (widget)))
238     move_focus (widget, GTK_DIR_TAB_FORWARD);
239 }
240
241 static void
242 gtk_offscreen_window_hide (GtkWidget *widget)
243 {
244   _gtk_widget_set_visible_flag (widget, FALSE);
245   gtk_widget_unmap (widget);
246 }
247
248 static void
249 gtk_offscreen_window_check_resize (GtkContainer *container)
250 {
251   GtkWidget *widget = GTK_WIDGET (container);
252
253   if (gtk_widget_get_visible (widget))
254     gtk_offscreen_window_resize (widget);
255 }
256
257 static void
258 gtk_offscreen_window_class_init (GtkOffscreenWindowClass *class)
259 {
260   GtkWidgetClass *widget_class;
261   GtkContainerClass *container_class;
262
263   widget_class = GTK_WIDGET_CLASS (class);
264   container_class = GTK_CONTAINER_CLASS (class);
265
266   widget_class->realize = gtk_offscreen_window_realize;
267   widget_class->show = gtk_offscreen_window_show;
268   widget_class->hide = gtk_offscreen_window_hide;
269   widget_class->get_preferred_width = gtk_offscreen_window_get_preferred_width;
270   widget_class->get_preferred_height = gtk_offscreen_window_get_preferred_height;
271   widget_class->size_allocate = gtk_offscreen_window_size_allocate;
272
273   container_class->check_resize = gtk_offscreen_window_check_resize;
274 }
275
276 static void
277 gtk_offscreen_window_init (GtkOffscreenWindow *window)
278 {
279 }
280
281 /* --- functions --- */
282 /**
283  * gtk_offscreen_window_new:
284  *
285  * Creates a toplevel container widget that is used to retrieve
286  * snapshots of widgets without showing them on the screen.
287  *
288  * Return value: A pointer to a #GtkWidget
289  *
290  * Since: 2.20
291  */
292 GtkWidget *
293 gtk_offscreen_window_new (void)
294 {
295   return g_object_new (gtk_offscreen_window_get_type (), NULL);
296 }
297
298 /**
299  * gtk_offscreen_window_get_surface:
300  * @offscreen: the #GtkOffscreenWindow contained widget.
301  *
302  * Retrieves a snapshot of the contained widget in the form of
303  * a #cairo_surface_t.  If you need to keep this around over window
304  * resizes then you should add a reference to it.
305  *
306  * Returns: (transfer none): A #cairo_surface_t pointer to the offscreen
307  *     surface, or %NULL.
308  *
309  * Since: 2.20
310  */
311 cairo_surface_t *
312 gtk_offscreen_window_get_surface (GtkOffscreenWindow *offscreen)
313 {
314   g_return_val_if_fail (GTK_IS_OFFSCREEN_WINDOW (offscreen), NULL);
315
316   return gdk_offscreen_window_get_surface (gtk_widget_get_window (GTK_WIDGET (offscreen)));
317 }
318
319 /**
320  * gtk_offscreen_window_get_pixbuf:
321  * @offscreen: the #GtkOffscreenWindow contained widget.
322  *
323  * Retrieves a snapshot of the contained widget in the form of
324  * a #GdkPixbuf.  This is a new pixbuf with a reference count of 1,
325  * and the application should unreference it once it is no longer
326  * needed.
327  *
328  * Returns: (transfer full): A #GdkPixbuf pointer, or %NULL.
329  *
330  * Since: 2.20
331  */
332 GdkPixbuf *
333 gtk_offscreen_window_get_pixbuf (GtkOffscreenWindow *offscreen)
334 {
335   cairo_surface_t *surface;
336   GdkPixbuf *pixbuf = NULL;
337   GdkWindow *window;
338
339   g_return_val_if_fail (GTK_IS_OFFSCREEN_WINDOW (offscreen), NULL);
340
341   window = gtk_widget_get_window (GTK_WIDGET (offscreen));
342   surface = gdk_offscreen_window_get_surface (window);
343
344   if (surface != NULL)
345     {
346       pixbuf = gdk_pixbuf_get_from_surface (surface,
347                                             0, 0,
348                                             gdk_window_get_width (window),
349                                             gdk_window_get_height (window));
350     }
351
352   return pixbuf;
353 }