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:
parent
41fb7b6a30
commit
5da2cf7b1a
3 changed files with 20 additions and 9 deletions
|
@ -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>
|
||||
|
||||
* clutter-docs.sgml:
|
||||
Minor tweakery.
|
||||
Minor tweakery.
|
||||
|
||||
2008-02-15 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
|
@ -28,7 +35,7 @@
|
|||
2008-02-15 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* clutter-docs.sgml:
|
||||
Overhaul the overview.
|
||||
Overhaul the overview.
|
||||
|
||||
2008-02-15 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
|
@ -54,17 +61,17 @@
|
|||
2008-02-14 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* clutter-animation.sgml:
|
||||
Add new animation docs. Needs work.
|
||||
Add new animation docs. Needs work.
|
||||
|
||||
2008-02-13 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* 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 <ebassi@openedhand.com>
|
||||
|
||||
|
|
|
@ -501,10 +501,10 @@ main (int argc, char *argv[])
|
|||
together.
|
||||
</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
|
||||
will not be merged in any way with essentially a the last applied
|
||||
behaviour taking precedence.</para></warn>
|
||||
behaviour taking precedence.</para></warning>
|
||||
|
||||
<para>
|
||||
Tips for implementing a new behaviour can be found <link
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
|
||||
</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
|
||||
'wipe' like affect by modifying the actors clip region</para>
|
||||
|
||||
|
@ -73,5 +73,9 @@ clutter_behaviour_foo_alpha_notify (ClutterBehaviour *behaviour,
|
|||
</example>
|
||||
|
||||
<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>
|
||||
|
||||
</chapter>
|
||||
|
|
Loading…
Reference in a new issue