Base class of actor modifiers
<clutter-actor-meta>
is an abstract class providing a common API
for modifiers of <clutter-actor>
behaviour, appearance or layout.
A <clutter-actor-meta>
can only be owned by a single
<clutter-actor>
at any time.
Every sub-class of <clutter-actor-meta>
should check if the
<"enabled">
property is set to ‘#t
’ before applying
any kind of modification.
<clutter-actor-meta>
is available since Clutter 1.4
<clutter-actor-meta>
) (name mchars
)Sets the name of meta
The name can be used to identify the
<clutter-actor-meta>
instance
- meta
- a
<clutter-actor-meta>
- name
- the name of meta
Since 1.4
<clutter-actor-meta>
) ⇒ (ret mchars
)Retrieves the name set using
clutter-actor-meta-set-name
- meta
- a
<clutter-actor-meta>
- ret
- the name of the
<clutter-actor-meta>
instance, or ‘#f
’ if none was set. The returned string is owned by the<clutter-actor-meta>
instance and it should not be modified or freed.Since 1.4
<clutter-actor-meta>
) (is_enabled bool
)Sets whether meta should be enabled or not
- meta
- a
<clutter-actor-meta>
- is-enabled
- whether meta is enabled
Since 1.4