2011-11-02 08:47:46 -04:00
|
|
|
#ifndef __CLUTTER_ACTOR_DEPRECATED_H__
|
|
|
|
#define __CLUTTER_ACTOR_DEPRECATED_H__
|
|
|
|
|
|
|
|
#include <clutter/clutter-types.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
CLUTTER_DEPRECATED
|
2011-11-08 09:46:55 -05:00
|
|
|
void clutter_actor_set_geometry (ClutterActor *self,
|
|
|
|
const ClutterGeometry *geometry);
|
2011-11-02 08:47:46 -04:00
|
|
|
|
2011-11-08 09:46:55 -05:00
|
|
|
CLUTTER_DEPRECATED_FOR(clutter_actor_get_allocation_geometry)
|
|
|
|
void clutter_actor_get_geometry (ClutterActor *self,
|
|
|
|
ClutterGeometry *geometry);
|
2011-11-02 08:47:46 -04:00
|
|
|
CLUTTER_DEPRECATED
|
2011-11-08 09:46:55 -05:00
|
|
|
guint32 clutter_actor_get_gid (ClutterActor *self);
|
|
|
|
|
|
|
|
CLUTTER_DEPRECATED
|
|
|
|
ClutterActor * clutter_get_actor_by_gid (guint32 id_);
|
2011-11-02 08:47:46 -04:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_ACTOR_DEPRECATED_H__ */
|