Back to Seed Clases

Clutter


Classes

Interfaces

Structs

Unions

Enums

Class Clutter.Action

Import line: Clutter = imports.gi.Clutter;
GIR File: Clutter-1.0.gir
C documentation: ClutterAction
Class : Action
Extends: Clutter.ActorMeta
The ClutterAction structure contains only
private data and should be accessed using the provided API
Properties
Properties Defined By
Methods / Constructors
Method / Constructor Defined By
Events
None
Used by These Methods / Signals / Properties
Class / Namespace Method / Signal / Properties
Clutter.Actor
Property
actions : Clutter.Action
Adds a ClutterAction to the actor
Clutter.Actor
Method
add_action (Action action) : none
Adds action to the list of actions applied to self
A ClutterAction can only belong to one actor at a time
The ClutterActor will hold a reference on action until either
clutter_actor_remove_action() or clutter_actor_clear_actions()
is called
Clutter.Actor
Method
add_action_with_name (String name, Action action) : none
A convenience function for setting the name of a ClutterAction
while adding it to the list of actions applied to self
This function is the logical equivalent of:
|[
clutter_actor_meta_set_name (CLUTTER_ACTOR_META (action), name);
clutter_actor_add_action (self, action);
]|
Clutter.Actor
Method
get_action (String name) : Clutter.Action
Retrieves the ClutterAction with the given name in the list
of actions applied to self
name, or NULL.
Clutter.Actor
Method
remove_action (Action action) : none
Removes action from the list of actions applied to self
The reference held by self on the ClutterAction will be released
Documentation generated by Introspection Doc Generator Loosely Based on JsDoc Toolkit on Sat Apr 16 2011 17:09:25 GMT+0800 (HKT)