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