2006-12-27 13:19:34 -05:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 OpenedHand
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2008-10-30 13:04:34 -04:00
|
|
|
#ifndef __CLUTTER_H__
|
|
|
|
#define __CLUTTER_H__
|
|
|
|
|
|
|
|
#define __CLUTTER_H_INSIDE__
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-actor.h"
|
|
|
|
#include "clutter-alpha.h"
|
2009-01-08 07:56:46 -05:00
|
|
|
#include "clutter-animatable.h"
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
#include "clutter-animation.h"
|
2007-07-04 05:34:24 -04:00
|
|
|
#include "clutter-backend.h"
|
2007-07-25 06:36:19 -04:00
|
|
|
#include "clutter-behaviour-depth.h"
|
2007-04-30 04:39:20 -04:00
|
|
|
#include "clutter-behaviour-ellipse.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-behaviour.h"
|
2006-11-15 18:37:53 -05:00
|
|
|
#include "clutter-behaviour-opacity.h"
|
|
|
|
#include "clutter-behaviour-path.h"
|
2007-04-16 06:25:30 -04:00
|
|
|
#include "clutter-behaviour-rotate.h"
|
2006-11-15 18:37:53 -05:00
|
|
|
#include "clutter-behaviour-scale.h"
|
2008-12-08 08:57:10 -05:00
|
|
|
#include "clutter-binding-pool.h"
|
2008-12-11 10:24:07 -05:00
|
|
|
#include "clutter-cairo-texture.h"
|
2008-07-14 09:46:31 -04:00
|
|
|
#include "clutter-child-meta.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-clone-texture.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-color.h"
|
|
|
|
#include "clutter-container.h"
|
2007-11-13 09:06:19 -05:00
|
|
|
#include "clutter-deprecated.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-event.h"
|
|
|
|
#include "clutter-feature.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-frame-source.h"
|
2006-05-29 04:59:36 -04:00
|
|
|
#include "clutter-group.h"
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
#include "clutter-interval.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-keysyms.h"
|
2008-01-09 09:40:31 -05:00
|
|
|
#include "clutter-list-model.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-main.h"
|
2006-09-01 13:26:47 -04:00
|
|
|
#include "clutter-media.h"
|
2007-11-15 05:02:25 -05:00
|
|
|
#include "clutter-model.h"
|
2008-12-05 08:13:37 -05:00
|
|
|
#include "clutter-path.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-rectangle.h"
|
2007-09-27 17:38:38 -04:00
|
|
|
#include "clutter-score.h"
|
2007-10-25 10:34:54 -04:00
|
|
|
#include "clutter-scriptable.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-script.h"
|
2008-11-18 10:35:20 -05:00
|
|
|
#include "clutter-shader.h"
|
|
|
|
#include "clutter-shader-types.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-stage.h"
|
|
|
|
#include "clutter-stage-manager.h"
|
|
|
|
#include "clutter-texture.h"
|
2008-12-11 06:12:48 -05:00
|
|
|
#include "clutter-text.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-timeline.h"
|
|
|
|
#include "clutter-timeout-pool.h"
|
2007-07-26 09:13:23 -04:00
|
|
|
#include "clutter-types.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-units.h"
|
|
|
|
#include "clutter-util.h"
|
2006-11-20 07:02:24 -05:00
|
|
|
#include "clutter-version.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
#include "clutter-enum-types.h"
|
|
|
|
|
2008-10-30 13:04:34 -04:00
|
|
|
#undef __CLUTTER_H_INSIDE__
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_H__ */
|