7e19ea027b5d469f9d320f2ec03a5ea99c8f2092
[clutter-gtk] / ChangeLog
1 2007-07-06  Matthew Allum  <mallum@openedhand.com>
2
3         * clutter-gtk.pc.in:
4         Fix to require 0.3 clutter.
5
6 2007-06-11  Neil Jagdish Patel  <njp@f7>
7
8         * examples/gtk-clutter-events.c: (create_colors):
9         Removed stray g_print
10
11 2007-06-11  Neil Jagdish Patel  <njp@o-hand.com>
12
13         * examples/Makefile.am:
14         * examples/gtk-clutter-events.c: (on_gtk_entry_changed),
15         (on_x_changed), (on_y_changed), (on_z_changed),
16         (on_opacity_changed), (create_colors), (main):
17         Added another example whihc shows some interaction between gtk and
18         the stage.
19
20         * examples/gtk-clutter-test.c: (main):
21         Updated to work with clutter-0.3
22
23
24 2007-04-17  Emmanuele Bassi  <ebassi@openedhand.com>
25
26         * configure.ac: Branch for development; bump to 0.3.0, to
27         match Clutter core version; require clutter-glx backend.
28
29         * clutter-gtk/clutter-gtk.c: Include the GLX backend specific
30         functions; add an "embedded" read-only property, which signals
31         whether the widget has successfully embedded the stage window;
32         use the new clutter_glx_get_stage_window() function.
33
34         * examples/gtk-clutter-test.c: Port to the new event API.
35
36 2007-03-23  Ross Burton  <ross@openedhand.com>
37
38         * configure.ac:
39         Don't require any particular GTK+ version.
40
41 2007-03-23  Ross Burton  <ross@openedhand.com>
42
43         * examples/Makefile.am:
44         Dist the PNG.
45
46 ================= 2007-03-22 0.1 Release ========================
47
48 2007-03-22  Matthew Allum  <mallum@openedhand.com>
49
50         * clutter-gtk.doap:
51         Update for 0.1 Realease
52
53 2007-03-22  Matthew Allum  <mallum@openedhand.com>
54
55         * NEWS:
56         Update for 0.1 release
57         * doc/reference/clutter-gtk.types:
58         Rename fix.
59
60 2007-03-22  Matthew Allum  <mallum@openedhand.com>
61
62         * clutter-gtk/Makefile.am:
63         * clutter-gtk/clutter-gtk.c:
64         * clutter-gtk/gtk-clutter.c:
65         * clutter-gtk/gtk-clutter.h:
66         * configure.ac:
67         * examples/gtk-clutter-test.c:
68         Various naming fixups. 
69
70 2007-03-21  Matthew Allum  <mallum@openedhand.com>
71
72         * clutter-gtk.pc.in:
73         * clutter-gtk/Makefile.am:
74         More version fixes.
75
76 2007-03-21  Matthew Allum  <mallum@openedhand.com>
77
78         * doc/reference/Makefile.am:
79         Fix lib path so docs build again.
80
81 2007-03-21  Matthew Allum  <mallum@openedhand.com>
82
83         * clutter-gtk/gtk-clutter.c:
84         * clutter-gtk/gtk-clutter.h:
85         Redo to subclass GtkSocket and use XEMBED to embed clutter stage.
86         Needs at least clutter 0.2.2. Avoids previous issues with
87         white textures when painting onto a GtkWindow.
88         (Thanks to Iain for doing all the hardwork here)
89
90         * examples/gtk-clutter-test.c: (main):
91         Update.
92
93         * configure.ac:
94         * clutter-gtk.pc.in:
95         Fixups to require clutter-0.2.2
96
97 2006-11-30  Matthew Allum  <mallum@openedhand.com>
98
99         * clutter-gtk.doap:
100         Update doap file a little.
101
102 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
103
104         * clutter-gtk/gtk-clutter.c:
105         (gtk_clutter_expose_event): Queue a redraw of the
106         stage instead of directly swapping the GL buffers.
107
108 2006-11-30  Emmanuele Bassi  <ebassi@openedhand.com>
109
110         * clutter-gtk/gtk-clutter.c:
111         (gtk_clutter_expose_event): Use the newly added
112         clutter_stage_swap_buffers() and fix the missing redraw
113         on expose bug.
114
115 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
116
117         * examples/gtk-clutter-test.c: Add a "quit" button.
118
119 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
120
121         * clutter-gtk/gtk-clutter.c:
122         (gtk_clutter_destroy): Destroy the ClutterStage instead
123         of unreffing it.
124
125         (gtk_clutter_size_allocate): Queue a redraw if the stage
126         is marked as visible.
127
128         (gtk_clutter_realize): Remove the forced realize: the
129         stage is already realized by default.
130
131         * examples/gtk-clutter-test.c: Use gtk_main_quit().
132
133 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
134
135         * clutter-gtk/gtk-clutter.h: Add constructor; clean up.
136
137         * clutter-gtk/gtk-clutter.c:
138         (gtk_clutter_destroy), (gtk_clutter_class_init): Move
139         the stage unref to the GtkObject::destroy method.
140
141         (gtk_clutter_size_allocate): Oblige to the size allocation
142         request from the container of the GtkClutter widget by
143         resizing the ClutterStage.
144
145         (gtk_clutter_size_request): Require the size of the stage.
146
147         (gtk_clutter_destroy), (gtk_clutter_size_request),
148         (gtk_clutter_realize): Do not use the G_TYPE_INSTANCE_GET_PRIVATE()
149         macro, which does a type check and a function call; use the
150         priv pointer we conveniently keep around.
151
152         * examples/gtk-clutter-test.c: Use the given constructor;
153         now window resizing works.  The stage doesn't get refreshed
154         immediately (resize the window), though, and there's still
155         the X error when we close the window.
156
157 2006-11-29  Emmanuele Bassi  <ebassi@openedhand.com>
158
159         * *: Initial import out of the main tree.