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