2010-10-21 08:13:00 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Intel Corporation.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-21 06:29:09 -04:00
|
|
|
#ifndef __CLUTTER_STAGE_PRIVATE_H__
|
|
|
|
#define __CLUTTER_STAGE_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <clutter/clutter-stage-window.h>
|
|
|
|
#include <clutter/clutter-stage.h>
|
2011-01-27 12:26:16 -05:00
|
|
|
#include <clutter/clutter-input-device.h>
|
2011-02-01 13:32:08 -05:00
|
|
|
#include <clutter/clutter-private.h>
|
2010-10-21 06:29:09 -04:00
|
|
|
|
2011-03-10 17:05:03 -05:00
|
|
|
#include <cogl/cogl.h>
|
|
|
|
|
2010-10-21 06:29:09 -04:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _ClutterStageQueueRedrawEntry ClutterStageQueueRedrawEntry;
|
|
|
|
|
|
|
|
/* stage */
|
|
|
|
ClutterStageWindow *_clutter_stage_get_default_window (void);
|
2011-08-16 11:01:22 -04:00
|
|
|
|
|
|
|
void _clutter_stage_do_paint (ClutterStage *stage,
|
|
|
|
const cairo_rectangle_int_t *clip);
|
|
|
|
|
2010-10-21 06:29:09 -04:00
|
|
|
void _clutter_stage_set_window (ClutterStage *stage,
|
|
|
|
ClutterStageWindow *stage_window);
|
|
|
|
ClutterStageWindow *_clutter_stage_get_window (ClutterStage *stage);
|
|
|
|
void _clutter_stage_get_projection_matrix (ClutterStage *stage,
|
|
|
|
CoglMatrix *projection);
|
|
|
|
void _clutter_stage_dirty_projection (ClutterStage *stage);
|
|
|
|
void _clutter_stage_set_viewport (ClutterStage *stage,
|
2011-02-01 11:51:58 -05:00
|
|
|
float x,
|
|
|
|
float y,
|
|
|
|
float width,
|
|
|
|
float height);
|
2010-10-21 06:29:09 -04:00
|
|
|
void _clutter_stage_get_viewport (ClutterStage *stage,
|
2011-02-01 11:51:58 -05:00
|
|
|
float *x,
|
|
|
|
float *y,
|
|
|
|
float *width,
|
|
|
|
float *height);
|
2010-10-21 06:29:09 -04:00
|
|
|
void _clutter_stage_dirty_viewport (ClutterStage *stage);
|
|
|
|
void _clutter_stage_maybe_setup_viewport (ClutterStage *stage);
|
|
|
|
void _clutter_stage_maybe_relayout (ClutterActor *stage);
|
|
|
|
gboolean _clutter_stage_needs_update (ClutterStage *stage);
|
|
|
|
gboolean _clutter_stage_do_update (ClutterStage *stage);
|
|
|
|
|
|
|
|
void _clutter_stage_queue_event (ClutterStage *stage,
|
|
|
|
ClutterEvent *event);
|
|
|
|
gboolean _clutter_stage_has_queued_events (ClutterStage *stage);
|
|
|
|
void _clutter_stage_process_queued_events (ClutterStage *stage);
|
|
|
|
void _clutter_stage_update_input_devices (ClutterStage *stage);
|
|
|
|
int _clutter_stage_get_pending_swaps (ClutterStage *stage);
|
|
|
|
gboolean _clutter_stage_has_full_redraw_queued (ClutterStage *stage);
|
2011-03-15 09:17:04 -04:00
|
|
|
|
|
|
|
ClutterActor *_clutter_stage_do_pick (ClutterStage *stage,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
ClutterPickMode mode);
|
2010-10-21 06:29:09 -04:00
|
|
|
|
|
|
|
ClutterPaintVolume *_clutter_stage_paint_volume_stack_allocate (ClutterStage *stage);
|
|
|
|
void _clutter_stage_paint_volume_stack_free_all (ClutterStage *stage);
|
|
|
|
|
2011-02-01 13:32:08 -05:00
|
|
|
const ClutterPlane *_clutter_stage_get_clip (ClutterStage *stage);
|
2010-10-21 06:29:09 -04:00
|
|
|
|
|
|
|
ClutterStageQueueRedrawEntry *_clutter_stage_queue_actor_redraw (ClutterStage *stage,
|
|
|
|
ClutterStageQueueRedrawEntry *entry,
|
|
|
|
ClutterActor *actor,
|
|
|
|
ClutterPaintVolume *clip);
|
|
|
|
void _clutter_stage_queue_redraw_entry_invalidate (ClutterStageQueueRedrawEntry *entry);
|
|
|
|
|
2011-01-27 12:26:16 -05:00
|
|
|
void _clutter_stage_add_device (ClutterStage *stage,
|
|
|
|
ClutterInputDevice *device);
|
|
|
|
void _clutter_stage_remove_device (ClutterStage *stage,
|
|
|
|
ClutterInputDevice *device);
|
|
|
|
gboolean _clutter_stage_has_device (ClutterStage *stage,
|
|
|
|
ClutterInputDevice *device);
|
|
|
|
|
2011-03-10 17:05:03 -05:00
|
|
|
CoglFramebuffer *_clutter_stage_get_active_framebuffer (ClutterStage *stage);
|
|
|
|
|
2011-04-11 09:11:39 -04:00
|
|
|
gint32 _clutter_stage_acquire_pick_id (ClutterStage *stage,
|
|
|
|
ClutterActor *actor);
|
|
|
|
void _clutter_stage_release_pick_id (ClutterStage *stage,
|
|
|
|
gint32 pick_id);
|
|
|
|
ClutterActor * _clutter_stage_get_actor_by_pick_id (ClutterStage *stage,
|
|
|
|
gint32 pick_id);
|
|
|
|
|
2012-06-13 11:02:05 -04:00
|
|
|
void _clutter_stage_add_pointer_drag_actor (ClutterStage *stage,
|
|
|
|
ClutterInputDevice *device,
|
|
|
|
ClutterActor *actor);
|
|
|
|
ClutterActor * _clutter_stage_get_pointer_drag_actor (ClutterStage *stage,
|
|
|
|
ClutterInputDevice *device);
|
|
|
|
void _clutter_stage_remove_pointer_drag_actor (ClutterStage *stage,
|
|
|
|
ClutterInputDevice *device);
|
|
|
|
|
|
|
|
void _clutter_stage_add_touch_drag_actor (ClutterStage *stage,
|
|
|
|
ClutterEventSequence *sequence,
|
|
|
|
ClutterActor *actor);
|
|
|
|
ClutterActor * _clutter_stage_get_touch_drag_actor (ClutterStage *stage,
|
|
|
|
ClutterEventSequence *sequence);
|
|
|
|
void _clutter_stage_remove_touch_drag_actor (ClutterStage *stage,
|
|
|
|
ClutterEventSequence *sequence);
|
2011-06-17 11:51:05 -04:00
|
|
|
|
2012-01-25 16:24:47 -05:00
|
|
|
ClutterStageState _clutter_stage_get_state (ClutterStage *stage);
|
|
|
|
gboolean _clutter_stage_is_activated (ClutterStage *stage);
|
|
|
|
gboolean _clutter_stage_is_fullscreen (ClutterStage *stage);
|
|
|
|
gboolean _clutter_stage_update_state (ClutterStage *stage,
|
|
|
|
ClutterStageState unset_state,
|
|
|
|
ClutterStageState set_state);
|
|
|
|
|
2010-10-21 06:29:09 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_STAGE_PRIVATE_H__ */
|