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