* configure.ac: Added a --with-flavour option to select between
[clutter-gtk] / ChangeLog
index d07dfca..3de6c13 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,193 @@
+2008-04-15  Neil Roberts  <neil@o-hand.com>
+
+       * configure.ac: Added a --with-flavour option to select between
+       x11 and win32 versions. Defaults to x11.
+
+       * clutter-gtk/gtk-clutter-embed.c: ifdef out X11 specific calls
+       and replace with Win32 equivalents.
+       (gtk_clutter_embed_key_event, gtk_clutter_embed_button_event): Set
+       the stage pointer when generating fake Clutter events otherwise
+       they just get ignored.
+       (gtk_clutter_embed_realize): Always request button and key events
+       in the window event mask. They aren't included by default on
+       Windows.
+       
+       * README (Requirements): Added a note about the minimum Clutter
+       version for the Win32 backend.
+
+2008-04-11  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter-gtk/gtk-clutter-embed.c:
+       (clutter_container_iface_init): Make GtkClutterEmbed implement
+       ClutterContainer, and proxy all virtual functions to the
+       embedded Stage.
+
+       * examples/gtk-clutter-test.c: (main): Add the group straight
+       to the GtkClutterEmbed widget to test the Container interface
+       implementation.
+
+2008-04-11  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter-gtk/gtk-clutter-embed.c:
+       (gtk_clutter_init): Call gtk_init_check(); this is safe, because
+       multiple calls to gtk_init() are safe.
+
+       * clutter-gtk/gtk-clutter-embed.h: Extend the ClutterInitError
+       enumeration.
+
+       * examples/gtk-clutter-events.c:
+       * examples/gtk-clutter-multistage.c:
+       * examples/gtk-clutter-test.c: Call gtk_clutter_init() and error
+       out in case of failure.
+
+2008-04-04  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter-gtk/gtk-clutter-embed.c:
+       (gtk_clutter_embed_init): Update after upstream API change.
+
+2008-04-01  Matthew Allum  <mallum@openedhand.com>
+
+       * examples/Makefile.am:
+       * examples/gtk-clutter-multistage.c:
+        Add a *very* simple multiple stage example.
+
+2008-04-01  Neil Roberts  <neil@o-hand.com>
+
+       * examples/gtk-clutter-test.c (main): Moved the
+       clutter_actor_show_all call to after the parent widget is
+       shown. Otherwise all of the actors get unrealized when
+       clutter_x11_set_stage_foreign is called and nothing is displayed.
+
+2008-04-01  Matthew Allum  <mallum@openedhand.com>
+
+       * clutter-gtk/gtk-clutter-embed.c:
+        Update for latest trunk multistage. 
+        Should now support multple widgets.
+
+2008-02-29  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * Makefile.am:
+       * clutter-gtk/Makefile.am:
+       * examples/Makefile.am: Post-release bump build fixes
+
+       * clutter-gtk/gtk-clutter-embed.c: Extend documentation.
+
+2008-02-29  Matthew Allum  <mallum@openedhand.com>
+
+       * clutter-gtk.pc.in:
+       * configure.ac:
+        Bump up to unstable 0.7 version and clutter req.
+
+       * clutter-gtk/gtk-clutter-embed.c:
+       * clutter-gtk/gtk-clutter-embed.h:
+        Add clutter_gtk_init(), as to use new API to share DISPLAY and
+        turn off Clutter 'automatic' event collection. 
+        Add methods for;
+          expose    - Queue a Clutter redraw.
+          map       - set Actor mapped flag.
+          show/hide - Forward to stage also. 
+        Minor doc additions.
+          
+       * examples/gtk-clutter-events.c:
+        Add some minor comments re when to call show_all().        
+
+       * examples/gtk-clutter-test.c:
+        Fix event->actor mapping. 
+
+2008-02-21  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter-gtk/gtk-clutter-embed.c:
+       (gtk_clutter_embed_send_configure): Emit a Configure event
+       with the coordinates for the widget area.
+       
+       (gtk_clutter_embed_realize),
+       (gtk_clutter_embed_size_allocate): Send the configure event.
+
+2008-02-18  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * README:
+       * NEWS: Release 0.6.0
+
+2008-02-07  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * clutter-gtk/gtk-clutter-embed.c: Explicitly note that you should
+       never call clutter_actor_set_size() on the embedded stage, but
+       call gtk_widget_set_size_request() on the widget itself to
+       resize the stage.
+
+2008-01-25  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * README:
+       * NEWS: Release 0.5.2
+
+       * configure.ac: Post release bump to 0.5.3
+
+2008-01-24  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * doc/reference/clutter-gtk-docs.sgml:
+       * doc/reference/clutter-gtk.types: Update with the widget name
+       change.
+
+       * examples/gtk-clutter-test.c: Set a default size on the
+       widget to avoid the 0, 0 initial size.
+
+2008-01-23  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * configure.ac: Fix srcdir detection.
+
+2008-01-23  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * configure.ac: Bump up to 0.5.1 and require Clutter 0.5.3
+       using clutter-x11.
+
+       * clutter-gtk.pc.in: Require clutter-x11-0.5.
+
+       * clutter-gtk/Makefile.am:
+       * clutter-gtk/gtk-clutter-embed.[ch]: Add the new GtkClutterEmbed
+       widget; this widget reverts back to the old, pre-XEMBED implementation
+       of an embeddable stage, by letting Clutter draw directly onto a
+       child GdkWindow, thanks to the fixes that went into Clutter
+       core. (#716, #717, #718, based on a patch by Havoc Pennington)
+
+       * clutter-gtk/clutter-gtk.[ch]: Remove the XEMBED based embeddable
+       widget.
+
+       * examples/gtk-clutter-events.c:
+       * examples/gtk-clutter-test.c: Update the tests for the new API.
+
+2008-01-17  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * NEWS:
+       * README: Release 0.5.0
+
+2007-12-04  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       Update after the API changes in Clutter core
+
+       * clutter-gtk/clutter-gtk.c:
+       (gtk_clutter_destroy): Do not call clutter_actor_destroy()
+       on the stage.
+
+       (gtk_clutter_map): Use the new X11 API for retrieving the
+       XID of the stage window.
+       
+       (gtk_clutter_init): Set the widget as paintable and the stage
+       as resizable.
+       
+       * examples/gtk-clutter-events.c:
+       (on_x_changed), (on_y_changed), (on_z_changed): Use the new
+       clutter_actor_set_rotation() API.
+
+       * examples/gtk-clutter-test.c (frame_cb): Ditto as above.
+
+2007-08-20  Emmanuele Bassi  <ebassi@openedhand.com>
+
+       * doc/reference/clutter-gtk-sections.txt:
+       * doc/reference/clutter-gtk-docs.sgml:
+       * clutter-gtk/clutter-gtk.[ch]: Fix API reference.
+
+       * examples/Makefile.am: Fix compilation of the examples
+
 2007-08-15  Emmanuele Bassi  <ebassi@openedhand.com>
 
        * configure.ac: