From 5da2cf7b1a3a458d4dc6f21f9d3b3af4fe16965a Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 18 Feb 2008 09:40:52 +0000 Subject: [PATCH] 2008-02-18 Emmanuele Bassi * clutter-animation.sgml: Fix warning * creating-your-own-behaviours.sgml: Add a paragraph about setting an initial state on the actors. --- doc/reference/ChangeLog | 19 +++++++++++++------ doc/reference/clutter-animation.sgml | 4 ++-- .../creating-your-own-behaviours.sgml | 6 +++++- 3 files changed, 20 insertions(+), 9 deletions(-) diff --git a/doc/reference/ChangeLog b/doc/reference/ChangeLog index 6ddec03a5..0e2e77989 100644 --- a/doc/reference/ChangeLog +++ b/doc/reference/ChangeLog @@ -1,7 +1,14 @@ +2008-02-18 Emmanuele Bassi + + * clutter-animation.sgml: Fix warning + + * creating-your-own-behaviours.sgml: Add a paragraph about + setting an initial state on the actors. + 2008-02-15 Matthew Allum * clutter-docs.sgml: - Minor tweakery. + Minor tweakery. 2008-02-15 Emmanuele Bassi @@ -28,7 +35,7 @@ 2008-02-15 Matthew Allum * clutter-docs.sgml: - Overhaul the overview. + Overhaul the overview. 2008-02-15 Emmanuele Bassi @@ -54,17 +61,17 @@ 2008-02-14 Matthew Allum * clutter-animation.sgml: - Add new animation docs. Needs work. + Add new animation docs. Needs work. 2008-02-13 Matthew Allum * Makefile.am: * clutter-docs.sgml: - Add new appendix + FIXME for building + Add new appendix + FIXME for building * creating-your-own-behaviours.sgml: - Add new initial doc on custom behaviour creation. + Add new initial doc on custom behaviour creation. * subclassing-ClutterActor.sgml: - Add FIXME notes. + Add FIXME notes. 2008-02-08 Emmanuele Bassi diff --git a/doc/reference/clutter-animation.sgml b/doc/reference/clutter-animation.sgml index d9ca878f0..1e8515d64 100644 --- a/doc/reference/clutter-animation.sgml +++ b/doc/reference/clutter-animation.sgml @@ -501,10 +501,10 @@ main (int argc, char *argv[]) together. - Combining behaviours that effect the same actor properties + Combining behaviours that effect the same actor properties (i.e two separate paths) will cause unexpected results. The values will not be merged in any way with essentially a the last applied - behaviour taking precedence. + behaviour taking precedence. Tips for implementing a new behaviour can be found - + This example demonstrates a behaviour that produces a vertical 'wipe' like affect by modifying the actors clip region @@ -73,5 +73,9 @@ clutter_behaviour_foo_alpha_notify (ClutterBehaviour *behaviour, + If the new behaviour is meant to set an initial state on the + actors to which its applied to, then the ClutterBehaviour::applied + signal class handler should be overridden. +