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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HAVE_CLUTTER_PRIVATE_H
|
|
|
|
#define _HAVE_CLUTTER_PRIVATE_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2007-10-12 05:39:41 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
2006-05-29 04:59:36 -04:00
|
|
|
#include <unistd.h>
|
2007-10-12 05:39:41 -04:00
|
|
|
#endif
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2008-12-22 08:24:52 -05:00
|
|
|
#include "pango/cogl-pango.h"
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
#include "clutter-backend.h"
|
2008-04-04 11:02:11 -04:00
|
|
|
#include "clutter-event.h"
|
2007-05-16 05:08:30 -04:00
|
|
|
#include "clutter-feature.h"
|
2008-03-07 12:34:40 -05:00
|
|
|
#include "clutter-id-pool.h"
|
2008-04-04 11:02:11 -04:00
|
|
|
#include "clutter-stage-manager.h"
|
|
|
|
#include "clutter-stage-window.h"
|
|
|
|
#include "clutter-stage.h"
|
2007-03-22 14:21:59 -04:00
|
|
|
|
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
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2007-08-13 16:48:01 -04:00
|
|
|
typedef enum {
|
|
|
|
CLUTTER_ACTOR_UNUSED_FLAG = 0,
|
|
|
|
|
|
|
|
CLUTTER_ACTOR_IN_DESTRUCTION = 1 << 0,
|
|
|
|
CLUTTER_ACTOR_IS_TOPLEVEL = 1 << 1,
|
|
|
|
CLUTTER_ACTOR_IN_REPARENT = 1 << 2,
|
2008-04-04 11:02:11 -04:00
|
|
|
CLUTTER_ACTOR_SYNC_MATRICES = 1 << 3, /* Used by stage to indicate GL
|
|
|
|
* viewport / perspective etc
|
|
|
|
* needs (re)setting.
|
|
|
|
*/
|
2008-11-07 11:31:56 -05:00
|
|
|
CLUTTER_ACTOR_IN_PAINT = 1 << 4, /* Used to avoid recursion */
|
|
|
|
CLUTTER_ACTOR_IN_RELAYOUT = 1 << 5, /* Used to avoid recursion */
|
2009-01-12 06:15:41 -05:00
|
|
|
CLUTTER_TEXTURE_IN_CLONE_PAINT = 1 << 6 /* Used for safety in clones */
|
2007-08-13 16:48:01 -04:00
|
|
|
} ClutterPrivateFlags;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
CLUTTER_PICK_NONE = 0,
|
|
|
|
CLUTTER_PICK_REACTIVE,
|
|
|
|
CLUTTER_PICK_ALL
|
|
|
|
} ClutterPickMode;
|
|
|
|
|
2008-06-23 05:55:42 -04:00
|
|
|
struct _ClutterInputDevice
|
|
|
|
{
|
|
|
|
gint id;
|
|
|
|
gint32 motion_last_time;
|
|
|
|
ClutterActor *pointer_grab_actor;
|
|
|
|
ClutterActor *motion_last_actor;
|
|
|
|
|
|
|
|
gint click_count;
|
|
|
|
gint previous_x;
|
|
|
|
gint previous_y;
|
|
|
|
guint32 previous_time;
|
|
|
|
gint previous_button_number;
|
|
|
|
};
|
|
|
|
|
2007-08-23 08:47:25 -04:00
|
|
|
typedef struct _ClutterMainContext ClutterMainContext;
|
2006-05-29 04:59:36 -04:00
|
|
|
|
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
|
|
|
struct _ClutterMainContext
|
2006-05-29 04:59:36 -04:00
|
|
|
{
|
2007-11-15 12:08:48 -05:00
|
|
|
ClutterBackend *backend; /* holds a pointer to the windowing
|
|
|
|
system backend */
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStageManager *stage_manager; /* stages */
|
2007-11-15 12:08:48 -05:00
|
|
|
GQueue *events_queue; /* the main event queue */
|
2008-09-23 03:03:35 -04:00
|
|
|
|
2007-10-08 12:18:33 -04:00
|
|
|
guint is_initialized : 1;
|
2008-09-23 03:03:35 -04:00
|
|
|
guint motion_events_per_actor : 1;/* set for enter/leave events */
|
|
|
|
guint defer_display_setup : 1;
|
|
|
|
guint options_parsed : 1;
|
|
|
|
|
2007-06-07 19:51:53 -04:00
|
|
|
GTimer *timer; /* Used for debugging scheduler */
|
2007-08-13 16:48:01 -04:00
|
|
|
|
|
|
|
ClutterPickMode pick_mode; /* Indicates pick render mode */
|
2008-03-28 18:50:55 -04:00
|
|
|
|
2007-11-19 11:35:11 -05:00
|
|
|
guint motion_frequency; /* Motion events per second */
|
2007-08-13 16:48:01 -04:00
|
|
|
gint num_reactives; /* Num of reactive actors */
|
2007-10-08 12:18:33 -04:00
|
|
|
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterIDPool *id_pool; /* mapping between reused integer ids
|
|
|
|
* and actors
|
|
|
|
*/
|
2007-10-16 09:41:34 -04:00
|
|
|
guint frame_rate; /* Default FPS */
|
2007-11-15 12:08:48 -05:00
|
|
|
|
|
|
|
ClutterActor *pointer_grab_actor; /* The actor having the pointer grab
|
2008-03-28 18:50:55 -04:00
|
|
|
* (or NULL if there is no pointer grab
|
2007-11-15 12:08:48 -05:00
|
|
|
*/
|
2007-11-15 13:00:24 -05:00
|
|
|
ClutterActor *keyboard_grab_actor; /* The actor having the pointer grab
|
2008-03-28 18:50:55 -04:00
|
|
|
* (or NULL if there is no pointer
|
|
|
|
* grab)
|
|
|
|
*/
|
2007-12-03 11:29:18 -05:00
|
|
|
GSList *shaders; /* stack of overridden shaders */
|
2007-12-18 05:49:29 -05:00
|
|
|
|
|
|
|
ClutterActor *motion_last_actor;
|
2008-05-13 19:02:45 -04:00
|
|
|
|
|
|
|
/* fb bit masks for col<->id mapping in picking */
|
|
|
|
gint fb_r_mask, fb_g_mask, fb_b_mask;
|
|
|
|
gint fb_r_mask_used, fb_g_mask_used, fb_b_mask_used;
|
|
|
|
|
2008-12-23 09:27:41 -05:00
|
|
|
PangoContext *pango_context; /* Global Pango context */
|
|
|
|
CoglPangoFontMap *font_map; /* Global font map */
|
2008-06-23 05:55:42 -04:00
|
|
|
|
2008-12-23 09:27:41 -05:00
|
|
|
GSList *input_devices; /* For extra input devices, i.e
|
|
|
|
MultiTouch */
|
2009-02-14 06:38:16 -05:00
|
|
|
|
|
|
|
guint32 last_event_time;
|
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
|
|
|
};
|
|
|
|
|
|
|
|
#define CLUTTER_CONTEXT() (clutter_context_get_default ())
|
|
|
|
ClutterMainContext *clutter_context_get_default (void);
|
2008-06-13 05:10:39 -04:00
|
|
|
PangoContext *_clutter_context_create_pango_context (ClutterMainContext *self);
|
2009-01-05 10:27:33 -05:00
|
|
|
PangoContext *_clutter_context_get_pango_context (ClutterMainContext *self);
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-11-23 06:20:14 -05:00
|
|
|
#define CLUTTER_PRIVATE_FLAGS(a) (((ClutterActor *) (a))->private_flags)
|
|
|
|
#define CLUTTER_SET_PRIVATE_FLAGS(a,f) (CLUTTER_PRIVATE_FLAGS (a) |= (f))
|
|
|
|
#define CLUTTER_UNSET_PRIVATE_FLAGS(a,f) (CLUTTER_PRIVATE_FLAGS (a) &= ~(f))
|
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
|
|
|
|
2006-12-04 11:26:35 -05:00
|
|
|
#define CLUTTER_PARAM_READABLE \
|
|
|
|
G_PARAM_READABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB
|
|
|
|
#define CLUTTER_PARAM_WRITABLE \
|
|
|
|
G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB
|
|
|
|
#define CLUTTER_PARAM_READWRITE \
|
|
|
|
G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK |G_PARAM_STATIC_BLURB
|
|
|
|
|
2007-12-10 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-actor.c:
(clutter_actor_set_property),
(clutter_actor_get_property),
(clutter_actor_class_init): Add the rotation-* properties,
controlling the rotation angle and center on each axis. (#614)
(parse_rotation_array), (parse_rotation),
(clutter_actor_parse_custom_node),
(clutter_actor_set_custom_property),
(clutter_scriptable_iface_init): Add a new "rotation" custom
property for expressing the rotation along each axis in a
compact way:
"rotation" : [
{ "x-axis" : [ <angle>, [ <y>, <z> ] ] },
{ "y-axis" : [ <angle>, [ <x>, <z> ] ] },
{ "z-axis" : [ <angle>, [ <x>, <y> ] ] }
]
(clutter_geometry_get_type),(clutter_vertex_get_type),
(clutter_actor_box_get_type): Use the I_() macro instead of
directly calling g_intern_static_string().
* clutter/clutter-entry.c (clutter_entry_request_coords):
* clutter/clutter-label.c (clutter_label_ensure_layout),
(clutter_label_request_coords): Use CLUTTER_UNITS_FROM_DEVICE()
instead of CLUTTER_UNITS_FROM_INT(), as "device" means "pixels".
* clutter/clutter-private.h: Add the I_() macro for intern
static strings.
* tests/test-script.json: Test the newly added "rotation"
custom property.
2007-12-10 06:01:10 -05:00
|
|
|
#define I_(str) (g_intern_static_string ((str)))
|
|
|
|
|
2008-03-28 18:50:55 -04:00
|
|
|
/* stage manager */
|
|
|
|
struct _ClutterStageManager
|
|
|
|
{
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
GSList *stages;
|
|
|
|
};
|
|
|
|
|
|
|
|
void _clutter_stage_manager_add_stage (ClutterStageManager *stage_manager,
|
|
|
|
ClutterStage *stage);
|
|
|
|
void _clutter_stage_manager_remove_stage (ClutterStageManager *stage_manager,
|
|
|
|
ClutterStage *stage);
|
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
/* stage */
|
2007-05-09 19:31:08 -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
|
|
|
void _clutter_stage_set_window (ClutterStage *stage,
|
|
|
|
ClutterStageWindow *stage_window);
|
|
|
|
ClutterStageWindow *_clutter_stage_get_window (ClutterStage *stage);
|
|
|
|
ClutterStageWindow *_clutter_stage_get_default_window (void);
|
|
|
|
void _clutter_stage_maybe_setup_viewport (ClutterStage *stage);
|
|
|
|
void _clutter_stage_maybe_relayout (ClutterActor *stage);
|
2008-03-28 18:50:55 -04:00
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
/* vfuncs implemented by backend */
|
|
|
|
GType _clutter_backend_impl_get_type (void);
|
2007-05-28 14:49:34 -04:00
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
void _clutter_backend_redraw (ClutterBackend *backend,
|
|
|
|
ClutterStage *stage);
|
|
|
|
ClutterActor *_clutter_backend_create_stage (ClutterBackend *backend,
|
|
|
|
ClutterStage *wrapper,
|
|
|
|
GError **error);
|
|
|
|
void _clutter_backend_ensure_context (ClutterBackend *backend,
|
|
|
|
ClutterStage *stage);
|
2007-03-23 13:55:13 -04:00
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
void _clutter_backend_add_options (ClutterBackend *backend,
|
|
|
|
GOptionGroup *group);
|
|
|
|
gboolean _clutter_backend_pre_parse (ClutterBackend *backend,
|
|
|
|
GError **error);
|
|
|
|
gboolean _clutter_backend_post_parse (ClutterBackend *backend,
|
|
|
|
GError **error);
|
|
|
|
void _clutter_backend_init_events (ClutterBackend *backend);
|
2008-03-28 18:50:55 -04:00
|
|
|
|
2007-05-16 05:08:30 -04:00
|
|
|
ClutterFeatureFlags _clutter_backend_get_features (ClutterBackend *backend);
|
2007-03-23 13:55:13 -04:00
|
|
|
|
2009-01-22 06:37:52 -05:00
|
|
|
ClutterUnit _clutter_backend_get_units_per_em (ClutterBackend *backend);
|
|
|
|
|
2007-05-16 05:08:30 -04:00
|
|
|
void _clutter_feature_init (void);
|
|
|
|
|
2008-05-13 19:02:45 -04:00
|
|
|
/* Picking code */
|
2007-10-02 10:03:36 -04:00
|
|
|
ClutterActor *_clutter_do_pick (ClutterStage *stage,
|
2007-08-13 16:48:01 -04:00
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
ClutterPickMode mode);
|
|
|
|
|
2008-05-13 19:02:45 -04:00
|
|
|
guint _clutter_pixel_to_id (guchar pixel[4]);
|
|
|
|
|
|
|
|
void _clutter_id_to_color (guint id, ClutterColor *col);
|
|
|
|
|
|
|
|
|
2007-10-02 10:03:36 -04:00
|
|
|
/* use this function as the accumulator if you have a signal with
|
|
|
|
* a G_TYPE_BOOLEAN return value; this will stop the emission as
|
|
|
|
* soon as one handler returns TRUE
|
|
|
|
*/
|
2008-04-04 11:02:11 -04:00
|
|
|
gboolean _clutter_boolean_handled_accumulator (GSignalInvocationHint *ihint,
|
|
|
|
GValue *return_accu,
|
|
|
|
const GValue *handler_return,
|
|
|
|
gpointer dummy);
|
2007-10-02 10:03:36 -04:00
|
|
|
|
2008-08-01 08:23:57 -04:00
|
|
|
void _clutter_actor_apply_modelview_transform_recursive (ClutterActor *self,
|
|
|
|
ClutterActor *ancestor);
|
|
|
|
|
2009-01-17 11:51:03 -05:00
|
|
|
void _clutter_actor_set_opacity_parent (ClutterActor *self,
|
|
|
|
ClutterActor *parent);
|
|
|
|
|
|
|
|
void _clutter_actor_set_enable_model_view_transform (ClutterActor *self,
|
|
|
|
gboolean enable);
|
|
|
|
|
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
|
|
|
G_END_DECLS
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
#endif /* _HAVE_CLUTTER_PRIVATE_H */
|