2006-05-29 04:59:36 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 OpenedHand
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2006-05-29 04:59:36 -04:00
|
|
|
*/
|
|
|
|
|
2006-06-21 18:34:25 -04:00
|
|
|
/**
|
|
|
|
* SECTION:clutter-group
|
2010-02-02 09:50:03 -05:00
|
|
|
* @short_description: A fixed layout container
|
2006-06-21 18:34:25 -04:00
|
|
|
*
|
2007-05-14 05:11:23 -04:00
|
|
|
* A #ClutterGroup is an Actor which contains multiple child actors positioned
|
2007-10-12 04:17:00 -04:00
|
|
|
* relative to the #ClutterGroup position. Other operations such as scaling,
|
2008-02-15 12:11:50 -05:00
|
|
|
* rotating and clipping of the group will apply to the child actors.
|
2007-05-14 05:11:23 -04:00
|
|
|
*
|
2010-02-02 09:50:03 -05:00
|
|
|
* A #ClutterGroup's size is defined by the size and position of its children;
|
|
|
|
* it will be the smallest non-negative size that covers the right and bottom
|
|
|
|
* edges of all of its children.
|
|
|
|
*
|
|
|
|
* Setting the size on a Group using #ClutterActor methods like
|
|
|
|
* clutter_actor_set_size() will override the natural size of the Group,
|
|
|
|
* however this will not affect the size of the children and they may still
|
|
|
|
* be painted outside of the allocation of the group. One way to constrain
|
|
|
|
* the visible area of a #ClutterGroup to a specified allocation is to
|
|
|
|
* explicitly set the size of the #ClutterGroup and then use the
|
|
|
|
* #ClutterActor:clip-to-allocation property.
|
2006-06-21 18:34:25 -04:00
|
|
|
*/
|
|
|
|
|
2007-10-12 04:17:00 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2006-05-29 04:59:36 -04:00
|
|
|
#include "config.h"
|
2007-10-12 04:17:00 -04:00
|
|
|
#endif
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "clutter-group.h"
|
2007-06-07 10:41:35 -04:00
|
|
|
|
|
|
|
#include "clutter-container.h"
|
2009-10-05 12:21:41 -04:00
|
|
|
#include "clutter-fixed-layout.h"
|
2006-05-29 04:59:36 -04:00
|
|
|
#include "clutter-main.h"
|
2007-03-23 12:37:56 -04:00
|
|
|
#include "clutter-debug.h"
|
2006-06-05 Emmanuele Bassi <ebassi@openedhand.com>
* clutter-color.h:
* clutter-color.c: Reimplement ClutterColor as a boxed type;
add convenience API for color handling, like: add, subtract,
shade, HSL color-space conversion, packing and unpacking.
* clutter-private.h: Update ClutterMainContext, and export the
main context pointer here.
* clutter-rectangle.h:
* clutter-rectangle.c: Update the color-related code; make
clutter_rectangle_new() and empty constructor and provide
clutter_rectangle_new_with_color(); provide color setter
and getter API.
* clutter-label.h:
* clutter-label.c: Rename the "font" property to "font-name";
update the color-related code to the new ClutterColor object;
rename clutter_label_new() to clutter_label_new_with_text(),
and add setters and getters for the properties.
* clutter-marshal.list: Add VOID:OBJECT and VOID:BOXED marshallers
generators.
* clutter-stage.h:
* clutter-stage.c: Rework the API: provide a default constructor
for a singleton object, named clutter_stage_get_default(), which
supercedes the clutter_stage() function in clutter-main; provide
new events: button-press-event, button-release-event,
key-press-event and key-release-event; update the color-related
code;
(clutter_stage_snapshot): Allow negative width and height when
taking a snapshot (meaning: use full width/height).
(clutter_stage_get_element_at_pos): Rename clutter_stage_pick().
* clutter-element.c (clutter_element_paint): Clean up the
stage and color related code.
* clutter-event.h:
* clutter-event.c: Add generic ClutterAnyEvent type; add
clutter_event_new(), clutter_event_copy() and clutter_event_free();
make ClutterEvent a boxed type.
* clutter-main.h:
* clutter-main.c: Remove clutter_stage(); add clutter_main_quit(),
for cleanly quitting from clutter_main(); add multiple mainloops
support; allocate the ClutterCntx instead of adding it to the
stack; re-work the ClutterEvent dispatching.
* clutter-group.c (clutter_group_add), (clutter_group_remove): Keep
a reference on the element when added to a ClutterGroup.
* examples/rects.py
* examples/test.c:
* examples/test-text.c:
* examples/video-cube.c:
* examples/super-oh.c:
* examples/test-video.c: Update.
2006-06-05 09:38:31 -04:00
|
|
|
#include "clutter-enum-types.h"
|
2010-02-09 13:54:28 -05:00
|
|
|
#include "clutter-marshal.h"
|
|
|
|
#include "clutter-private.h"
|
2006-06-05 Emmanuele Bassi <ebassi@openedhand.com>
* clutter-color.h:
* clutter-color.c: Reimplement ClutterColor as a boxed type;
add convenience API for color handling, like: add, subtract,
shade, HSL color-space conversion, packing and unpacking.
* clutter-private.h: Update ClutterMainContext, and export the
main context pointer here.
* clutter-rectangle.h:
* clutter-rectangle.c: Update the color-related code; make
clutter_rectangle_new() and empty constructor and provide
clutter_rectangle_new_with_color(); provide color setter
and getter API.
* clutter-label.h:
* clutter-label.c: Rename the "font" property to "font-name";
update the color-related code to the new ClutterColor object;
rename clutter_label_new() to clutter_label_new_with_text(),
and add setters and getters for the properties.
* clutter-marshal.list: Add VOID:OBJECT and VOID:BOXED marshallers
generators.
* clutter-stage.h:
* clutter-stage.c: Rework the API: provide a default constructor
for a singleton object, named clutter_stage_get_default(), which
supercedes the clutter_stage() function in clutter-main; provide
new events: button-press-event, button-release-event,
key-press-event and key-release-event; update the color-related
code;
(clutter_stage_snapshot): Allow negative width and height when
taking a snapshot (meaning: use full width/height).
(clutter_stage_get_element_at_pos): Rename clutter_stage_pick().
* clutter-element.c (clutter_element_paint): Clean up the
stage and color related code.
* clutter-event.h:
* clutter-event.c: Add generic ClutterAnyEvent type; add
clutter_event_new(), clutter_event_copy() and clutter_event_free();
make ClutterEvent a boxed type.
* clutter-main.h:
* clutter-main.c: Remove clutter_stage(); add clutter_main_quit(),
for cleanly quitting from clutter_main(); add multiple mainloops
support; allocate the ClutterCntx instead of adding it to the
stack; re-work the ClutterEvent dispatching.
* clutter-group.c (clutter_group_add), (clutter_group_remove): Keep
a reference on the element when added to a ClutterGroup.
* examples/rects.py
* examples/test.c:
* examples/test-text.c:
* examples/video-cube.c:
* examples/super-oh.c:
* examples/test-video.c: Update.
2006-06-05 09:38:31 -04:00
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
#include "cogl/cogl.h"
|
2007-05-28 14:49:34 -04:00
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
#define CLUTTER_GROUP_GET_PRIVATE(obj) \
|
2010-02-09 13:54:28 -05:00
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), CLUTTER_TYPE_GROUP, ClutterGroupPrivate))
|
2006-05-29 04:59:36 -04:00
|
|
|
|
|
|
|
struct _ClutterGroupPrivate
|
|
|
|
{
|
|
|
|
GList *children;
|
2009-10-05 12:21:41 -04:00
|
|
|
|
|
|
|
ClutterLayoutManager *layout;
|
2006-05-29 04:59:36 -04:00
|
|
|
};
|
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
enum
|
2008-06-10 Emmanuele Bassi <ebassi@openedhand.com>
Bug #815 - Split up request, allocation, and paint box
* clutter/clutter-actor.[ch]: Rework the size allocation,
request and paint area. Now ::request_coords() is called
::allocate(), and ::query_coords() has been split into
::get_preferred_width() and ::get_preferred_height(). See
the documentation and the layout test on how to implement
a container and layout manager with the new API. (#915,
based on a patch by Havoc Pennington, Lucas Rocha and Johan
Bilien)
* clutter/clutter-clone-texture.c: Port CloneTexture to
the new size negotiation API; it just means forwarding
the requests to the parent texture.
* clutter/clutter-deprecated.h: Add deprecated and replaced
API.
* clutter/clutter-entry.c: Port Entry to the new size
negotiation API.
* clutter/clutter-group.c: Port Group to the new size
negotiation API; the semantics of the Group actor do not
change.
* clutter/clutter-label.c: Port Label to the new size
negotiation API, and vastly simplify the code.
* clutter/clutter-main.[ch]: Add API for executing a
relayout when needed.
* clutter/clutter-private.h: Add new Stage private API.
* clutter/clutter-rectangle.c: Update the get_abs_opacity()
call to get_paint_opacity().
* clutter/clutter-stage.c:
(clutter_stage_get_preferred_width),
(clutter_stage_get_preferred_height),
(clutter_stage_allocate),
(clutter_stage_class_init): Port Stage to the new size
negotiation API.
* clutter/clutter-texture.c: Port Texture to the new size
negotiation API.
* clutter/clutter-types.h: Add ClutterRequestMode enumeration.
* clutter/x11/clutter-stage-x11.c: Port the X11 stage
implementation to the new size negotiation API.
* tests/Makefile.am: Add the layout manager test case.
* tests/test-opacity.c: Update.
* tests/test-project.c: Update.
* tests/test-layout.c: Test case for a layout manager implemented
using the new size negotiation API; the layout manager handles
both transformed and untransformed children.
2008-06-10 13:07:52 -04:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
ADD,
|
|
|
|
REMOVE,
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
static void clutter_container_iface_init (ClutterContainerIface *iface);
|
2009-10-05 12:21:41 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (ClutterGroup, clutter_group, CLUTTER_TYPE_ACTOR,
|
|
|
|
G_IMPLEMENT_INTERFACE (CLUTTER_TYPE_CONTAINER,
|
|
|
|
clutter_container_iface_init));
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
static gint
|
|
|
|
sort_by_depth (gconstpointer a,
|
|
|
|
gconstpointer b)
|
2006-05-29 04:59:36 -04:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
gfloat depth_a = clutter_actor_get_depth (CLUTTER_ACTOR(a));
|
|
|
|
gfloat depth_b = clutter_actor_get_depth (CLUTTER_ACTOR(b));
|
2009-10-05 12:21:41 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
if (depth_a < depth_b)
|
|
|
|
return -1;
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
if (depth_a > depth_b)
|
|
|
|
return 1;
|
2006-12-12 15:20:04 -05:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
return 0;
|
2006-12-12 15:20:04 -05:00
|
|
|
}
|
|
|
|
|
2007-01-19 12:56:35 -05:00
|
|
|
static void
|
2007-06-07 10:41:35 -04:00
|
|
|
clutter_group_real_add (ClutterContainer *container,
|
|
|
|
ClutterActor *actor)
|
2007-01-19 12:56:35 -05:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (container)->priv;
|
2007-06-07 10:41:35 -04:00
|
|
|
|
2007-01-19 12:56:35 -05:00
|
|
|
g_object_ref (actor);
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2007-06-07 10:41:35 -04:00
|
|
|
priv->children = g_list_append (priv->children, actor);
|
2010-02-09 13:54:28 -05:00
|
|
|
clutter_actor_set_parent (actor, CLUTTER_ACTOR (container));
|
2007-06-07 10:41:35 -04:00
|
|
|
|
2008-06-10 Emmanuele Bassi <ebassi@openedhand.com>
Bug #815 - Split up request, allocation, and paint box
* clutter/clutter-actor.[ch]: Rework the size allocation,
request and paint area. Now ::request_coords() is called
::allocate(), and ::query_coords() has been split into
::get_preferred_width() and ::get_preferred_height(). See
the documentation and the layout test on how to implement
a container and layout manager with the new API. (#915,
based on a patch by Havoc Pennington, Lucas Rocha and Johan
Bilien)
* clutter/clutter-clone-texture.c: Port CloneTexture to
the new size negotiation API; it just means forwarding
the requests to the parent texture.
* clutter/clutter-deprecated.h: Add deprecated and replaced
API.
* clutter/clutter-entry.c: Port Entry to the new size
negotiation API.
* clutter/clutter-group.c: Port Group to the new size
negotiation API; the semantics of the Group actor do not
change.
* clutter/clutter-label.c: Port Label to the new size
negotiation API, and vastly simplify the code.
* clutter/clutter-main.[ch]: Add API for executing a
relayout when needed.
* clutter/clutter-private.h: Add new Stage private API.
* clutter/clutter-rectangle.c: Update the get_abs_opacity()
call to get_paint_opacity().
* clutter/clutter-stage.c:
(clutter_stage_get_preferred_width),
(clutter_stage_get_preferred_height),
(clutter_stage_allocate),
(clutter_stage_class_init): Port Stage to the new size
negotiation API.
* clutter/clutter-texture.c: Port Texture to the new size
negotiation API.
* clutter/clutter-types.h: Add ClutterRequestMode enumeration.
* clutter/x11/clutter-stage-x11.c: Port the X11 stage
implementation to the new size negotiation API.
* tests/Makefile.am: Add the layout manager test case.
* tests/test-opacity.c: Update.
* tests/test-project.c: Update.
* tests/test-layout.c: Test case for a layout manager implemented
using the new size negotiation API; the layout manager handles
both transformed and untransformed children.
2008-06-10 13:07:52 -04:00
|
|
|
/* queue a relayout, to get the correct positioning inside
|
|
|
|
* the ::actor-added signal handlers
|
|
|
|
*/
|
2010-02-09 13:54:28 -05:00
|
|
|
clutter_actor_queue_relayout (CLUTTER_ACTOR (container));
|
2008-06-10 Emmanuele Bassi <ebassi@openedhand.com>
Bug #815 - Split up request, allocation, and paint box
* clutter/clutter-actor.[ch]: Rework the size allocation,
request and paint area. Now ::request_coords() is called
::allocate(), and ::query_coords() has been split into
::get_preferred_width() and ::get_preferred_height(). See
the documentation and the layout test on how to implement
a container and layout manager with the new API. (#915,
based on a patch by Havoc Pennington, Lucas Rocha and Johan
Bilien)
* clutter/clutter-clone-texture.c: Port CloneTexture to
the new size negotiation API; it just means forwarding
the requests to the parent texture.
* clutter/clutter-deprecated.h: Add deprecated and replaced
API.
* clutter/clutter-entry.c: Port Entry to the new size
negotiation API.
* clutter/clutter-group.c: Port Group to the new size
negotiation API; the semantics of the Group actor do not
change.
* clutter/clutter-label.c: Port Label to the new size
negotiation API, and vastly simplify the code.
* clutter/clutter-main.[ch]: Add API for executing a
relayout when needed.
* clutter/clutter-private.h: Add new Stage private API.
* clutter/clutter-rectangle.c: Update the get_abs_opacity()
call to get_paint_opacity().
* clutter/clutter-stage.c:
(clutter_stage_get_preferred_width),
(clutter_stage_get_preferred_height),
(clutter_stage_allocate),
(clutter_stage_class_init): Port Stage to the new size
negotiation API.
* clutter/clutter-texture.c: Port Texture to the new size
negotiation API.
* clutter/clutter-types.h: Add ClutterRequestMode enumeration.
* clutter/x11/clutter-stage-x11.c: Port the X11 stage
implementation to the new size negotiation API.
* tests/Makefile.am: Add the layout manager test case.
* tests/test-opacity.c: Update.
* tests/test-project.c: Update.
* tests/test-layout.c: Test case for a layout manager implemented
using the new size negotiation API; the layout manager handles
both transformed and untransformed children.
2008-06-10 13:07:52 -04:00
|
|
|
|
2007-06-07 10:41:35 -04:00
|
|
|
g_signal_emit_by_name (container, "actor-added", actor);
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2009-04-03 08:36:30 -04:00
|
|
|
clutter_container_sort_depth_order (container);
|
2007-01-19 12:56:35 -05:00
|
|
|
|
|
|
|
g_object_unref (actor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-06-07 10:41:35 -04:00
|
|
|
clutter_group_real_remove (ClutterContainer *container,
|
|
|
|
ClutterActor *actor)
|
2007-01-19 12:56:35 -05:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (container)->priv;
|
2007-06-07 10:41:35 -04:00
|
|
|
|
2007-01-19 12:56:35 -05:00
|
|
|
g_object_ref (actor);
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2007-06-07 10:41:35 -04:00
|
|
|
priv->children = g_list_remove (priv->children, actor);
|
2007-01-19 12:56:35 -05:00
|
|
|
clutter_actor_unparent (actor);
|
2007-06-07 10:41:35 -04:00
|
|
|
|
2008-06-10 Emmanuele Bassi <ebassi@openedhand.com>
Bug #815 - Split up request, allocation, and paint box
* clutter/clutter-actor.[ch]: Rework the size allocation,
request and paint area. Now ::request_coords() is called
::allocate(), and ::query_coords() has been split into
::get_preferred_width() and ::get_preferred_height(). See
the documentation and the layout test on how to implement
a container and layout manager with the new API. (#915,
based on a patch by Havoc Pennington, Lucas Rocha and Johan
Bilien)
* clutter/clutter-clone-texture.c: Port CloneTexture to
the new size negotiation API; it just means forwarding
the requests to the parent texture.
* clutter/clutter-deprecated.h: Add deprecated and replaced
API.
* clutter/clutter-entry.c: Port Entry to the new size
negotiation API.
* clutter/clutter-group.c: Port Group to the new size
negotiation API; the semantics of the Group actor do not
change.
* clutter/clutter-label.c: Port Label to the new size
negotiation API, and vastly simplify the code.
* clutter/clutter-main.[ch]: Add API for executing a
relayout when needed.
* clutter/clutter-private.h: Add new Stage private API.
* clutter/clutter-rectangle.c: Update the get_abs_opacity()
call to get_paint_opacity().
* clutter/clutter-stage.c:
(clutter_stage_get_preferred_width),
(clutter_stage_get_preferred_height),
(clutter_stage_allocate),
(clutter_stage_class_init): Port Stage to the new size
negotiation API.
* clutter/clutter-texture.c: Port Texture to the new size
negotiation API.
* clutter/clutter-types.h: Add ClutterRequestMode enumeration.
* clutter/x11/clutter-stage-x11.c: Port the X11 stage
implementation to the new size negotiation API.
* tests/Makefile.am: Add the layout manager test case.
* tests/test-opacity.c: Update.
* tests/test-project.c: Update.
* tests/test-layout.c: Test case for a layout manager implemented
using the new size negotiation API; the layout manager handles
both transformed and untransformed children.
2008-06-10 13:07:52 -04:00
|
|
|
/* queue a relayout, to get the correct positioning inside
|
|
|
|
* the ::actor-removed signal handlers
|
|
|
|
*/
|
2010-02-09 13:54:28 -05:00
|
|
|
clutter_actor_queue_relayout (CLUTTER_ACTOR (container));
|
2008-06-10 Emmanuele Bassi <ebassi@openedhand.com>
Bug #815 - Split up request, allocation, and paint box
* clutter/clutter-actor.[ch]: Rework the size allocation,
request and paint area. Now ::request_coords() is called
::allocate(), and ::query_coords() has been split into
::get_preferred_width() and ::get_preferred_height(). See
the documentation and the layout test on how to implement
a container and layout manager with the new API. (#915,
based on a patch by Havoc Pennington, Lucas Rocha and Johan
Bilien)
* clutter/clutter-clone-texture.c: Port CloneTexture to
the new size negotiation API; it just means forwarding
the requests to the parent texture.
* clutter/clutter-deprecated.h: Add deprecated and replaced
API.
* clutter/clutter-entry.c: Port Entry to the new size
negotiation API.
* clutter/clutter-group.c: Port Group to the new size
negotiation API; the semantics of the Group actor do not
change.
* clutter/clutter-label.c: Port Label to the new size
negotiation API, and vastly simplify the code.
* clutter/clutter-main.[ch]: Add API for executing a
relayout when needed.
* clutter/clutter-private.h: Add new Stage private API.
* clutter/clutter-rectangle.c: Update the get_abs_opacity()
call to get_paint_opacity().
* clutter/clutter-stage.c:
(clutter_stage_get_preferred_width),
(clutter_stage_get_preferred_height),
(clutter_stage_allocate),
(clutter_stage_class_init): Port Stage to the new size
negotiation API.
* clutter/clutter-texture.c: Port Texture to the new size
negotiation API.
* clutter/clutter-types.h: Add ClutterRequestMode enumeration.
* clutter/x11/clutter-stage-x11.c: Port the X11 stage
implementation to the new size negotiation API.
* tests/Makefile.am: Add the layout manager test case.
* tests/test-opacity.c: Update.
* tests/test-project.c: Update.
* tests/test-layout.c: Test case for a layout manager implemented
using the new size negotiation API; the layout manager handles
both transformed and untransformed children.
2008-06-10 13:07:52 -04:00
|
|
|
|
2007-06-07 10:41:35 -04:00
|
|
|
/* at this point, the actor passed to the "actor-removed" signal
|
|
|
|
* handlers is not parented anymore to the container but since we
|
|
|
|
* are holding a reference on it, it's still valid
|
|
|
|
*/
|
|
|
|
g_signal_emit_by_name (container, "actor-removed", actor);
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2010-02-09 14:34:32 -05:00
|
|
|
clutter_actor_queue_redraw (CLUTTER_ACTOR (container));
|
2007-01-19 12:56:35 -05:00
|
|
|
|
|
|
|
g_object_unref (actor);
|
|
|
|
}
|
|
|
|
|
2007-06-07 10:41:35 -04:00
|
|
|
static void
|
|
|
|
clutter_group_real_foreach (ClutterContainer *container,
|
|
|
|
ClutterCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (container)->priv;
|
2007-06-07 10:41:35 -04:00
|
|
|
|
2010-01-18 07:35:05 -05:00
|
|
|
/* Using g_list_foreach instead of iterating the list manually
|
|
|
|
because it has better protection against the current node being
|
|
|
|
removed. This will happen for example if someone calls
|
|
|
|
clutter_container_foreach(container, clutter_actor_destroy) */
|
|
|
|
g_list_foreach (priv->children, (GFunc) callback, user_data);
|
2007-06-07 10:41:35 -04:00
|
|
|
}
|
|
|
|
|
2007-08-13 13:00:58 -04:00
|
|
|
static void
|
|
|
|
clutter_group_real_raise (ClutterContainer *container,
|
|
|
|
ClutterActor *actor,
|
|
|
|
ClutterActor *sibling)
|
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (container)->priv;
|
2007-08-13 13:00:58 -04:00
|
|
|
|
2007-10-12 04:17:00 -04:00
|
|
|
priv->children = g_list_remove (priv->children, actor);
|
2007-08-13 13:00:58 -04:00
|
|
|
|
|
|
|
/* Raise at the top */
|
|
|
|
if (!sibling)
|
|
|
|
{
|
|
|
|
GList *last_item;
|
|
|
|
|
|
|
|
last_item = g_list_last (priv->children);
|
|
|
|
|
|
|
|
if (last_item)
|
|
|
|
sibling = last_item->data;
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2007-08-13 13:00:58 -04:00
|
|
|
priv->children = g_list_append (priv->children, actor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
gint index_ = g_list_index (priv->children, sibling) + 1;
|
2007-08-13 13:01:25 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
priv->children = g_list_insert (priv->children, actor, index_);
|
2007-08-13 13:00:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set Z ordering a value below, this will then call sort
|
|
|
|
* as values are equal ordering shouldn't change but Z
|
|
|
|
* values will be correct.
|
|
|
|
*
|
|
|
|
* FIXME: optimise
|
|
|
|
*/
|
|
|
|
if (sibling &&
|
|
|
|
clutter_actor_get_depth (sibling) != clutter_actor_get_depth (actor))
|
|
|
|
{
|
|
|
|
clutter_actor_set_depth (actor, clutter_actor_get_depth (sibling));
|
|
|
|
}
|
2008-11-26 11:46:48 -05:00
|
|
|
|
2010-02-09 14:34:32 -05:00
|
|
|
clutter_actor_queue_redraw (CLUTTER_ACTOR (container));
|
2007-08-13 13:00:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_group_real_lower (ClutterContainer *container,
|
|
|
|
ClutterActor *actor,
|
|
|
|
ClutterActor *sibling)
|
|
|
|
{
|
|
|
|
ClutterGroup *self = CLUTTER_GROUP (container);
|
|
|
|
ClutterGroupPrivate *priv = self->priv;
|
|
|
|
|
2007-10-12 04:17:00 -04:00
|
|
|
priv->children = g_list_remove (priv->children, actor);
|
2007-08-13 13:00:58 -04:00
|
|
|
|
|
|
|
/* Push to bottom */
|
|
|
|
if (!sibling)
|
|
|
|
{
|
|
|
|
GList *last_item;
|
|
|
|
|
|
|
|
last_item = g_list_first (priv->children);
|
|
|
|
|
|
|
|
if (last_item)
|
|
|
|
sibling = last_item->data;
|
|
|
|
|
|
|
|
priv->children = g_list_prepend (priv->children, actor);
|
|
|
|
}
|
|
|
|
else
|
2007-08-13 13:01:25 -04:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
gint index_ = g_list_index (priv->children, sibling);
|
2007-08-13 13:01:25 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
priv->children = g_list_insert (priv->children, actor, index_);
|
2007-08-13 13:01:25 -04:00
|
|
|
}
|
2007-08-13 13:00:58 -04:00
|
|
|
|
|
|
|
/* See comment in group_raise for this */
|
|
|
|
if (sibling &&
|
|
|
|
clutter_actor_get_depth (sibling) != clutter_actor_get_depth (actor))
|
|
|
|
{
|
|
|
|
clutter_actor_set_depth (actor, clutter_actor_get_depth (sibling));
|
|
|
|
}
|
2008-11-26 11:46:48 -05:00
|
|
|
|
2010-02-09 14:34:32 -05:00
|
|
|
clutter_actor_queue_redraw (CLUTTER_ACTOR (container));
|
2007-08-13 13:00:58 -04:00
|
|
|
}
|
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
static void
|
|
|
|
clutter_group_real_sort_depth_order (ClutterContainer *container)
|
2007-08-13 13:00:58 -04:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (container)->priv;
|
2007-08-13 13:00:58 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
priv->children = g_list_sort (priv->children, sort_by_depth);
|
2007-09-25 09:22:24 -04:00
|
|
|
|
2010-02-09 14:34:32 -05:00
|
|
|
clutter_actor_queue_redraw (CLUTTER_ACTOR (container));
|
2010-02-09 13:54:28 -05:00
|
|
|
}
|
2009-10-05 12:21:41 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
static void
|
|
|
|
clutter_container_iface_init (ClutterContainerIface *iface)
|
|
|
|
{
|
|
|
|
iface->add = clutter_group_real_add;
|
|
|
|
iface->remove = clutter_group_real_remove;
|
|
|
|
iface->foreach = clutter_group_real_foreach;
|
|
|
|
iface->raise = clutter_group_real_raise;
|
|
|
|
iface->lower = clutter_group_real_lower;
|
|
|
|
iface->sort_depth_order = clutter_group_real_sort_depth_order;
|
|
|
|
}
|
2009-10-05 12:21:41 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
static void
|
|
|
|
clutter_group_real_paint (ClutterActor *actor)
|
|
|
|
{
|
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (actor)->priv;
|
|
|
|
|
|
|
|
CLUTTER_NOTE (PAINT, "ClutterGroup paint enter '%s'",
|
|
|
|
clutter_actor_get_name (actor) ? clutter_actor_get_name (actor)
|
|
|
|
: "unknown");
|
|
|
|
|
|
|
|
g_list_foreach (priv->children, (GFunc) clutter_actor_paint, NULL);
|
|
|
|
|
|
|
|
CLUTTER_NOTE (PAINT, "ClutterGroup paint leave '%s'",
|
|
|
|
clutter_actor_get_name (actor) ? clutter_actor_get_name (actor)
|
|
|
|
: "unknown");
|
2007-08-13 13:00:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-09 13:54:28 -05:00
|
|
|
clutter_group_real_pick (ClutterActor *actor,
|
|
|
|
const ClutterColor *pick)
|
2007-08-13 13:00:58 -04:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (actor)->priv;
|
|
|
|
|
|
|
|
/* Chain up so we get a bounding box pained (if we are reactive) */
|
|
|
|
CLUTTER_ACTOR_CLASS (clutter_group_parent_class)->pick (actor, pick);
|
|
|
|
|
|
|
|
g_list_foreach (priv->children, (GFunc) clutter_actor_paint, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_group_real_get_preferred_width (ClutterActor *actor,
|
|
|
|
gfloat for_height,
|
|
|
|
gfloat *min_width,
|
|
|
|
gfloat *natural_width)
|
|
|
|
{
|
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (actor)->priv;
|
|
|
|
|
|
|
|
clutter_layout_manager_get_preferred_width (priv->layout,
|
|
|
|
CLUTTER_CONTAINER (actor),
|
|
|
|
for_height,
|
|
|
|
min_width, natural_width);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_group_real_get_preferred_height (ClutterActor *actor,
|
|
|
|
gfloat for_width,
|
|
|
|
gfloat *min_height,
|
|
|
|
gfloat *natural_height)
|
|
|
|
{
|
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (actor)->priv;
|
|
|
|
|
|
|
|
clutter_layout_manager_get_preferred_height (priv->layout,
|
|
|
|
CLUTTER_CONTAINER (actor),
|
|
|
|
for_width,
|
|
|
|
min_height, natural_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_group_real_allocate (ClutterActor *actor,
|
|
|
|
const ClutterActorBox *allocation,
|
|
|
|
ClutterAllocationFlags flags)
|
|
|
|
{
|
|
|
|
ClutterGroupPrivate *priv = CLUTTER_GROUP (actor)->priv;
|
|
|
|
ClutterActorClass *klass;
|
|
|
|
|
|
|
|
klass = CLUTTER_ACTOR_CLASS (clutter_group_parent_class);
|
|
|
|
klass->allocate (actor, allocation, flags);
|
|
|
|
|
|
|
|
if (priv->children == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
clutter_layout_manager_allocate (priv->layout,
|
|
|
|
CLUTTER_CONTAINER (actor),
|
|
|
|
allocation, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_group_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
ClutterGroup *self = CLUTTER_GROUP (object);
|
2007-08-13 13:00:58 -04:00
|
|
|
ClutterGroupPrivate *priv = self->priv;
|
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
if (priv->children)
|
|
|
|
{
|
|
|
|
g_list_foreach (priv->children, (GFunc) clutter_actor_destroy, NULL);
|
|
|
|
g_list_free (priv->children);
|
|
|
|
|
|
|
|
priv->children = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->layout)
|
|
|
|
{
|
2010-02-11 06:45:36 -05:00
|
|
|
clutter_layout_manager_set_container (priv->layout, NULL);
|
2010-02-09 13:54:28 -05:00
|
|
|
g_object_unref (priv->layout);
|
|
|
|
priv->layout = NULL;
|
|
|
|
}
|
2007-08-13 13:00:58 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
G_OBJECT_CLASS (clutter_group_parent_class)->dispose (object);
|
|
|
|
}
|
2007-08-13 13:00:58 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
static void
|
|
|
|
clutter_group_real_show_all (ClutterActor *actor)
|
|
|
|
{
|
|
|
|
clutter_container_foreach (CLUTTER_CONTAINER (actor),
|
|
|
|
CLUTTER_CALLBACK (clutter_actor_show),
|
|
|
|
NULL);
|
|
|
|
clutter_actor_show (actor);
|
2007-08-13 13:00:58 -04:00
|
|
|
}
|
|
|
|
|
2007-06-07 10:41:35 -04:00
|
|
|
static void
|
2010-02-09 13:54:28 -05:00
|
|
|
clutter_group_real_hide_all (ClutterActor *actor)
|
2007-06-07 10:41:35 -04:00
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
clutter_actor_hide (actor);
|
|
|
|
clutter_container_foreach (CLUTTER_CONTAINER (actor),
|
|
|
|
CLUTTER_CALLBACK (clutter_actor_hide),
|
|
|
|
NULL);
|
2007-06-07 10:41:35 -04:00
|
|
|
}
|
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
static void
|
|
|
|
clutter_group_class_init (ClutterGroupClass *klass)
|
|
|
|
{
|
2010-02-09 13:54:28 -05:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2006-06-13 09:17:45 -04:00
|
|
|
ClutterActorClass *actor_class = CLUTTER_ACTOR_CLASS (klass);
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
g_type_class_add_private (klass, sizeof (ClutterGroupPrivate));
|
2009-04-01 06:22:42 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
actor_class->get_preferred_width = clutter_group_real_get_preferred_width;
|
|
|
|
actor_class->get_preferred_height = clutter_group_real_get_preferred_height;
|
|
|
|
actor_class->allocate = clutter_group_real_allocate;
|
|
|
|
actor_class->paint = clutter_group_real_paint;
|
|
|
|
actor_class->pick = clutter_group_real_pick;
|
|
|
|
actor_class->show_all = clutter_group_real_show_all;
|
|
|
|
actor_class->hide_all = clutter_group_real_hide_all;
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2010-02-09 13:54:28 -05:00
|
|
|
gobject_class->dispose = clutter_group_dispose;
|
2006-05-29 04:59:36 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_group_init (ClutterGroup *self)
|
|
|
|
{
|
|
|
|
self->priv = CLUTTER_GROUP_GET_PRIVATE (self);
|
2009-10-05 12:21:41 -04:00
|
|
|
|
|
|
|
self->priv->layout = clutter_fixed_layout_new ();
|
|
|
|
g_object_ref_sink (self->priv->layout);
|
2009-10-07 11:41:25 -04:00
|
|
|
|
2010-02-11 06:45:36 -05:00
|
|
|
clutter_layout_manager_set_container (self->priv->layout,
|
|
|
|
CLUTTER_CONTAINER (self));
|
2006-05-29 04:59:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_group_new:
|
|
|
|
*
|
2008-04-28 11:32:42 -04:00
|
|
|
* Create a new #ClutterGroup.
|
2006-05-29 04:59:36 -04:00
|
|
|
*
|
2008-04-28 11:32:42 -04:00
|
|
|
* Return value: the newly created #ClutterGroup actor
|
|
|
|
*/
|
2006-07-06 Emmanuele Bassi <ebassi@openedhand.com>
Big rework of the actor management semantics: now ClutterActor
objects behave like GtkObjects - that is they have an initial
"floating" reference that gets "sunk" when they are added to
a ClutterGroup. This makes a group responsible of de-allocating
each actor inside it, so you just have to destroy the group to
get every child actor destroyed. Also, now you can do:
clutter_group_add (group, clutter_video_texture_new ());
without having to care about reference counting and explicit
unreffing.
* clutter/clutter-private.h: Add private flags setter and
getter macros.
* clutter/clutter-actor.h:
* clutter/clutter-actor.c: Clean up; inherit from GInitiallyUnowned;
add a "visible" property; add the "destroy", "show" and "hide"
signals to ClutterActorClass.
(clutter_actor_show), (clutter_actor_hide): Refactor a bit; emit
the "show" and "hide" signals.
(clutter_actor_set_property), (clutter_actor_get_property),
(clutter_actor_class_init): Implement the "visible" property; add
signals.
(clutter_actor_finalize): Do not leak the actor's name, if it is
set.
(clutter_actor_dispose): Emit the "destroy" signal here.
(clutter_actor_init): Sink the initial floating flag if needed.
(clutter_actor_destroy): Add a function to explicitely destroy
a ClutterActor.
(clutter_actor_set_parent), (clutter_actor_get_parent),
(clutter_actor_unparent): Make set_parent require a valid parent;
add unparent; check on get_parent; ref_sink the actor when
setting its parent and unref it when unsetting it. Probably we'll
need a function that does reparenting as unparent+set_parent in
a single shot.
* clutter/clutter-group.h:
* clutter/clutter-group.c (clutter_group_dispose),
(clutter_group_finalize), (clutter_group_add),
(clutter_group_remove): Make the group destroy its children when
disposing it; clean up, and use the newly-available
clutter_actor_unparent().
* clutter/clutter-stage.h:
* clutter/clutter-stage.c (clutter_stage_init): ClutterStage is
a top-level actor; clean up.
* clutter/clutter-video-texture.h:
* clutter/clutter-video-texture.c: Clean up.
* examples/super-oh.c:
* examples/test.c:
* examples/video-player.c:
* examples/test-text.c:
* examples/video-cube.c: Remove the g_object_unref() call, as the
ClutterStage object is destroyed on clutter_main_quit().
2006-07-06 13:52:57 -04:00
|
|
|
ClutterActor *
|
2006-05-29 04:59:36 -04:00
|
|
|
clutter_group_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (CLUTTER_TYPE_GROUP, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_group_remove_all:
|
2007-07-01 12:44:24 -04:00
|
|
|
* @group: A #ClutterGroup
|
2006-05-29 04:59:36 -04:00
|
|
|
*
|
2007-07-01 12:44:24 -04:00
|
|
|
* Removes all children actors from the #ClutterGroup.
|
2006-06-05 Emmanuele Bassi <ebassi@openedhand.com>
* clutter-color.h:
* clutter-color.c: Reimplement ClutterColor as a boxed type;
add convenience API for color handling, like: add, subtract,
shade, HSL color-space conversion, packing and unpacking.
* clutter-private.h: Update ClutterMainContext, and export the
main context pointer here.
* clutter-rectangle.h:
* clutter-rectangle.c: Update the color-related code; make
clutter_rectangle_new() and empty constructor and provide
clutter_rectangle_new_with_color(); provide color setter
and getter API.
* clutter-label.h:
* clutter-label.c: Rename the "font" property to "font-name";
update the color-related code to the new ClutterColor object;
rename clutter_label_new() to clutter_label_new_with_text(),
and add setters and getters for the properties.
* clutter-marshal.list: Add VOID:OBJECT and VOID:BOXED marshallers
generators.
* clutter-stage.h:
* clutter-stage.c: Rework the API: provide a default constructor
for a singleton object, named clutter_stage_get_default(), which
supercedes the clutter_stage() function in clutter-main; provide
new events: button-press-event, button-release-event,
key-press-event and key-release-event; update the color-related
code;
(clutter_stage_snapshot): Allow negative width and height when
taking a snapshot (meaning: use full width/height).
(clutter_stage_get_element_at_pos): Rename clutter_stage_pick().
* clutter-element.c (clutter_element_paint): Clean up the
stage and color related code.
* clutter-event.h:
* clutter-event.c: Add generic ClutterAnyEvent type; add
clutter_event_new(), clutter_event_copy() and clutter_event_free();
make ClutterEvent a boxed type.
* clutter-main.h:
* clutter-main.c: Remove clutter_stage(); add clutter_main_quit(),
for cleanly quitting from clutter_main(); add multiple mainloops
support; allocate the ClutterCntx instead of adding it to the
stack; re-work the ClutterEvent dispatching.
* clutter-group.c (clutter_group_add), (clutter_group_remove): Keep
a reference on the element when added to a ClutterGroup.
* examples/rects.py
* examples/test.c:
* examples/test-text.c:
* examples/video-cube.c:
* examples/super-oh.c:
* examples/test-video.c: Update.
2006-06-05 09:38:31 -04:00
|
|
|
*/
|
2006-05-29 04:59:36 -04:00
|
|
|
void
|
2007-07-01 12:44:24 -04:00
|
|
|
clutter_group_remove_all (ClutterGroup *group)
|
2006-05-29 04:59:36 -04:00
|
|
|
{
|
2007-07-04 08:29:50 -04:00
|
|
|
GList *children;
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-07-01 12:44:24 -04:00
|
|
|
g_return_if_fail (CLUTTER_IS_GROUP (group));
|
2007-01-19 12:56:35 -05:00
|
|
|
|
2007-07-04 08:29:50 -04:00
|
|
|
children = group->priv->children;
|
|
|
|
while (children)
|
2007-02-17 19:14:19 -05:00
|
|
|
{
|
2007-07-04 08:29:50 -04:00
|
|
|
ClutterActor *child = children->data;
|
|
|
|
children = children->next;
|
2007-07-01 12:44:24 -04:00
|
|
|
|
|
|
|
clutter_container_remove_actor (CLUTTER_CONTAINER (group), child);
|
2006-05-29 04:59:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-07 10:41:35 -04:00
|
|
|
/**
|
|
|
|
* clutter_group_get_n_children:
|
|
|
|
* @self: A #ClutterGroup
|
|
|
|
*
|
|
|
|
* Gets the number of actors held in the group.
|
2007-10-12 04:17:00 -04:00
|
|
|
*
|
2007-06-07 10:41:35 -04:00
|
|
|
* Return value: The number of child actors held in the group.
|
2007-10-12 04:17:00 -04:00
|
|
|
*
|
2007-06-07 10:41:35 -04:00
|
|
|
* Since: 0.2
|
2009-04-01 06:22:42 -04:00
|
|
|
*/
|
2007-06-07 10:41:35 -04:00
|
|
|
gint
|
|
|
|
clutter_group_get_n_children (ClutterGroup *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_GROUP (self), 0);
|
|
|
|
|
|
|
|
return g_list_length (self->priv->children);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_group_get_nth_child:
|
|
|
|
* @self: A #ClutterGroup
|
2007-10-12 04:17:00 -04:00
|
|
|
* @index_: the position of the requested actor.
|
|
|
|
*
|
2007-07-26 07:04:04 -04:00
|
|
|
* Gets a groups child held at @index_ in stack.
|
2007-06-07 10:41:35 -04:00
|
|
|
*
|
2009-04-01 06:22:42 -04:00
|
|
|
* Return value: (transfer none): A Clutter actor, or %NULL if
|
|
|
|
* @index_ is invalid.
|
2007-06-07 10:41:35 -04:00
|
|
|
*
|
|
|
|
* Since: 0.2
|
2009-04-01 06:22:42 -04:00
|
|
|
*/
|
2007-06-07 10:41:35 -04:00
|
|
|
ClutterActor *
|
|
|
|
clutter_group_get_nth_child (ClutterGroup *self,
|
2007-07-26 07:04:04 -04:00
|
|
|
gint index_)
|
2007-06-07 10:41:35 -04:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_GROUP (self), NULL);
|
|
|
|
|
2007-07-26 07:04:04 -04:00
|
|
|
return g_list_nth_data (self->priv->children, index_);
|
2007-06-07 10:41:35 -04:00
|
|
|
}
|