Clutter.ActorMeta¶
- Subclasses:
Methods¶
- Inherited:
- Structs:
|
|
|
|
|
|
|
|
|
Virtual Methods¶
- Inherited:
|
Properties¶
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r |
The actor attached to the meta |
||
r/w |
Whether the meta is enabled |
||
r/w |
The name of the meta |
Signals¶
- Inherited:
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
---|---|---|---|
parent_instance |
r |
Class Details¶
- class Clutter.ActorMeta(**kwargs)¶
- Bases:
- Abstract:
Yes
- Structure:
The
Clutter.ActorMeta
structure contains only private data and should be accessed using the provided APINew in version 1.4.
- get_actor()¶
- Returns:
a pointer to a
Clutter.Actor
orNone
- Return type:
Retrieves a pointer to the
Clutter.Actor
that owns selfNew in version 1.4.
- get_enabled()¶
- Returns:
True
if theClutter.ActorMeta
instance is enabled- Return type:
Retrieves whether self is enabled
New in version 1.4.
- get_name()¶
- Returns:
the name of the
Clutter.ActorMeta
instance, orNone
if none was set. The returned string is owned by theClutter.ActorMeta
instance and it should not be modified or freed- Return type:
Retrieves the name set using
Clutter.ActorMeta.set_name
()New in version 1.4.
- set_enabled(is_enabled)¶
- Parameters:
is_enabled (
bool
) – whether self is enabled
Sets whether self should be enabled or not
New in version 1.4.
- set_name(name)¶
- Parameters:
name (
str
) – the name of self
Sets the name of self
The name can be used to identify the
Clutter.ActorMeta
instanceNew in version 1.4.
- do_set_actor(actor) virtual¶
- Parameters:
actor (
Clutter.Actor
orNone
) – the actor attached to meta, orNone
Virtual function, called when meta is attached or detached from a
Clutter.Actor
.
Property Details¶
- Clutter.ActorMeta.props.actor¶
- Name:
actor
- Type:
- Default Value:
- Flags:
The
Clutter.Actor
attached to theClutter.ActorMeta
instanceNew in version 1.4.
- Clutter.ActorMeta.props.enabled¶
-
Whether or not the
Clutter.ActorMeta
is enabledNew in version 1.4.