2007-03-22 Matthew Allum <mallum@openedhand.com>
[clutter-gtk] / ChangeLog
1 2007-03-22  Matthew Allum  <mallum@openedhand.com>
2
3         * NEWS:
4         Update for 0.1 release
5         * doc/reference/clutter-gtk.types:
6         Rename fix.
7
8 2007-03-22  Matthew Allum  <mallum@openedhand.com>
9
10         * clutter-gtk/Makefile.am:
11         * clutter-gtk/clutter-gtk.c:
12         * clutter-gtk/gtk-clutter.c:
13         * clutter-gtk/gtk-clutter.h:
14         * configure.ac:
15         * examples/gtk-clutter-test.c:
16         Various naming fixups. 
17
18 2007-03-21  Matthew Allum  <mallum@openedhand.com>
19
20         * clutter-gtk.pc.in:
21         * clutter-gtk/Makefile.am:
22         More version fixes.
23
24 2007-03-21  Matthew Allum  <mallum@openedhand.com>
25
26         * doc/reference/Makefile.am:
27         Fix lib path so docs build again.
28
29 2007-03-21  Matthew Allum  <mallum@openedhand.com>
30
31         * clutter-gtk/gtk-clutter.c:
32         * clutter-gtk/gtk-clutter.h:
33         Redo to subclass GtkSocket and use XEMBED to embed clutter stage.
34         Needs at least clutter 0.2.2. Avoids previous issues with
35         white textures when painting onto a GtkWindow.
36         (Thanks to Iain for doing all the hardwork here)
37
38         * examples/gtk-clutter-test.c: (main):
39         Update.
40
41         * configure.ac:
42         * clutter-gtk.pc.in:
43         Fixups to require clutter-0.2.2
44
45 2006-11-30  Matthew Allum  <mallum@openedhand.com>
46
47         * clutter-gtk.doap:
48         Update doap file a little.
49
50 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
51
52         * clutter-gtk/gtk-clutter.c:
53         (gtk_clutter_expose_event): Queue a redraw of the
54         stage instead of directly swapping the GL buffers.
55
56 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
57
58         * clutter-gtk/gtk-clutter.c:
59         (gtk_clutter_expose_event): Use the newly added
60         clutter_stage_swap_buffers() and fix the missing redraw
61         on expose bug.
62
63 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
64
65         * examples/gtk-clutter-test.c: Add a "quit" button.
66
67 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
68
69         * clutter-gtk/gtk-clutter.c:
70         (gtk_clutter_destroy): Destroy the ClutterStage instead
71         of unreffing it.
72
73         (gtk_clutter_size_allocate): Queue a redraw if the stage
74         is marked as visible.
75
76         (gtk_clutter_realize): Remove the forced realize: the
77         stage is already realized by default.
78
79         * examples/gtk-clutter-test.c: Use gtk_main_quit().
80
81 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
82
83         * clutter-gtk/gtk-clutter.h: Add constructor; clean up.
84
85         * clutter-gtk/gtk-clutter.c:
86         (gtk_clutter_destroy), (gtk_clutter_class_init): Move
87         the stage unref to the GtkObject::destroy method.
88
89         (gtk_clutter_size_allocate): Oblige to the size allocation
90         request from the container of the GtkClutter widget by
91         resizing the ClutterStage.
92
93         (gtk_clutter_size_request): Require the size of the stage.
94
95         (gtk_clutter_destroy), (gtk_clutter_size_request),
96         (gtk_clutter_realize): Do not use the G_TYPE_INSTANCE_GET_PRIVATE()
97         macro, which does a type check and a function call; use the
98         priv pointer we conveniently keep around.
99
100         * examples/gtk-clutter-test.c: Use the given constructor;
101         now window resizing works.  The stage doesn't get refreshed
102         immediately (resize the window), though, and there's still
103         the X error when we close the window.
104
105 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
106
107         * *: Initial import out of the main tree.