1
0
Fork 0

2008-02-18 Emmanuele Bassi <ebassi@openedhand.com>

* clutter-animation.sgml: Fix warning

	* creating-your-own-behaviours.sgml: Add a paragraph about
	setting an initial state on the actors.
This commit is contained in:
Emmanuele Bassi 2008-02-18 09:40:52 +00:00
parent 41fb7b6a30
commit 5da2cf7b1a
3 changed files with 20 additions and 9 deletions

View file

@ -1,7 +1,14 @@
2008-02-18 Emmanuele Bassi <ebassi@openedhand.com>
* 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 <mallum@openedhand.com> 2008-02-15 Matthew Allum <mallum@openedhand.com>
* clutter-docs.sgml: * clutter-docs.sgml:
Minor tweakery. Minor tweakery.
2008-02-15 Emmanuele Bassi <ebassi@openedhand.com> 2008-02-15 Emmanuele Bassi <ebassi@openedhand.com>
@ -28,7 +35,7 @@
2008-02-15 Matthew Allum <mallum@openedhand.com> 2008-02-15 Matthew Allum <mallum@openedhand.com>
* clutter-docs.sgml: * clutter-docs.sgml:
Overhaul the overview. Overhaul the overview.
2008-02-15 Emmanuele Bassi <ebassi@openedhand.com> 2008-02-15 Emmanuele Bassi <ebassi@openedhand.com>
@ -54,17 +61,17 @@
2008-02-14 Matthew Allum <mallum@openedhand.com> 2008-02-14 Matthew Allum <mallum@openedhand.com>
* clutter-animation.sgml: * clutter-animation.sgml:
Add new animation docs. Needs work. Add new animation docs. Needs work.
2008-02-13 Matthew Allum <mallum@openedhand.com> 2008-02-13 Matthew Allum <mallum@openedhand.com>
* Makefile.am: * Makefile.am:
* clutter-docs.sgml: * clutter-docs.sgml:
Add new appendix + FIXME for building Add new appendix + FIXME for building
* creating-your-own-behaviours.sgml: * creating-your-own-behaviours.sgml:
Add new initial doc on custom behaviour creation. Add new initial doc on custom behaviour creation.
* subclassing-ClutterActor.sgml: * subclassing-ClutterActor.sgml:
Add FIXME notes. Add FIXME notes.
2008-02-08 Emmanuele Bassi <ebassi@openedhand.com> 2008-02-08 Emmanuele Bassi <ebassi@openedhand.com>

View file

@ -501,10 +501,10 @@ main (int argc, char *argv[])
together. together.
</para> </para>
<warn><para>Combining behaviours that effect the same actor properties <warning><para>Combining behaviours that effect the same actor properties
(i.e two separate paths) will cause unexpected results. The values (i.e two separate paths) will cause unexpected results. The values
will not be merged in any way with essentially a the last applied will not be merged in any way with essentially a the last applied
behaviour taking precedence.</para></warn> behaviour taking precedence.</para></warning>
<para> <para>
Tips for implementing a new behaviour can be found <link Tips for implementing a new behaviour can be found <link

View file

@ -32,7 +32,7 @@
</para> </para>
<example id="clutter-actor-query-coords-example"> <example id="clutter-behaviour-alpha-notify-example">
<para>This example demonstrates a behaviour that produces a vertical <para>This example demonstrates a behaviour that produces a vertical
'wipe' like affect by modifying the actors clip region</para> 'wipe' like affect by modifying the actors clip region</para>
@ -73,5 +73,9 @@ clutter_behaviour_foo_alpha_notify (ClutterBehaviour *behaviour,
</example> </example>
<para> <para>
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.
</para> </para>
</chapter> </chapter>