constraint: Add ClutterConstraint base class

The Constraint base, abstract class should be used to implement Actor
modifiers that affect the way an actor is sized or positioned inside a
fixed layout manager.
This commit is contained in:
Emmanuele Bassi
2010-05-14 12:13:49 +01:00
parent c007b7489b
commit b842f0ad8e
6 changed files with 264 additions and 3 deletions

View File

@ -45,11 +45,12 @@ typedef struct _ClutterStage ClutterStage;
typedef struct _ClutterContainer ClutterContainer; /* dummy */
typedef struct _ClutterChildMeta ClutterChildMeta;
typedef struct _ClutterLayoutMeta ClutterLayoutMeta;
typedef struct _ClutterActorMeta ClutterActorMeta;
typedef struct _ClutterAnimator ClutterAnimator;
typedef struct _ClutterAction ClutterAction;
typedef struct _ClutterActorMeta ClutterActorMeta;
typedef struct _ClutterAction ClutterAction;
typedef struct _ClutterConstraint ClutterConstraint;
typedef union _ClutterEvent ClutterEvent;