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
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2006-12-27 13:19:34 -05:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2009-03-12 12:20:42 -04:00
|
|
|
#include "clutter-deprecated.h"
|
|
|
|
|
2010-05-11 12:09:13 -04:00
|
|
|
#include "clutter-action.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-actor.h"
|
2010-05-14 11:42:50 -04:00
|
|
|
#include "clutter-actor-meta.h"
|
2010-05-19 08:02:43 -04:00
|
|
|
#include "clutter-align-constraint.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#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"
|
2010-02-05 07:32:00 -05:00
|
|
|
#include "clutter-animator.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"
|
2010-05-19 07:25:28 -04:00
|
|
|
#include "clutter-bind-constraint.h"
|
2008-12-08 08:57:10 -05:00
|
|
|
#include "clutter-binding-pool.h"
|
2009-09-11 08:51:23 -04:00
|
|
|
#include "clutter-bin-layout.h"
|
2010-04-08 13:46:54 -04:00
|
|
|
#include "clutter-blur-effect.h"
|
2009-09-01 12:42:50 -04:00
|
|
|
#include "clutter-box.h"
|
2009-10-13 07:14:05 -04:00
|
|
|
#include "clutter-box-layout.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"
|
2010-05-24 05:41:19 -04:00
|
|
|
#include "clutter-click-action.h"
|
2009-01-26 05:32:53 -05:00
|
|
|
#include "clutter-clone.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-color.h"
|
2010-04-13 19:40:24 -04:00
|
|
|
#include "clutter-colorize-effect.h"
|
2010-05-14 07:13:49 -04:00
|
|
|
#include "clutter-constraint.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-container.h"
|
2010-04-09 11:14:21 -04:00
|
|
|
#include "clutter-desaturate-effect.h"
|
2009-11-20 10:35:40 -05:00
|
|
|
#include "clutter-device-manager.h"
|
2010-05-12 07:00:33 -04:00
|
|
|
#include "clutter-drag-action.h"
|
2010-04-08 05:55:15 -04:00
|
|
|
#include "clutter-effect.h"
|
2007-06-14 11:29:52 -04:00
|
|
|
#include "clutter-event.h"
|
|
|
|
#include "clutter-feature.h"
|
2009-09-02 07:37:16 -04:00
|
|
|
#include "clutter-fixed-layout.h"
|
2009-09-18 12:28:02 -04:00
|
|
|
#include "clutter-flow-layout.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"
|
2009-11-23 11:07:16 -05:00
|
|
|
#include "clutter-input-device.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"
|
2009-09-01 11:34:28 -04:00
|
|
|
#include "clutter-layout-manager.h"
|
2009-09-15 12:37:11 -04:00
|
|
|
#include "clutter-layout-meta.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"
|
2010-05-17 06:39:27 -04:00
|
|
|
#include "clutter-offscreen-effect.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"
|
2010-04-13 11:40:31 -04:00
|
|
|
#include "clutter-shader-effect.h"
|
2008-11-18 10:35:20 -05:00
|
|
|
#include "clutter-shader-types.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#include "clutter-stage.h"
|
|
|
|
#include "clutter-stage-manager.h"
|
2009-08-13 07:34:07 -04:00
|
|
|
#include "clutter-stage-window.h"
|
2010-05-11 10:04:34 -04:00
|
|
|
#include "clutter-state.h"
|
2008-12-11 06:11:11 -05:00
|
|
|
#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__ */
|