ddab271272
* clutter/clutter-alpha.h: * clutter/clutter-behaviour.c: * clutter/clutter-behaviour.h: * clutter/clutter-behaviours.c: * clutter/clutter-behaviours.h: * examples/behave.c: Behaviours now only 'driven' by ClutterAlpha, not any object/prop. Add simple Clutter path behaviour.
78 lines
1.8 KiB
C
78 lines
1.8 KiB
C
#ifndef _HAVE_CLUTTER_BEHAVIOUR_H
|
|
#define _HAVE_CLUTTER_BEHAVIOUR_H
|
|
|
|
#include <glib-object.h>
|
|
#include "clutter-alpha.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define CLUTTER_TYPE_BEHAVIOUR clutter_behaviour_get_type()
|
|
|
|
#define CLUTTER_BEHAVIOUR(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST ((obj), \
|
|
CLUTTER_TYPE_BEHAVIOUR, ClutterBehaviour))
|
|
|
|
#define CLUTTER_BEHAVIOUR_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_CAST ((klass), \
|
|
CLUTTER_TYPE_BEHAVIOUR, ClutterBehaviourClass))
|
|
|
|
#define CLUTTER_IS_BEHAVIOUR(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
|
|
CLUTTER_TYPE_BEHAVIOUR))
|
|
|
|
#define CLUTTER_IS_BEHAVIOUR_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_TYPE ((klass), \
|
|
CLUTTER_TYPE_BEHAVIOUR))
|
|
|
|
#define CLUTTER_BEHAVIOUR_GET_CLASS(obj) \
|
|
(G_TYPE_INSTANCE_GET_CLASS ((obj), \
|
|
CLUTTER_TYPE_BEHAVIOUR, ClutterBehaviourClass))
|
|
|
|
typedef struct _ClutterBehaviour ClutterBehaviour;
|
|
typedef struct ClutterBehaviourPrivate ClutterBehaviourPrivate;
|
|
typedef struct _ClutterBehaviourClass ClutterBehaviourClass;
|
|
|
|
struct _ClutterBehaviour
|
|
{
|
|
GObject parent;
|
|
ClutterBehaviourPrivate *priv;
|
|
};
|
|
|
|
struct _ClutterBehaviourClass
|
|
{
|
|
GObjectClass parent_class;
|
|
|
|
void (*alpha_notify) (ClutterBehaviour *behave);
|
|
};
|
|
|
|
GType clutter_behaviour_get_type (void);
|
|
|
|
ClutterBehaviour*
|
|
clutter_behaviour_new (GObject *object,
|
|
const char *property);
|
|
|
|
void
|
|
clutter_behaviour_apply (ClutterBehaviour *behave, ClutterActor *actor);
|
|
|
|
void
|
|
clutter_behaviour_remove (ClutterBehaviour *behave, ClutterActor *actor);
|
|
|
|
void
|
|
clutter_behaviour_remove_all (ClutterBehaviour *behave);
|
|
|
|
void
|
|
clutter_behaviour_actors_foreach (ClutterBehaviour *behave,
|
|
GFunc func,
|
|
gpointer userdata);
|
|
|
|
ClutterAlpha*
|
|
clutter_behaviour_get_alpha (ClutterBehaviour *behave);
|
|
|
|
void
|
|
clutter_behaviour_set_alpha (ClutterBehaviour *behave,
|
|
ClutterAlpha *alpha);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif
|