2007-03-22 14:21:59 -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.
|
|
|
|
*/
|
|
|
|
|
2007-07-04 10:00:41 -04:00
|
|
|
/**
|
|
|
|
* SECTION:clutter-backend
|
|
|
|
* @short_description: Backend abstraction
|
|
|
|
*
|
|
|
|
* Clutter can be compiled against different backends. Each backend
|
|
|
|
* has to implement a set of functions, in order to be used by Clutter.
|
|
|
|
*
|
|
|
|
* #ClutterBackend is the base class abstracting the various implementation;
|
|
|
|
* it provides a basic API to query the backend for generic information
|
|
|
|
* and settings.
|
|
|
|
*
|
|
|
|
* #ClutterBackend is available since Clutter 0.4
|
|
|
|
*/
|
|
|
|
|
2007-10-12 04:17:00 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-03-22 14:21:59 -04:00
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2007-07-31 06:38:23 -04:00
|
|
|
#include "clutter-fixed.h"
|
2007-03-22 14:21:59 -04:00
|
|
|
#include "clutter-backend.h"
|
|
|
|
#include "clutter-private.h"
|
2008-04-04 11:02:11 -04:00
|
|
|
#include "clutter-debug.h"
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-07-24 12:22:29 -04:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (ClutterBackend, clutter_backend, G_TYPE_OBJECT);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
#define CLUTTER_BACKEND_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), CLUTTER_TYPE_BACKEND, ClutterBackendPrivate))
|
|
|
|
|
|
|
|
struct _ClutterBackendPrivate
|
|
|
|
{
|
|
|
|
/* settings */
|
|
|
|
guint double_click_time;
|
|
|
|
guint double_click_distance;
|
|
|
|
|
2007-07-31 06:38:23 -04:00
|
|
|
ClutterFixed resolution;
|
2007-05-09 19:31:08 -04:00
|
|
|
};
|
|
|
|
|
2007-03-23 19:57:24 -04:00
|
|
|
static void
|
|
|
|
clutter_backend_dispose (GObject *gobject)
|
|
|
|
{
|
2007-05-09 19:31:08 -04:00
|
|
|
ClutterMainContext *clutter_context;
|
|
|
|
|
|
|
|
clutter_context = clutter_context_get_default ();
|
2007-03-23 19:57:24 -04:00
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
if (clutter_context && clutter_context->events_queue)
|
2007-03-23 19:57:24 -04:00
|
|
|
{
|
2007-05-09 19:31:08 -04:00
|
|
|
g_queue_foreach (clutter_context->events_queue, (GFunc) clutter_event_free, NULL);
|
|
|
|
g_queue_free (clutter_context->events_queue);
|
|
|
|
clutter_context->events_queue = NULL;
|
2007-03-23 19:57:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (clutter_backend_parent_class)->dispose (gobject);
|
|
|
|
}
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
static void
|
|
|
|
clutter_backend_class_init (ClutterBackendClass *klass)
|
|
|
|
{
|
2007-03-23 19:57:24 -04:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-03-23 19:57:24 -04:00
|
|
|
gobject_class->dispose = clutter_backend_dispose;
|
2007-05-09 19:31:08 -04:00
|
|
|
|
|
|
|
g_type_class_add_private (gobject_class, sizeof (ClutterBackendPrivate));
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_backend_init (ClutterBackend *backend)
|
|
|
|
{
|
2007-05-09 19:31:08 -04:00
|
|
|
ClutterBackendPrivate *priv;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
priv = backend->priv = CLUTTER_BACKEND_GET_PRIVATE(backend);
|
2007-07-31 06:38:23 -04:00
|
|
|
priv->resolution = -1.0;
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-03-23 13:55:13 -04:00
|
|
|
_clutter_backend_add_options (ClutterBackend *backend,
|
|
|
|
GOptionGroup *group)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2007-07-09 17:56:06 -04:00
|
|
|
ClutterBackendClass *klass;
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
g_return_if_fail (CLUTTER_IS_BACKEND (backend));
|
|
|
|
|
2007-07-09 17:56:06 -04:00
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
|
|
|
if (klass->add_options)
|
2007-07-24 12:22:29 -04:00
|
|
|
klass->add_options (backend, group);
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2007-03-23 13:55:13 -04:00
|
|
|
_clutter_backend_pre_parse (ClutterBackend *backend,
|
|
|
|
GError **error)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
|
|
|
ClutterBackendClass *klass;
|
|
|
|
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_BACKEND (backend), FALSE);
|
|
|
|
|
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
|
|
|
if (klass->pre_parse)
|
|
|
|
return klass->pre_parse (backend, error);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2007-03-23 13:55:13 -04:00
|
|
|
_clutter_backend_post_parse (ClutterBackend *backend,
|
|
|
|
GError **error)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
|
|
|
ClutterBackendClass *klass;
|
|
|
|
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_BACKEND (backend), FALSE);
|
|
|
|
|
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
|
|
|
if (klass->post_parse)
|
|
|
|
return klass->post_parse (backend, error);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
ClutterActor *
|
2008-03-28 18:50:55 -04:00
|
|
|
_clutter_backend_create_stage (ClutterBackend *backend,
|
2008-04-04 11:02:11 -04:00
|
|
|
ClutterStage *wrapper,
|
2008-03-28 18:50:55 -04:00
|
|
|
GError **error)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterMainContext *context;
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterBackendClass *klass;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterActor *stage = NULL;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_BACKEND (backend), FALSE);
|
2008-04-04 11:02:11 -04:00
|
|
|
g_return_val_if_fail (CLUTTER_IS_STAGE (wrapper), FALSE);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2008-03-28 18:50:55 -04:00
|
|
|
context = clutter_context_get_default ();
|
|
|
|
|
|
|
|
if (!context->stage_manager)
|
|
|
|
context->stage_manager = clutter_stage_manager_get_default ();
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
2008-03-28 18:50:55 -04:00
|
|
|
if (klass->create_stage)
|
2008-04-04 11:02:11 -04:00
|
|
|
stage = klass->create_stage (backend, wrapper, error);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2008-03-28 18:50:55 -04:00
|
|
|
if (!stage)
|
|
|
|
return NULL;
|
|
|
|
|
2008-05-13 06:37:17 -04:00
|
|
|
g_assert (CLUTTER_IS_STAGE_WINDOW (stage));
|
|
|
|
_clutter_stage_set_window (wrapper, CLUTTER_STAGE_WINDOW (stage));
|
2008-04-04 11:02:11 -04:00
|
|
|
_clutter_stage_manager_add_stage (context->stage_manager, wrapper);
|
|
|
|
|
2008-03-28 18:50:55 -04:00
|
|
|
return stage;
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
2007-05-28 14:49:34 -04:00
|
|
|
void
|
2008-04-04 11:02:11 -04:00
|
|
|
_clutter_backend_redraw (ClutterBackend *backend,
|
|
|
|
ClutterStage *stage)
|
2007-05-28 14:49:34 -04:00
|
|
|
{
|
|
|
|
ClutterBackendClass *klass;
|
|
|
|
|
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
2008-04-04 11:02:11 -04:00
|
|
|
if (G_LIKELY (klass->redraw))
|
2008-03-28 18:50:55 -04:00
|
|
|
klass->redraw (backend, stage);
|
2007-05-28 14:49:34 -04:00
|
|
|
}
|
|
|
|
|
2008-03-28 18:50:55 -04:00
|
|
|
void
|
2008-04-04 11:02:11 -04:00
|
|
|
_clutter_backend_ensure_context (ClutterBackend *backend,
|
|
|
|
ClutterStage *stage)
|
2008-03-28 18:50:55 -04:00
|
|
|
{
|
|
|
|
ClutterBackendClass *klass;
|
|
|
|
static ClutterStage *current_context_stage = NULL;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_BACKEND (backend));
|
|
|
|
g_return_if_fail (CLUTTER_IS_STAGE (stage));
|
|
|
|
|
2008-04-04 13:26:26 -04:00
|
|
|
if (current_context_stage != stage || !CLUTTER_ACTOR_IS_REALIZED (stage))
|
2008-03-28 18:50:55 -04:00
|
|
|
{
|
2008-04-04 11:02:11 -04:00
|
|
|
if (!CLUTTER_ACTOR_IS_REALIZED (stage))
|
|
|
|
{
|
2008-04-04 13:26:26 -04:00
|
|
|
CLUTTER_NOTE (MULTISTAGE, "Stage is not realized, unsetting");
|
2008-04-04 11:02:11 -04:00
|
|
|
stage = NULL;
|
|
|
|
}
|
2008-04-04 13:26:26 -04:00
|
|
|
else
|
|
|
|
CLUTTER_NOTE (MULTISTAGE, "Setting the new stage [%p]", stage);
|
2008-04-01 10:04:46 -04:00
|
|
|
|
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
2008-04-04 11:02:11 -04:00
|
|
|
if (G_LIKELY (klass->ensure_context))
|
2008-03-28 18:50:55 -04:00
|
|
|
klass->ensure_context (backend, stage);
|
2008-04-01 10:04:46 -04:00
|
|
|
|
|
|
|
/* FIXME: With a NULL stage and thus no active context it may make more
|
|
|
|
* sense to clean the context but then re call with the default stage
|
|
|
|
* so at least there is some kind of context in place (as to avoid
|
|
|
|
* potential issue of GL calls with no context)
|
2008-04-04 13:26:26 -04:00
|
|
|
*/
|
2008-03-28 18:50:55 -04:00
|
|
|
current_context_stage = stage;
|
2008-04-01 10:04:46 -04:00
|
|
|
|
|
|
|
if (stage)
|
|
|
|
CLUTTER_SET_PRIVATE_FLAGS (stage, CLUTTER_ACTOR_SYNC_MATRICES);
|
2008-03-28 18:50:55 -04:00
|
|
|
}
|
2008-04-04 13:26:26 -04:00
|
|
|
else
|
|
|
|
CLUTTER_NOTE (MULTISTAGE, "Stage is the same");
|
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-22 14:21:59 -04:00
|
|
|
{
|
|
|
|
ClutterBackendClass *klass;
|
|
|
|
|
2007-05-25 06:56:09 -04:00
|
|
|
g_return_val_if_fail (CLUTTER_IS_BACKEND (backend), 0);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
2007-05-16 05:08:30 -04:00
|
|
|
if (klass->get_features)
|
|
|
|
return klass->get_features (backend);
|
|
|
|
|
|
|
|
return 0;
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
2007-03-23 13:55:13 -04:00
|
|
|
void
|
2007-05-09 19:31:08 -04:00
|
|
|
_clutter_backend_init_events (ClutterBackend *backend)
|
2007-03-23 13:55:13 -04:00
|
|
|
{
|
|
|
|
ClutterBackendClass *klass;
|
2007-05-09 19:31:08 -04:00
|
|
|
ClutterMainContext *clutter_context;
|
|
|
|
|
|
|
|
clutter_context = clutter_context_get_default ();
|
2007-03-23 13:55:13 -04:00
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_BACKEND (backend));
|
2007-05-09 19:31:08 -04:00
|
|
|
g_return_if_fail (clutter_context != NULL);
|
|
|
|
|
|
|
|
clutter_context->events_queue = g_queue_new ();
|
2007-03-23 13:55:13 -04:00
|
|
|
|
|
|
|
klass = CLUTTER_BACKEND_GET_CLASS (backend);
|
2007-05-09 19:31:08 -04:00
|
|
|
if (klass->init_events)
|
|
|
|
klass->init_events (backend);
|
2007-03-23 13:55:13 -04:00
|
|
|
}
|
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
|
2007-03-23 13:55:13 -04:00
|
|
|
/**
|
|
|
|
* clutter_get_default_backend:
|
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* Return value: the default backend. You should not ref or
|
2007-05-09 19:31:08 -04:00
|
|
|
* unref the returned object. Applications should not rarely need
|
|
|
|
* to use this.
|
|
|
|
*
|
2007-03-23 13:55:13 -04:00
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
ClutterBackend *
|
|
|
|
clutter_get_default_backend (void)
|
|
|
|
{
|
|
|
|
ClutterMainContext *clutter_context;
|
|
|
|
|
|
|
|
clutter_context = clutter_context_get_default ();
|
|
|
|
|
|
|
|
return clutter_context->backend;
|
|
|
|
}
|
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
/* FIXME: below should probably be moved into clutter_main */
|
2007-04-19 11:25:34 -04:00
|
|
|
|
2007-04-19 11:25:53 -04:00
|
|
|
/**
|
|
|
|
* clutter_backend_set_double_click_time:
|
|
|
|
* @backend: a #ClutterBackend
|
|
|
|
* @msec: milliseconds between two button press events
|
|
|
|
*
|
|
|
|
* Sets the maximum time between two button press events, used to
|
|
|
|
* verify whether it's a double click event or not.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-04-19 11:25:34 -04:00
|
|
|
void
|
|
|
|
clutter_backend_set_double_click_time (ClutterBackend *backend,
|
|
|
|
guint msec)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CLUTTER_IS_BACKEND (backend));
|
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
backend->priv->double_click_time = msec;
|
2007-04-19 11:25:34 -04:00
|
|
|
}
|
|
|
|
|
2007-04-19 11:25:53 -04:00
|
|
|
/**
|
|
|
|
* clutter_backend_get_double_click_time:
|
|
|
|
* @backend: a #ClutterBackend
|
|
|
|
*
|
|
|
|
* Gets the maximum time between two button press events, as set
|
|
|
|
* by clutter_backend_set_double_click_time().
|
|
|
|
*
|
|
|
|
* Return value: a time in milliseconds
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-04-19 11:25:34 -04:00
|
|
|
guint
|
|
|
|
clutter_backend_get_double_click_time (ClutterBackend *backend)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_BACKEND (backend), 0);
|
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
return backend->priv->double_click_time;
|
2007-04-19 11:25:34 -04:00
|
|
|
}
|
|
|
|
|
2007-04-19 11:25:53 -04:00
|
|
|
/**
|
|
|
|
* clutter_backend_set_double_click_distance:
|
|
|
|
* @backend: a #ClutterBackend
|
|
|
|
* @distance: a distance, in pixels
|
|
|
|
*
|
|
|
|
* Sets the maximum distance used to verify a double click event.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-04-19 11:25:34 -04:00
|
|
|
void
|
|
|
|
clutter_backend_set_double_click_distance (ClutterBackend *backend,
|
|
|
|
guint distance)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CLUTTER_IS_BACKEND (backend));
|
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
backend->priv->double_click_distance = distance;
|
2007-04-19 11:25:34 -04:00
|
|
|
}
|
|
|
|
|
2007-04-19 11:25:53 -04:00
|
|
|
/**
|
|
|
|
* clutter_backend_get_double_click_distance:
|
|
|
|
* @backend: a #ClutterBackend
|
|
|
|
*
|
|
|
|
* Retrieves the distance used to verify a double click event
|
|
|
|
*
|
|
|
|
* Return value: a distance, in pixels.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-04-19 11:25:34 -04:00
|
|
|
guint
|
|
|
|
clutter_backend_get_double_click_distance (ClutterBackend *backend)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_BACKEND (backend), 0);
|
|
|
|
|
2007-05-09 19:31:08 -04:00
|
|
|
return backend->priv->double_click_distance;
|
2007-04-19 11:25:34 -04:00
|
|
|
}
|
2007-07-31 06:38:23 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_backend_set_resolution:
|
|
|
|
* @backend: a #ClutterBackend
|
|
|
|
* @dpi: the resolution in "dots per inch" (Physical inches aren't
|
|
|
|
* actually involved; the terminology is conventional).
|
|
|
|
*
|
|
|
|
* Sets the resolution for font handling on the screen. This is a
|
|
|
|
* scale factor between points specified in a #PangoFontDescription
|
|
|
|
* and cairo units. The default value is 96, meaning that a 10 point
|
|
|
|
* font will be 13 units high. (10 * 96. / 72. = 13.3).
|
|
|
|
*
|
|
|
|
* Applications should never need to call this function.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_backend_set_resolution (ClutterBackend *backend,
|
|
|
|
gdouble dpi)
|
|
|
|
{
|
|
|
|
ClutterFixed fixed_dpi;
|
2007-07-31 12:53:17 -04:00
|
|
|
ClutterBackendPrivate *priv;
|
2007-07-31 06:38:23 -04:00
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_BACKEND (backend));
|
|
|
|
|
|
|
|
if (dpi < 0)
|
2007-07-31 12:53:17 -04:00
|
|
|
dpi = -1.0;
|
|
|
|
|
|
|
|
priv = backend->priv;
|
2007-07-31 06:38:23 -04:00
|
|
|
|
|
|
|
fixed_dpi = CLUTTER_FLOAT_TO_FIXED (dpi);
|
|
|
|
if (priv->resolution != fixed_dpi)
|
|
|
|
priv->resolution = fixed_dpi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_backend_get_resolution:
|
|
|
|
* @backend: a #ClutterBackend
|
|
|
|
*
|
|
|
|
* Gets the resolution for font handling on the screen; see
|
|
|
|
* clutter_backend_set_resolution() for full details.
|
|
|
|
*
|
|
|
|
* Return value: the current resolution, or -1 if no resolution
|
|
|
|
* has been set.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
gdouble
|
|
|
|
clutter_backend_get_resolution (ClutterBackend *backend)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_BACKEND (backend), -1.0);
|
|
|
|
|
|
|
|
return CLUTTER_FIXED_TO_FLOAT (backend->priv->resolution);
|
|
|
|
}
|