98b467f9b8
The clutter-stage.h header still has a bunch of macros that have, for reasons unknown[*], survived the 1.0 API cut and have long since been deprecated. Let's hide them under the deprecated/ carpet and let us never speak of them ever again. [*] pretty sure alcohol or other psychotropic substances were involved but I take the 5th on that.
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
#ifndef __CLUTTER_STAGE_DEPRECATED_H__
|
|
#define __CLUTTER_STAGE_DEPRECATED_H__
|
|
|
|
#include <clutter/clutter-types.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#ifndef CLUTTER_DISABLE_DEPRECATED
|
|
|
|
/**
|
|
* CLUTTER_STAGE_WIDTH:
|
|
*
|
|
* Macro that evaluates to the width of the default stage
|
|
*
|
|
* Since: 0.2
|
|
*
|
|
* Deprecated: 1.2: Use clutter_actor_get_width() instead
|
|
*/
|
|
#define CLUTTER_STAGE_WIDTH() (clutter_actor_get_width (clutter_stage_get_default ()))
|
|
|
|
/**
|
|
* CLUTTER_STAGE_HEIGHT:
|
|
*
|
|
* Macro that evaluates to the height of the default stage
|
|
*
|
|
* Since: 0.2
|
|
*
|
|
* Deprecated: 1.2: use clutter_actor_get_height() instead
|
|
*/
|
|
#define CLUTTER_STAGE_HEIGHT() (clutter_actor_get_height (clutter_stage_get_default ()))
|
|
|
|
/* Commodity macro, for mallum only */
|
|
#define clutter_stage_add(stage,actor) G_STMT_START { \
|
|
if (CLUTTER_IS_STAGE ((stage)) && CLUTTER_IS_ACTOR ((actor))) \
|
|
{ \
|
|
ClutterContainer *_container = (ClutterContainer *) (stage); \
|
|
ClutterActor *_actor = (ClutterActor *) (actor); \
|
|
clutter_container_add_actor (_container, _actor); \
|
|
} } G_STMT_END
|
|
|
|
#endif /* CLUTTER_DISABLE_DEPRECATED */
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_STAGE_DEPRECATED_H__ */
|