1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
/*
* gtkclutteroffscreen.c
*/
#include "config.h"
#include <gtk/gtk.h>
#include "gtk-clutter-embed.h"
#include "gtk-clutter-offscreen.h"
#include "gtk-clutter-actor-internal.h"
static void gtk_clutter_offscreen_realize (GtkWidget *widget);
static void gtk_clutter_offscreen_unrealize (GtkWidget *widget);
static void gtk_clutter_offscreen_size_request (GtkWidget *widget,
GtkRequisition *requisition);
static void gtk_clutter_offscreen_size_allocate (GtkWidget *widget,
GtkAllocation *allocation);
static gboolean gtk_clutter_offscreen_damage (GtkWidget *widget,
GdkEventExpose *event);
G_DEFINE_TYPE (GtkClutterOffscreen, gtk_clutter_offscreen, GTK_TYPE_BIN);
void _gtk_clutter_embed_set_child_active (GtkClutterEmbed *embed,
GtkWidget *child,
gboolean active);
static gint
gtk_clutter_offscreen_expose (GtkWidget *widget,
GdkEventExpose *event)
{
return GTK_WIDGET_CLASS (gtk_clutter_offscreen_parent_class)->expose_event (widget, event);
}
static void
gtk_clutter_offscreen_add (GtkContainer *container,
GtkWidget *child)
{
GtkClutterOffscreen *offscreen;
g_return_if_fail (GTK_CLUTTER_IS_OFFSCREEN (container));
offscreen = GTK_CLUTTER_OFFSCREEN (container);
GTK_CONTAINER_CLASS (gtk_clutter_offscreen_parent_class)->add (container,
child);
if (CLUTTER_ACTOR_IS_VISIBLE (offscreen->actor))
{
/* force a relayout */
clutter_actor_set_size (offscreen->actor, -1, -1);
clutter_actor_queue_relayout (offscreen->actor);
}
}
static void
gtk_clutter_offscreen_remove (GtkContainer *container,
GtkWidget *child)
{
GtkClutterOffscreen *offscreen;
g_return_if_fail (GTK_CLUTTER_IS_OFFSCREEN (container));
offscreen = GTK_CLUTTER_OFFSCREEN (container);
GTK_CONTAINER_CLASS (gtk_clutter_offscreen_parent_class)->remove (container,
child);
if (CLUTTER_ACTOR_IS_VISIBLE (offscreen->actor))
{
/* force a relayout */
clutter_actor_set_size (offscreen->actor, -1, -1);
clutter_actor_queue_relayout (offscreen->actor);
}
}
static void
gtk_clutter_offscreen_check_resize (GtkContainer *container)
{
GtkClutterOffscreen *offscreen = GTK_CLUTTER_OFFSCREEN (container);
clutter_actor_queue_relayout (offscreen->actor);
}
static void
gtk_clutter_offscreen_class_init (GtkClutterOffscreenClass *klass)
{
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
GtkContainerClass *container_class = GTK_CONTAINER_CLASS (klass);
widget_class->expose_event = gtk_clutter_offscreen_expose;
widget_class->realize = gtk_clutter_offscreen_realize;
widget_class->unrealize = gtk_clutter_offscreen_unrealize;
widget_class->size_request = gtk_clutter_offscreen_size_request;
widget_class->size_allocate = gtk_clutter_offscreen_size_allocate;
container_class->add = gtk_clutter_offscreen_add;
container_class->remove = gtk_clutter_offscreen_remove;
container_class->check_resize = gtk_clutter_offscreen_check_resize;
g_signal_override_class_closure (g_signal_lookup ("damage-event", GTK_TYPE_WIDGET),
GTK_TYPE_CLUTTER_OFFSCREEN,
g_cclosure_new (G_CALLBACK (gtk_clutter_offscreen_damage),
NULL, NULL));
}
static void
gtk_clutter_offscreen_init (GtkClutterOffscreen *offscreen)
{
GTK_WIDGET_UNSET_FLAGS (offscreen, GTK_NO_WINDOW);
gtk_container_set_resize_mode (GTK_CONTAINER (offscreen), GTK_RESIZE_IMMEDIATE);
offscreen->active = TRUE;
}
GtkWidget *
gtk_clutter_offscreen_new (ClutterActor *actor)
{
GtkClutterOffscreen *offscreen;
offscreen = g_object_new (GTK_TYPE_CLUTTER_OFFSCREEN, NULL);
offscreen->actor = actor; /* Back pointer, actor owns widget */
return GTK_WIDGET (offscreen);
}
static void
offscreen_window_to_parent (GdkWindow *offscreen_window,
double offscreen_x,
double offscreen_y,
double *parent_x,
double *parent_y,
GtkClutterOffscreen *offscreen)
{
ClutterVertex point, vertex;
point.x = offscreen_x;
point.y = offscreen_y;
point.z = 0;
clutter_actor_apply_transform_to_point (offscreen->actor, &point, &vertex);
*parent_x = vertex.x;
*parent_y = vertex.y;
}
static void
offscreen_window_from_parent (GdkWindow *window,
double parent_x,
double parent_y,
double *offscreen_x,
double *offscreen_y,
GtkClutterOffscreen *offscreen)
{
gfloat x, y;
if (clutter_actor_transform_stage_point (offscreen->actor,
parent_x,
parent_y,
&x, &y))
{
*offscreen_x = x;
*offscreen_y = y;
}
else
{
/* Could't transform. What the heck do we do now? */
*offscreen_x = parent_x;
*offscreen_y = parent_y;
}
}
static void
gtk_clutter_offscreen_realize (GtkWidget *widget)
{
GtkClutterOffscreen *offscreen = GTK_CLUTTER_OFFSCREEN (widget);
GdkWindowAttr attributes;
gint attributes_mask;
gint border_width;
GtkWidget *parent;
GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
border_width = GTK_CONTAINER (widget)->border_width;
attributes.x = widget->allocation.x + border_width;
attributes.y = widget->allocation.y + border_width;
attributes.width = widget->allocation.width - 2 * border_width;
attributes.height = widget->allocation.height - 2 * border_width;
attributes.window_type = GDK_WINDOW_OFFSCREEN;
attributes.event_mask = gtk_widget_get_events (widget) |
GDK_EXPOSURE_MASK;
attributes.visual = gtk_widget_get_visual (widget);
attributes.colormap = gtk_widget_get_colormap (widget);
attributes.wclass = GDK_INPUT_OUTPUT;
attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
parent = gtk_widget_get_parent (widget);
widget->window = gdk_window_new (gdk_screen_get_root_window (gdk_drawable_get_screen (GDK_DRAWABLE (parent->window))),
&attributes, attributes_mask);
gdk_window_set_user_data (widget->window, widget);
g_signal_connect (widget->window, "to-embedder",
G_CALLBACK (offscreen_window_to_parent), widget);
g_signal_connect (widget->window, "from-embedder",
G_CALLBACK (offscreen_window_from_parent), widget);
widget->style = gtk_style_attach (widget->style, widget->window);
gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL);
if (offscreen->active)
_gtk_clutter_embed_set_child_active (GTK_CLUTTER_EMBED (parent),
widget, TRUE);
}
static void
gtk_clutter_offscreen_unrealize (GtkWidget *widget)
{
GtkClutterOffscreen *offscreen = GTK_CLUTTER_OFFSCREEN (widget);
if (offscreen->active)
_gtk_clutter_embed_set_child_active (GTK_CLUTTER_EMBED (widget->parent),
widget, FALSE);
GTK_WIDGET_CLASS (gtk_clutter_offscreen_parent_class)->unrealize (widget);
}
static void
gtk_clutter_offscreen_size_request (GtkWidget *widget,
GtkRequisition *requisition)
{
requisition->width = (GTK_CONTAINER (widget)->border_width * 2);
requisition->height = (GTK_CONTAINER (widget)->border_width * 2);
if (GTK_BIN (widget)->child && GTK_WIDGET_VISIBLE (GTK_BIN (widget)->child))
{
GtkRequisition child_requisition;
gtk_widget_size_request (GTK_BIN (widget)->child, &child_requisition);
requisition->width += child_requisition.width;
requisition->height += child_requisition.height;
}
}
static void
gtk_clutter_offscreen_size_allocate (GtkWidget *widget,
GtkAllocation *allocation)
{
GtkClutterOffscreen *offscreen;
gint border_width;
offscreen = GTK_CLUTTER_OFFSCREEN (widget);
/* some widgets call gtk_widget_queue_resize() which triggers a
* size-request/size-allocate cycle.
* Calling gdk_window_move_resize() triggers an expose-event of the entire
* widget tree, so we only want to do it if the allocation has changed in
* some way, otherwise we can just ignore it. */
if (GTK_WIDGET_REALIZED (widget) &&
(allocation->x != widget->allocation.x ||
allocation->y != widget->allocation.y ||
allocation->width != widget->allocation.width ||
allocation->height != widget->allocation.height))
{
gdk_window_move_resize (widget->window,
0, 0,
allocation->width,
allocation->height);
}
widget->allocation = *allocation;
border_width = GTK_CONTAINER (widget)->border_width;
if (GTK_BIN (offscreen)->child && GTK_WIDGET_VISIBLE (GTK_BIN (offscreen)->child))
{
GtkAllocation child_allocation;
child_allocation.x = border_width;
child_allocation.y = border_width;
child_allocation.width = MAX (1, widget->allocation.width -
border_width * 2);
child_allocation.height = MAX (1, widget->allocation.height -
border_width * 2);
gtk_widget_size_allocate (GTK_BIN (widget)->child, &child_allocation);
}
}
static gboolean
gtk_clutter_offscreen_damage (GtkWidget *widget,
GdkEventExpose *event)
{
GtkClutterOffscreen *offscreen = GTK_CLUTTER_OFFSCREEN (widget);
_gtk_clutter_actor_update (GTK_CLUTTER_ACTOR (offscreen->actor),
event->area.x,
event->area.y,
event->area.width,
event->area.height);
return TRUE;
}
void
gtk_clutter_offscreen_set_active (GtkClutterOffscreen *offscreen,
gboolean active)
{
GtkWidget *parent;
active = !!active;
if (offscreen->active != active)
{
offscreen->active = active;
parent = gtk_widget_get_parent (GTK_WIDGET (offscreen));
if (parent)
_gtk_clutter_embed_set_child_active (GTK_CLUTTER_EMBED (parent),
GTK_WIDGET (offscreen),
active);
}
}
|