From: Matthew Allum Date: Thu, 22 Jun 2006 08:40:37 +0000 (+0000) Subject: 2006-06-22 Matthew Allum X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ccbe3001f07ee14d3ccb023e2d9114d0eeeb87a;p=profile%2Fivi%2Fclutter.git 2006-06-22 Matthew Allum * clutter/clutter-main.h: Remove bogus xvisual call. --- diff --git a/ChangeLog b/ChangeLog index 7b96174..abc110f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2006-06-22 Matthew Allum + + * clutter/clutter-main.h: + Remove bogus xvisual call. + +2006-06-22 Matthew Allum + + * clutter/clutter-actor.c: + * clutter/clutter-actor.h: + Remove mirroring related calls ( unimplemented ) + * gtk/gtk-clutter-test.c: 0 -> NULL + 2006-06-22 Iain Holmes * clutter/clutter-actor.c: diff --git a/clutter/clutter-main.h b/clutter/clutter-main.h index e7b5195..67f3ee0 100644 --- a/clutter/clutter-main.h +++ b/clutter/clutter-main.h @@ -83,9 +83,6 @@ clutter_xscreen (void); Window clutter_root_xwindow (void); -XVisualInfo* -clutter_xvisual(void); - gboolean clutter_want_debug (void); diff --git a/doc/reference/ChangeLog b/doc/reference/ChangeLog index 811b0dd..69d93fe 100644 --- a/doc/reference/ChangeLog +++ b/doc/reference/ChangeLog @@ -1,5 +1,10 @@ 2006-06-22 Matthew Allum + * clutter-docs.sgml: + Add overview text. + +2006-06-22 Matthew Allum + * Makefile.am: * clutter-0.0-sections.txt: * clutter-docs.sgml: diff --git a/doc/reference/clutter-docs.sgml b/doc/reference/clutter-docs.sgml index 0a80580..b5baedd 100644 --- a/doc/reference/clutter-docs.sgml +++ b/doc/reference/clutter-docs.sgml @@ -12,7 +12,29 @@ Clutter Overview - FIXME + + Clutter is a GObject based library for creating fast, visually + rich graphical user interfaces. It is intended for creating single + window stylalised applications such as media box UI's, + presentaions, kiosk style apps in preference to regular 'desktop' + style applications. + + + + + Clutter's underlying graphics rendering is OpenGL ( version 1.2+ ) + based. The clutter API is intended to be easy to use, attempting + to hide many of the GL complexitys. It targets maily 2D based + graphics and is definetly not intended to be a general interface + for all OpenGL functionality ( yet ). + + + + + As well as OpenGL Clutter depends on and uses GLib, GObject, + GDKPixbuf and GStreamer. Clutter is released under the GNU Library + General Public License (GNU LGPL) + @@ -35,4 +57,39 @@ + + + License + + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General + Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) + any later version. + + + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Library General Public License for + more details. + + + + You may obtain a copy of the GNU Library General + Public License from the Free Software Foundation by + visiting their Web + site or by writing to: + +
+ Free Software Foundation, Inc. + 59 Temple Place - Suite 330 + Boston, MA 02111-1307 + USA +
+
+
+ diff --git a/doc/reference/tmpl/clutter-enum-types.sgml b/doc/reference/tmpl/clutter-enum-types.sgml index d53709e..e9b1276 100644 --- a/doc/reference/tmpl/clutter-enum-types.sgml +++ b/doc/reference/tmpl/clutter-enum-types.sgml @@ -32,21 +32,6 @@ clutter-enum-types @Returns: - - - - - - - - - - - - -@Returns: - - diff --git a/doc/reference/tmpl/clutter-main.sgml b/doc/reference/tmpl/clutter-main.sgml index a364822..f9d21a7 100644 --- a/doc/reference/tmpl/clutter-main.sgml +++ b/doc/reference/tmpl/clutter-main.sgml @@ -56,6 +56,7 @@ clutter-main @a...: @a...: @a...: +@a...: @a...: diff --git a/gtk/gtk-clutter-test.c b/gtk/gtk-clutter-test.c index 1f6b68f..472e515 100644 --- a/gtk/gtk-clutter-test.c +++ b/gtk/gtk-clutter-test.c @@ -5,7 +5,7 @@ #include "gtk-clutter.h" #define TRAILS 0 -#define NHANDS 6 +#define NHANDS 2 #define WINWIDTH 800 #define WINHEIGHT 800 #define RADIUS 250 @@ -129,7 +129,6 @@ main (int argc, char *argv[]) if (!pixbuf) g_error("pixbuf load failed"); - window = gtk_window_new (GTK_WINDOW_TOPLEVEL); g_signal_connect (window, "destroy", G_CALLBACK (gtk_main_quit), NULL); @@ -215,7 +214,7 @@ main (int argc, char *argv[]) /* Create a timeline to manage animation */ timeline = clutter_timeline_new (360, 60); /* num frames, fps */ - g_object_set(timeline, "loop", TRUE, 0); /* have it loop */ + g_object_set(timeline, "loop", TRUE, NULL); /* have it loop */ /* fire a callback for frame change */ g_signal_connect(timeline, "new-frame", G_CALLBACK (frame_cb), oh);