======== Clutter-GTK 0.8.1 ====================================================
[clutter-gtk] / ChangeLog
1 ======== Clutter-GTK 0.8.1 ====================================================
2
3 2008-07-18  Emmanuele Bassi  <ebassi@openedhand.com>
4
5         * NEWS: Release 0.8.1
6
7 2008-07-18  Neil Roberts  <neil@o-hand.com>
8
9         * clutter-gtk/gtk-clutter-embed.c (gtk_clutter_embed_realize): Fix
10         name of mask for motion events.
11
12 2008-07-16  Emmanuele Bassi  <ebassi@openedhand.com>
13
14         * clutter-gtk.pc.in: Fix the pkg-config file. (Ignacio Casal
15         Quinteiro)
16
17 2008-07-15  Emmanuele Bassi  <ebassi@openedhand.com>
18
19         * configure.ac: Post-release bump to 0.8.1.
20
21 ======== Clutter-GTK 0.8.0 ====================================================
22
23 2008-07-15  Emmanuele Bassi  <ebassi@openedhand.com>
24
25         * configure.ac:
26         * README:
27         * NEWS: Release 0.8.0
28
29 2008-07-04  Emmanuele Bassi  <ebassi@openedhand.com>
30
31         * clutter-gtk.pc.in: Fix the inclusion directory
32
33         * clutter-gtk/gtk-clutter-embed.c: Synch up with the stable branch
34         to handle focus. Also remove the ClutterContainer implementation.
35
36         * clutter-gtk/gtk-clutter-util.[ch]: Fully document and add the
37         gtk_clutter_texture_set_from_icon_name() helper function.
38
39         * configure.ac: Whitespace
40
41         * examples/gtk-clutter-test.c: Update.
42
43 2008-05-19  Tomas Frydrych  <tf@openedhand.com>
44
45         * clutter-gtk/gtk-clutter-embed.c:
46         Fixed inclusion of clutter-x11.h following change in structure of
47         clutter includes.
48
49 2008-05-15  Emmanuele Bassi  <ebassi@openedhand.com>
50
51         * clutter-gtk/gtk-clutter-embed.c:
52         (gtk_clutter_embed_init): Realize the stage before retrieving
53         the visual from it.
54
55 2008-05-07  Matthew Allum  <mallum@openedhand.com>
56
57         * clutter-gtk/gtk-clutter-embed.c:
58         Add motion event handling - fixes #907
59
60 2008-04-24  Emmanuele Bassi  <ebassi@openedhand.com>
61
62         * examples/gtk-clutter-test.c (main): Use the utility function
63         for creating a ClutterTexture using a GdkPixbuf.
64
65 2008-04-21  Emmanuele Bassi  <ebassi@openedhand.com>
66
67         Bug #876 - GtkClutterEmbed doesn't propagate events back down
68         to the GtkWindow
69
70         * clutter-gtk/gtk-clutter-embed.c:
71         (gtk_clutter_embed_button_event),
72         (gtk_clutter_embed_key_event): Just return FALSE in the
73         event handlers.
74
75 2008-04-21  Emmanuele Bassi  <ebassi@openedhand.com>
76
77         * clutter-gtk/gtk-clutter-util.h:
78         * clutter-gtk/gtk-clutter-util.c:
79         (gtk_clutter_texture_new_from_pixbuf),
80         (gtk_clutter_texture_new_from_stock),
81         (gtk_clutter_texture_new_from_icon_name): Add utility functions
82         to create a ClutterTexture from a Pixbuf (to replace the
83         clutter_texture_from_pixbuf() call when it will be removed
84         from Clutter core); from a stock id; and from an icon name.
85
86         * examples/Makefile.am: Clean up.
87
88         * examples/gtk-clutter-events.c:
89         * examples/gtk-clutter-multistage.c: Use the new utility API.
90
91 2008-04-17  Emmanuele Bassi  <ebassi@openedhand.com>
92
93         * README: Update requirements
94
95         * clutter-gtk/gtk-clutter-embed.c:
96         (gtk_clutter_embed_dispose): Destroy the ClutterStage we create.
97
98         (gtk_clutter_embed_realize),
99         (gtk_clutter_embed_init),
100         (gtk_clutter_init): Slight cleanup.
101
102 2008-04-17  Emmanuele Bassi  <ebassi@openedhand.com>
103
104         * clutter-gtk/gtk-clutter-util.[ch]: Add utility functions to
105         ClutterGtk to be able to retrieve the ClutterColor equivalent
106         of the various style color components of a GtkWidget.
107
108         * clutter-gtk/Makefile.am: Add gtk-clutter-util.[ch] to the build.
109
110         * doc/reference/clutter-gtk-docs.sgml: Add the new section in
111         the documentation.
112
113         * examples/gtk-clutter-events.c (create_colors): Test the newly
114         added color retrieval API.
115
116 2008-04-15  Neil Roberts  <neil@o-hand.com>
117
118         * configure.ac: Added a --with-flavour option to select between
119         x11 and win32 versions. Defaults to x11.
120
121         * clutter-gtk/gtk-clutter-embed.c: ifdef out X11 specific calls
122         and replace with Win32 equivalents.
123         (gtk_clutter_embed_key_event, gtk_clutter_embed_button_event): Set
124         the stage pointer when generating fake Clutter events otherwise
125         they just get ignored.
126         (gtk_clutter_embed_realize): Always request button and key events
127         in the window event mask. They aren't included by default on
128         Windows.
129
130         * README (Requirements): Added a note about the minimum Clutter
131         version for the Win32 backend.
132
133 2008-04-11  Emmanuele Bassi  <ebassi@openedhand.com>
134
135         * clutter-gtk/gtk-clutter-embed.c:
136         (clutter_container_iface_init): Make GtkClutterEmbed implement
137         ClutterContainer, and proxy all virtual functions to the
138         embedded Stage.
139
140         * examples/gtk-clutter-test.c: (main): Add the group straight
141         to the GtkClutterEmbed widget to test the Container interface
142         implementation.
143
144 2008-04-11  Emmanuele Bassi  <ebassi@openedhand.com>
145
146         * clutter-gtk/gtk-clutter-embed.c:
147         (gtk_clutter_init): Call gtk_init_check(); this is safe, because
148         multiple calls to gtk_init() are safe.
149
150         * clutter-gtk/gtk-clutter-embed.h: Extend the ClutterInitError
151         enumeration.
152
153         * examples/gtk-clutter-events.c:
154         * examples/gtk-clutter-multistage.c:
155         * examples/gtk-clutter-test.c: Call gtk_clutter_init() and error
156         out in case of failure.
157
158 2008-04-04  Emmanuele Bassi  <ebassi@openedhand.com>
159
160         * clutter-gtk/gtk-clutter-embed.c:
161         (gtk_clutter_embed_init): Update after upstream API change.
162
163 2008-04-01  Matthew Allum  <mallum@openedhand.com>
164
165         * examples/Makefile.am:
166         * examples/gtk-clutter-multistage.c:
167         Add a *very* simple multiple stage example.
168
169 2008-04-01  Neil Roberts  <neil@o-hand.com>
170
171         * examples/gtk-clutter-test.c (main): Moved the
172         clutter_actor_show_all call to after the parent widget is
173         shown. Otherwise all of the actors get unrealized when
174         clutter_x11_set_stage_foreign is called and nothing is displayed.
175
176 2008-04-01  Matthew Allum  <mallum@openedhand.com>
177
178         * clutter-gtk/gtk-clutter-embed.c:
179         Update for latest trunk multistage.
180         Should now support multple widgets.
181
182 2008-02-29  Emmanuele Bassi  <ebassi@openedhand.com>
183
184         * Makefile.am:
185         * clutter-gtk/Makefile.am:
186         * examples/Makefile.am: Post-release bump build fixes
187
188         * clutter-gtk/gtk-clutter-embed.c: Extend documentation.
189
190 2008-02-29  Matthew Allum  <mallum@openedhand.com>
191
192         * clutter-gtk.pc.in:
193         * configure.ac:
194         Bump up to unstable 0.7 version and clutter req.
195
196         * clutter-gtk/gtk-clutter-embed.c:
197         * clutter-gtk/gtk-clutter-embed.h:
198         Add clutter_gtk_init(), as to use new API to share DISPLAY and
199         turn off Clutter 'automatic' event collection.
200         Add methods for;
201           expose    - Queue a Clutter redraw.
202           map       - set Actor mapped flag.
203           show/hide - Forward to stage also.
204         Minor doc additions.
205
206         * examples/gtk-clutter-events.c:
207         Add some minor comments re when to call show_all().
208
209         * examples/gtk-clutter-test.c:
210         Fix event->actor mapping.
211
212 2008-02-21  Emmanuele Bassi  <ebassi@openedhand.com>
213
214         * clutter-gtk/gtk-clutter-embed.c:
215         (gtk_clutter_embed_send_configure): Emit a Configure event
216         with the coordinates for the widget area.
217
218         (gtk_clutter_embed_realize),
219         (gtk_clutter_embed_size_allocate): Send the configure event.
220
221 2008-02-18  Emmanuele Bassi  <ebassi@openedhand.com>
222
223         * README:
224         * NEWS: Release 0.6.0
225
226 2008-02-07  Emmanuele Bassi  <ebassi@openedhand.com>
227
228         * clutter-gtk/gtk-clutter-embed.c: Explicitly note that you should
229         never call clutter_actor_set_size() on the embedded stage, but
230         call gtk_widget_set_size_request() on the widget itself to
231         resize the stage.
232
233 2008-01-25  Emmanuele Bassi  <ebassi@openedhand.com>
234
235         * README:
236         * NEWS: Release 0.5.2
237
238         * configure.ac: Post release bump to 0.5.3
239
240 2008-01-24  Emmanuele Bassi  <ebassi@openedhand.com>
241
242         * doc/reference/clutter-gtk-docs.sgml:
243         * doc/reference/clutter-gtk.types: Update with the widget name
244         change.
245
246         * examples/gtk-clutter-test.c: Set a default size on the
247         widget to avoid the 0, 0 initial size.
248
249 2008-01-23  Emmanuele Bassi  <ebassi@openedhand.com>
250
251         * configure.ac: Fix srcdir detection.
252
253 2008-01-23  Emmanuele Bassi  <ebassi@openedhand.com>
254
255         * configure.ac: Bump up to 0.5.1 and require Clutter 0.5.3
256         using clutter-x11.
257
258         * clutter-gtk.pc.in: Require clutter-x11-0.5.
259
260         * clutter-gtk/Makefile.am:
261         * clutter-gtk/gtk-clutter-embed.[ch]: Add the new GtkClutterEmbed
262         widget; this widget reverts back to the old, pre-XEMBED implementation
263         of an embeddable stage, by letting Clutter draw directly onto a
264         child GdkWindow, thanks to the fixes that went into Clutter
265         core. (#716, #717, #718, based on a patch by Havoc Pennington)
266
267         * clutter-gtk/clutter-gtk.[ch]: Remove the XEMBED based embeddable
268         widget.
269
270         * examples/gtk-clutter-events.c:
271         * examples/gtk-clutter-test.c: Update the tests for the new API.
272
273 2008-01-17  Emmanuele Bassi  <ebassi@openedhand.com>
274
275         * NEWS:
276         * README: Release 0.5.0
277
278 2007-12-04  Emmanuele Bassi  <ebassi@openedhand.com>
279
280         Update after the API changes in Clutter core
281
282         * clutter-gtk/clutter-gtk.c:
283         (gtk_clutter_destroy): Do not call clutter_actor_destroy()
284         on the stage.
285
286         (gtk_clutter_map): Use the new X11 API for retrieving the
287         XID of the stage window.
288
289         (gtk_clutter_init): Set the widget as paintable and the stage
290         as resizable.
291
292         * examples/gtk-clutter-events.c:
293         (on_x_changed), (on_y_changed), (on_z_changed): Use the new
294         clutter_actor_set_rotation() API.
295
296         * examples/gtk-clutter-test.c (frame_cb): Ditto as above.
297
298 2007-08-20  Emmanuele Bassi  <ebassi@openedhand.com>
299
300         * doc/reference/clutter-gtk-sections.txt:
301         * doc/reference/clutter-gtk-docs.sgml:
302         * clutter-gtk/clutter-gtk.[ch]: Fix API reference.
303
304         * examples/Makefile.am: Fix compilation of the examples
305
306 2007-08-15  Emmanuele Bassi  <ebassi@openedhand.com>
307
308         * configure.ac:
309         * clutter-gtk.pc.in:
310         * Makefile.am:
311         * clutter-gtk/Makefile.am: Bump up to 0.5.0 and require
312         clutter-gtk-0.5 as well.
313
314 2007-08-07  Emmanuele Bassi  <ebassi@openedhand.com>
315
316         * configure.ac: Bump up to 0.4.0; require clutter-glx-0.4.
317
318         * clutter-gtk.pc.in:
319         * Makefile.am:
320         * clutter-gtk/Makefile.am: Update.
321
322 2007-08-03  Chris Lord,,,  <chris@openedhand.com>
323
324         * doc/reference/Makefile.am:
325         Fix documentation building
326
327 2007-07-18  Neil J. Patel  <njp@o-hand.com>
328
329         * examples/Makefile.am:
330         Point to new clutter-gtk library name.
331
332 2007-07-17  Emmanuele Bassi  <ebassi@openedhand.com>
333
334         * examples/gtk-clutter-events.c: Remove wrong casting around
335         the g_signal_connect() argument; this masked a weird memory
336         corruption bug happening when compiling outside the sources
337         directory.
338
339 2007-07-17  Emmanuele Bassi  <ebassi@openedhand.com>
340
341         * clutter-gtk/Makefile.am:
342         * clutter-gtk.pc.in: Install (and use) a versioned library, to
343         match the behaviour of clutter-core and the other integration
344         libraries.
345
346 2007-07-17  Emmanuele Bassi  <ebassi@openedhand.com>
347
348         * clutter-gtk.pc.in: Depend on the right clutter pkgconfig file
349
350         * Makefile.am: Install a versioned clutter-gtk pkgconfig file
351
352 2007-07-06  Matthew Allum  <mallum@openedhand.com>
353
354         * NEWS:
355         Update.
356         * configure.ac:
357         Bump up version to 0.3.1
358
359 2007-07-06  Matthew Allum  <mallum@openedhand.com>
360
361         * clutter-gtk.pc.in:
362         Fix to require 0.3 clutter.
363
364 2007-06-11  Neil Jagdish Patel  <njp@f7>
365
366         * examples/gtk-clutter-events.c: (create_colors):
367         Removed stray g_print
368
369 2007-06-11  Neil Jagdish Patel  <njp@o-hand.com>
370
371         * examples/Makefile.am:
372         * examples/gtk-clutter-events.c: (on_gtk_entry_changed),
373         (on_x_changed), (on_y_changed), (on_z_changed),
374         (on_opacity_changed), (create_colors), (main):
375         Added another example whihc shows some interaction between gtk and
376         the stage.
377
378         * examples/gtk-clutter-test.c: (main):
379         Updated to work with clutter-0.3
380
381
382 2007-04-17  Emmanuele Bassi  <ebassi@openedhand.com>
383
384         * configure.ac: Branch for development; bump to 0.3.0, to
385         match Clutter core version; require clutter-glx backend.
386
387         * clutter-gtk/clutter-gtk.c: Include the GLX backend specific
388         functions; add an "embedded" read-only property, which signals
389         whether the widget has successfully embedded the stage window;
390         use the new clutter_glx_get_stage_window() function.
391
392         * examples/gtk-clutter-test.c: Port to the new event API.
393
394 2007-03-23  Ross Burton  <ross@openedhand.com>
395
396         * configure.ac:
397         Don't require any particular GTK+ version.
398
399 2007-03-23  Ross Burton  <ross@openedhand.com>
400
401         * examples/Makefile.am:
402         Dist the PNG.
403
404 ================= 2007-03-22 0.1 Release ========================
405
406 2007-03-22  Matthew Allum  <mallum@openedhand.com>
407
408         * clutter-gtk.doap:
409         Update for 0.1 Realease
410
411 2007-03-22  Matthew Allum  <mallum@openedhand.com>
412
413         * NEWS:
414         Update for 0.1 release
415         * doc/reference/clutter-gtk.types:
416         Rename fix.
417
418 2007-03-22  Matthew Allum  <mallum@openedhand.com>
419
420         * clutter-gtk/Makefile.am:
421         * clutter-gtk/clutter-gtk.c:
422         * clutter-gtk/gtk-clutter.c:
423         * clutter-gtk/gtk-clutter.h:
424         * configure.ac:
425         * examples/gtk-clutter-test.c:
426         Various naming fixups.
427
428 2007-03-21  Matthew Allum  <mallum@openedhand.com>
429
430         * clutter-gtk.pc.in:
431         * clutter-gtk/Makefile.am:
432         More version fixes.
433
434 2007-03-21  Matthew Allum  <mallum@openedhand.com>
435
436         * doc/reference/Makefile.am:
437         Fix lib path so docs build again.
438
439 2007-03-21  Matthew Allum  <mallum@openedhand.com>
440
441         * clutter-gtk/gtk-clutter.c:
442         * clutter-gtk/gtk-clutter.h:
443         Redo to subclass GtkSocket and use XEMBED to embed clutter stage.
444         Needs at least clutter 0.2.2. Avoids previous issues with
445         white textures when painting onto a GtkWindow.
446         (Thanks to Iain for doing all the hardwork here)
447
448         * examples/gtk-clutter-test.c: (main):
449         Update.
450
451         * configure.ac:
452         * clutter-gtk.pc.in:
453         Fixups to require clutter-0.2.2
454
455 2006-11-30  Matthew Allum  <mallum@openedhand.com>
456
457         * clutter-gtk.doap:
458         Update doap file a little.
459
460 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
461
462         * clutter-gtk/gtk-clutter.c:
463         (gtk_clutter_expose_event): Queue a redraw of the
464         stage instead of directly swapping the GL buffers.
465
466 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
467
468         * clutter-gtk/gtk-clutter.c:
469         (gtk_clutter_expose_event): Use the newly added
470         clutter_stage_swap_buffers() and fix the missing redraw
471         on expose bug.
472
473 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
474
475         * examples/gtk-clutter-test.c: Add a "quit" button.
476
477 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
478
479         * clutter-gtk/gtk-clutter.c:
480         (gtk_clutter_destroy): Destroy the ClutterStage instead
481         of unreffing it.
482
483         (gtk_clutter_size_allocate): Queue a redraw if the stage
484         is marked as visible.
485
486         (gtk_clutter_realize): Remove the forced realize: the
487         stage is already realized by default.
488
489         * examples/gtk-clutter-test.c: Use gtk_main_quit().
490
491 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
492
493         * clutter-gtk/gtk-clutter.h: Add constructor; clean up.
494
495         * clutter-gtk/gtk-clutter.c:
496         (gtk_clutter_destroy), (gtk_clutter_class_init): Move
497         the stage unref to the GtkObject::destroy method.
498
499         (gtk_clutter_size_allocate): Oblige to the size allocation
500         request from the container of the GtkClutter widget by
501         resizing the ClutterStage.
502
503         (gtk_clutter_size_request): Require the size of the stage.
504
505         (gtk_clutter_destroy), (gtk_clutter_size_request),
506         (gtk_clutter_realize): Do not use the G_TYPE_INSTANCE_GET_PRIVATE()
507         macro, which does a type check and a function call; use the
508         priv pointer we conveniently keep around.
509
510         * examples/gtk-clutter-test.c: Use the given constructor;
511         now window resizing works.  The stage doesn't get refreshed
512         immediately (resize the window), though, and there's still
513         the X error when we close the window.
514
515 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
516
517         * *: Initial import out of the main tree.