Class

ClutterStageManager

since: 1.0

Description [src]

final class Clutter.StageManager : GObject.Object {
  /* No available fields */
}

The ClutterStageManager structure is private.

Available since: 1.0

Hierarchy

hierarchy this ClutterStageManager ancestor_0 GObject ancestor_0--this

Ancestors

Functions

clutter_stage_manager_get_default

Returns the default ClutterStageManager.

since: 0.8

Instance methods

clutter_stage_manager_get_default_stage

Returns the default ClutterStage.

since: 0.8

clutter_stage_manager_list_stages

Lists all currently used stages.

since: 0.8

clutter_stage_manager_peek_stages

Lists all currently used stages.

since: 1.0

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Properties

Clutter.StageManager:default-stage

The default stage used by Clutter.

since: 0.8

Signals

Clutter.StageManager::stage-added

The ::stage-added signal is emitted each time a new ClutterStage has been added to the stage manager.

since: 0.8

Clutter.StageManager::stage-removed

The ::stage-removed signal is emitted each time a ClutterStage has been removed from the stage manager.

since: 0.8

Signals inherited from GObject (1)
GObject::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct ClutterStageManagerClass {
  void (* stage_added) (
    ClutterStageManager* stage_manager,
    ClutterStage* stage
  );
  void (* stage_removed) (
    ClutterStageManager* stage_manager,
    ClutterStage* stage
  );
  
}

The ClutterStageManagerClass structure contains only private data and should be accessed using the provided API.

Class members
stage_added: void (* stage_added) ( ClutterStageManager* stage_manager, ClutterStage* stage )
No description available.
stage_removed: void (* stage_removed) ( ClutterStageManager* stage_manager, ClutterStage* stage )
No description available.

Virtual methods

Clutter.StageManagerClass.stage_added
No description available.

Clutter.StageManagerClass.stage_removed
No description available.