mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
6237eb7892
The Group functionality is now provided by ClutterActor. Sadly, we need to keep the ClutterGroup structure definition in the non-deprecated header because ClutterStage inherits from Group - an API wart that was never fixed during the 0.x cycles, and that we'll have to keep around until we can break API.
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
#ifndef __CLUTTER_GROUP_DEPRECATED_H__
|
|
#define __CLUTTER_GROUP_DEPRECATED_H__
|
|
|
|
#include <clutter/clutter-types.h>
|
|
#include <clutter/clutter-group.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
CLUTTER_DEPRECATED_FOR(clutter_actor_new)
|
|
ClutterActor * clutter_group_new (void);
|
|
|
|
CLUTTER_DEPRECATED_FOR(clutter_actor_get_child_at_index)
|
|
ClutterActor * clutter_group_get_nth_child (ClutterGroup *self,
|
|
gint index_);
|
|
|
|
CLUTTER_DEPRECATED_FOR(clutter_actor_get_n_children)
|
|
gint clutter_group_get_n_children (ClutterGroup *self);
|
|
|
|
CLUTTER_DEPRECATED
|
|
void clutter_group_remove_all (ClutterGroup *self);
|
|
|
|
#ifndef CLUTTER_DISABLE_DEPRECATED
|
|
|
|
/* for Mr. Mallum only */
|
|
#define clutter_group_add(group,actor) G_STMT_START { \
|
|
ClutterActor *_actor = (ClutterActor *) (actor); \
|
|
if (CLUTTER_IS_GROUP ((group)) && CLUTTER_IS_ACTOR ((_actor))) \
|
|
{ \
|
|
ClutterContainer *_container = (ClutterContainer *) (group); \
|
|
clutter_container_add_actor (_container, _actor); \
|
|
} } G_STMT_END
|
|
|
|
#endif /* CLUTTER_DISABLE_DEPRECATED */
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_GROUP_DEPRECATED_H__ */
|