Back to Seed Clases

Clutter


Classes

Interfaces

Structs

Unions

Enums

Class Clutter.Effect

Import line: Clutter = imports.gi.Clutter;
GIR File: Clutter-1.0.gir
C documentation: ClutterEffect
Class : Effect
Subclasses: Clutter.BlurEffect, Clutter.ColorizeEffect, Clutter.DeformEffect, Clutter.DesaturateEffect, Clutter.OffscreenEffect
Extends: Clutter.ActorMeta
The ClutterEffect 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
effect : Clutter.Effect
Adds ClutterEffect to the list of effects be applied on a ClutterActor
Clutter.Actor
Method
add_effect (Effect effect) : none
Adds effect to the list of ClutterEffects applied to self
The ClutterActor will hold a reference on the effect until either
clutter_actor_remove_effect() or clutter_actor_clear_effects() is
called.
Clutter.Actor
Method
add_effect_with_name (String name, Effect effect) : none
A convenience function for setting the name of a ClutterEffect
while adding it to the list of effectss applied to self
This function is the logical equivalent of:
|[
clutter_actor_meta_set_name (CLUTTER_ACTOR_META (effect), name);
clutter_actor_add_effect (self, effect);
]|
Clutter.Actor
Method
get_effect (String name) : Clutter.Effect
Retrieves the ClutterEffect with the given name in the list
of effects applied to self
name, or NULL.
Clutter.Actor
Method
remove_effect (Effect effect) : none
Removes effect from the list of effects applied to self
The reference held by self on the ClutterEffect will be released
Documentation generated by Introspection Doc Generator Loosely Based on JsDoc Toolkit on Sat Apr 16 2011 17:09:32 GMT+0800 (HKT)