2006-05-29 08:59:36 +00: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
|
2008-10-30 17:04:34 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2006-05-29 08:59:36 +00:00
|
|
|
*/
|
|
|
|
|
2023-07-21 13:37:20 +00:00
|
|
|
#pragma once
|
2015-07-07 14:51:13 +00:00
|
|
|
|
2008-10-30 17:04:34 +00:00
|
|
|
#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
|
|
|
|
#error "Only <clutter/clutter.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2023-08-07 13:38:12 +00:00
|
|
|
#include "clutter/clutter-actor.h"
|
|
|
|
#include "clutter/clutter-stage.h"
|
2008-10-30 17:11:29 +00:00
|
|
|
#include <pango/pango.h>
|
2006-05-29 08:59:36 +00:00
|
|
|
|
2006-07-24 21:15:19 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2019-03-21 11:49:04 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CLUTTER_DEBUG_MISC = 1 << 0,
|
|
|
|
CLUTTER_DEBUG_ACTOR = 1 << 1,
|
|
|
|
CLUTTER_DEBUG_TEXTURE = 1 << 2,
|
|
|
|
CLUTTER_DEBUG_EVENT = 1 << 3,
|
|
|
|
CLUTTER_DEBUG_PAINT = 1 << 4,
|
|
|
|
CLUTTER_DEBUG_PANGO = 1 << 5,
|
|
|
|
CLUTTER_DEBUG_BACKEND = 1 << 6,
|
|
|
|
CLUTTER_DEBUG_SCHEDULER = 1 << 7,
|
|
|
|
CLUTTER_DEBUG_SCRIPT = 1 << 8,
|
|
|
|
CLUTTER_DEBUG_SHADER = 1 << 9,
|
|
|
|
CLUTTER_DEBUG_MULTISTAGE = 1 << 10,
|
|
|
|
CLUTTER_DEBUG_ANIMATION = 1 << 11,
|
|
|
|
CLUTTER_DEBUG_LAYOUT = 1 << 12,
|
|
|
|
CLUTTER_DEBUG_PICK = 1 << 13,
|
|
|
|
CLUTTER_DEBUG_EVENTLOOP = 1 << 14,
|
|
|
|
CLUTTER_DEBUG_CLIPPING = 1 << 15,
|
|
|
|
CLUTTER_DEBUG_OOB_TRANSFORMS = 1 << 16,
|
2021-01-13 06:32:44 +00:00
|
|
|
CLUTTER_DEBUG_FRAME_TIMINGS = 1 << 17,
|
2021-02-02 23:04:02 +00:00
|
|
|
CLUTTER_DEBUG_DETAILED_TRACE = 1 << 18,
|
2022-04-06 10:19:27 +00:00
|
|
|
CLUTTER_DEBUG_GRABS = 1 << 19,
|
2022-12-15 11:18:52 +00:00
|
|
|
CLUTTER_DEBUG_FRAME_CLOCK = 1 << 20,
|
2022-04-09 12:29:56 +00:00
|
|
|
CLUTTER_DEBUG_GESTURES = 1 << 21,
|
2019-03-21 11:49:04 +00:00
|
|
|
} ClutterDebugFlag;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CLUTTER_DEBUG_NOP_PICKING = 1 << 0,
|
|
|
|
} ClutterPickDebugFlag;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2020-11-28 13:46:03 +00:00
|
|
|
CLUTTER_DEBUG_DISABLE_SWAP_EVENTS = 1 << 0,
|
|
|
|
CLUTTER_DEBUG_DISABLE_CLIPPED_REDRAWS = 1 << 1,
|
|
|
|
CLUTTER_DEBUG_REDRAWS = 1 << 2,
|
|
|
|
CLUTTER_DEBUG_PAINT_VOLUMES = 1 << 3,
|
|
|
|
CLUTTER_DEBUG_DISABLE_CULLING = 1 << 4,
|
|
|
|
CLUTTER_DEBUG_DISABLE_OFFSCREEN_REDIRECT = 1 << 5,
|
|
|
|
CLUTTER_DEBUG_CONTINUOUS_REDRAW = 1 << 6,
|
|
|
|
CLUTTER_DEBUG_PAINT_DEFORM_TILES = 1 << 7,
|
|
|
|
CLUTTER_DEBUG_PAINT_DAMAGE_REGION = 1 << 8,
|
|
|
|
CLUTTER_DEBUG_DISABLE_DYNAMIC_MAX_RENDER_TIME = 1 << 9,
|
2020-11-27 18:49:19 +00:00
|
|
|
CLUTTER_DEBUG_PAINT_MAX_RENDER_TIME = 1 << 10,
|
2019-03-21 11:49:04 +00:00
|
|
|
} ClutterDrawDebugFlag;
|
|
|
|
|
2008-06-25 16:46:42 +00:00
|
|
|
/**
|
|
|
|
* CLUTTER_PRIORITY_REDRAW:
|
|
|
|
*
|
2009-06-06 23:31:32 +00:00
|
|
|
* Priority of the redraws. This is chosen to be lower than the GTK+
|
|
|
|
* redraw and resize priorities, because in application with both
|
|
|
|
* GTK+ and Clutter it's more likely that the Clutter part will be
|
|
|
|
* continually animating (and thus able to starve GTK+) than
|
|
|
|
* vice-versa.
|
2008-06-25 16:46:42 +00:00
|
|
|
*/
|
2009-06-06 23:31:32 +00:00
|
|
|
#define CLUTTER_PRIORITY_REDRAW (G_PRIORITY_HIGH_IDLE + 50)
|
2008-06-25 16:46:42 +00:00
|
|
|
|
2024-05-27 09:18:40 +00:00
|
|
|
typedef enum _ClutterPipelineCapability
|
|
|
|
{
|
|
|
|
CLUTTER_PIPELINE_CAPABILITY_COLOR_STATE,
|
|
|
|
} ClutterPipelineCapability;
|
|
|
|
|
|
|
|
#define CLUTTER_PIPELINE_CAPABILITY (clutter_pipeline_capability_quark ())
|
|
|
|
CLUTTER_EXPORT
|
|
|
|
GQuark clutter_pipeline_capability_quark (void);
|
|
|
|
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2023-07-31 23:02:15 +00:00
|
|
|
void clutter_stage_handle_event (ClutterStage *stage,
|
|
|
|
ClutterEvent *event);
|
2008-01-23 11:08:39 +00:00
|
|
|
|
2007-08-08 10:20:14 +00:00
|
|
|
/* Debug utility functions */
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
gboolean clutter_get_accessibility_enabled (void);
|
2007-05-16 15:00:41 +00:00
|
|
|
|
2007-08-08 10:20:14 +00:00
|
|
|
/* Threading functions */
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
guint clutter_threads_add_idle (GSourceFunc func,
|
|
|
|
gpointer data);
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
guint clutter_threads_add_idle_full (gint priority,
|
|
|
|
GSourceFunc func,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify notify);
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
guint clutter_threads_add_timeout (guint interval,
|
|
|
|
GSourceFunc func,
|
|
|
|
gpointer data);
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
guint clutter_threads_add_timeout_full (gint priority,
|
|
|
|
guint interval,
|
|
|
|
GSourceFunc func,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify notify);
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
guint clutter_threads_add_repaint_func (GSourceFunc func,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify notify);
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2012-03-06 12:09:00 +00:00
|
|
|
guint clutter_threads_add_repaint_func_full (ClutterRepaintFlags flags,
|
|
|
|
GSourceFunc func,
|
|
|
|
gpointer data,
|
|
|
|
GDestroyNotify notify);
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
void clutter_threads_remove_repaint_func (guint handle_id);
|
|
|
|
|
2018-05-22 21:01:54 +00:00
|
|
|
CLUTTER_EXPORT
|
2011-11-02 12:32:09 +00:00
|
|
|
ClutterTextDirection clutter_get_default_text_direction (void);
|
2009-11-06 16:50:53 +00:00
|
|
|
|
2019-03-21 11:49:04 +00:00
|
|
|
CLUTTER_EXPORT
|
|
|
|
void clutter_add_debug_flags (ClutterDebugFlag debug_flags,
|
|
|
|
ClutterDrawDebugFlag draw_flags,
|
|
|
|
ClutterPickDebugFlag pick_flags);
|
|
|
|
|
|
|
|
CLUTTER_EXPORT
|
|
|
|
void clutter_remove_debug_flags (ClutterDebugFlag debug_flags,
|
|
|
|
ClutterDrawDebugFlag draw_flags,
|
|
|
|
ClutterPickDebugFlag pick_flags);
|
2014-03-17 18:19:52 +00:00
|
|
|
|
2020-11-28 19:15:02 +00:00
|
|
|
CLUTTER_EXPORT
|
|
|
|
void clutter_debug_set_max_render_time_constant (int max_render_time_constant_us);
|
|
|
|
|
2022-05-09 09:29:11 +00:00
|
|
|
CLUTTER_EXPORT
|
|
|
|
ClutterTextDirection clutter_get_text_direction (void);
|
|
|
|
|
2006-07-24 21:15:19 +00:00
|
|
|
G_END_DECLS
|