GObject.Object
GObject.InitiallyUnowned
Clutter.ActorMeta
Clutter.Action
Import line: | Clutter = imports.gi.Clutter; |
GIR File: | Clutter-1.0.gir |
C documentation: | ClutterAction |
Class : | Action |
Extends: | Clutter.ActorMeta |
Properties | Defined By | |
---|---|---|
actor : Clutter.Actor
read only
The ClutterActor attached to the ClutterActorMeta instance
The ClutterActor attached to the ClutterActorMeta instance
|
Clutter.ActorMeta | |
enabled : gboolean
Whether or not the ClutterActorMeta is enabled
Whether or not the ClutterActorMeta is enabled
|
Clutter.ActorMeta | |
g_type_instance : GObject.TypeInstance
|
GObject.InitiallyUnowned | |
name : String
The unique name to access the ClutterActorMeta
The unique name to access the ClutterActorMeta
|
Clutter.ActorMeta | |
parent_instance : Clutter.ActorMeta
read only
|
Clutter.Action | |
priv : Clutter.ActorMetaPrivate
read only
|
Clutter.ActorMeta | |
qdata : GLib.Data
read only
|
GObject.InitiallyUnowned | |
ref_count : guint32
read only
|
GObject.InitiallyUnowned |
Method / Constructor | Defined By | |
---|---|---|
new Clutter.Action
(Object properties)
Create a new Clutter.Action
Create a new Clutter.Action
|
||
get_actor
()
:
Clutter.Actor
Retrieves a pointer to the ClutterActor that owns meta
Retrieves a pointer to the ClutterActor that owns meta
|
Clutter.ActorMeta | |
get_enabled
()
:
gboolean
Retrieves whether meta is enabled
Retrieves whether meta is enabled
|
Clutter.ActorMeta | |
get_name
()
:
String
Retrieves the name set using clutter_actor_meta_set_name()
instance, or NULL if none was set.
Retrieves the name set using clutter_actor_meta_set_name()
instance, or NULL if none was set. The returned string is owned by the ClutterActorMeta instance and it should not be modified or freed
|
Clutter.ActorMeta | |
set_enabled
(gboolean is_enabled)
:
none
Sets whether meta should be enabled or not
Sets whether meta should be enabled or not
|
Clutter.ActorMeta | |
set_name
(String name)
:
none
Sets the name of meta
The name can be used to identify the ClutterActorMeta instance
Sets the name of meta
The name can be used to identify the ClutterActorMeta instance
|
Clutter.ActorMeta |
None |
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 |
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 |