2008-01-18 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-actor.h:
	* clutter/clutter-script.h:
	* clutter/clutter-stage.h:
	* clutter/clutter-units.h: Documentation fixes and additions.
This commit is contained in:
Emmanuele Bassi
2008-01-18 11:25:47 +00:00
parent 683cdf4cc1
commit cbddf6aa1a
5 changed files with 110 additions and 20 deletions

View File

@ -57,11 +57,25 @@ G_BEGIN_DECLS
(G_TYPE_INSTANCE_GET_CLASS ((obj), \
CLUTTER_TYPE_STAGE, ClutterStageClass))
/**
* CLUTTER_STAGE_WIDTH:
*
* Macro that evaluates to the current stage width
*
* Since: 0.2
*/
#define CLUTTER_STAGE_WIDTH() \
clutter_actor_get_width (clutter_stage_get_default ())
(clutter_actor_get_width (clutter_stage_get_default ()))
/**
* CLUTTER_STAGE_HEIGHT:
*
* Macro that evaluates to the current stage height
*
* Since: 0.2
*/
#define CLUTTER_STAGE_HEIGHT() \
clutter_actor_get_height (clutter_stage_get_default ())
(clutter_actor_get_height (clutter_stage_get_default ()))
typedef struct _ClutterPerspective ClutterPerspective;
typedef struct _ClutterFog ClutterFog;