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_EVENT_H
|
|
|
|
#define _HAVE_CLUTTER_EVENT_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 <glib-object.h>
|
2007-08-13 16:48:01 -04:00
|
|
|
#include <clutter/clutter-types.h>
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
#define CLUTTER_TYPE_EVENT (clutter_event_get_type ())
|
2007-11-23 08:11:10 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CLUTTER_PRIORITY_EVENTS:
|
|
|
|
*
|
|
|
|
* Priority for event handling.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-03-22 14:21:59 -04:00
|
|
|
#define CLUTTER_PRIORITY_EVENTS (G_PRIORITY_DEFAULT)
|
2007-11-23 08:11:10 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CLUTTER_CURRENT_TIME:
|
|
|
|
*
|
|
|
|
* Default value for "now".
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-03-22 14:21:59 -04:00
|
|
|
#define CLUTTER_CURRENT_TIME 0L
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
G_BEGIN_DECLS
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-11-23 12:07:46 -05:00
|
|
|
/**
|
|
|
|
* ClutterModifierType:
|
|
|
|
* @CLUTTER_SHIFT_MASK: Mask applied by the Shift key
|
|
|
|
* @CLUTTER_LOCK_MASK: Mask applied by the Caps Lock key
|
|
|
|
* @CLUTTER_CONTROL_MASK: Mask applied by the Control key
|
|
|
|
* @CLUTTER_MOD1_MASK: Mask applied by the first Mod key
|
|
|
|
* @CLUTTER_MOD2_MASK: Mask applied by the second Mod key
|
|
|
|
* @CLUTTER_MOD3_MASK: Mask applied by the third Mod key
|
|
|
|
* @CLUTTER_MOD4_MASK: Mask applied by the fourth Mod key
|
|
|
|
* @CLUTTER_MOD5_MASK: Mask applied by the fifth Mod key
|
|
|
|
* @CLUTTER_BUTTON1_MASK: Mask applied by the first pointer button
|
|
|
|
* @CLUTTER_BUTTON2_MASK: Mask applied by the second pointer button
|
|
|
|
* @CLUTTER_BUTTON3_MASK: Mask applied by the third pointer button
|
|
|
|
* @CLUTTER_BUTTON4_MASK: Mask applied by the fourth pointer button
|
|
|
|
* @CLUTTER_BUTTON5_MASK: Mask applied by the fifth pointer button
|
|
|
|
*
|
|
|
|
* Masks applied to a #ClutterEvent by modifiers.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-06-11 05:02:28 -04:00
|
|
|
typedef enum {
|
|
|
|
CLUTTER_SHIFT_MASK = 1 << 0,
|
|
|
|
CLUTTER_LOCK_MASK = 1 << 1,
|
|
|
|
CLUTTER_CONTROL_MASK = 1 << 2,
|
|
|
|
CLUTTER_MOD1_MASK = 1 << 3,
|
|
|
|
CLUTTER_MOD2_MASK = 1 << 4,
|
|
|
|
CLUTTER_MOD3_MASK = 1 << 5,
|
|
|
|
CLUTTER_MOD4_MASK = 1 << 6,
|
|
|
|
CLUTTER_MOD5_MASK = 1 << 7,
|
|
|
|
CLUTTER_BUTTON1_MASK = 1 << 8,
|
|
|
|
CLUTTER_BUTTON2_MASK = 1 << 9,
|
|
|
|
CLUTTER_BUTTON3_MASK = 1 << 10,
|
|
|
|
CLUTTER_BUTTON4_MASK = 1 << 11,
|
|
|
|
CLUTTER_BUTTON5_MASK = 1 << 12
|
|
|
|
} ClutterModifierType;
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-11-23 12:07:46 -05:00
|
|
|
/**
|
|
|
|
* ClutterEventFlags:
|
|
|
|
* @CLUTTER_EVENT_FLAG_SYNTHETIC: Synthetic event
|
|
|
|
*
|
|
|
|
* Flags for the #ClutterEvent
|
|
|
|
*
|
|
|
|
* Since: 0.6
|
|
|
|
*/
|
2007-09-27 17:38:38 -04:00
|
|
|
typedef enum {
|
2007-10-15 12:50:59 -04:00
|
|
|
CLUTTER_EVENT_FLAG_SYNTHETIC = 1 << 0,
|
2007-09-27 17:38:38 -04:00
|
|
|
} ClutterEventFlags;
|
|
|
|
|
2007-11-23 12:07:46 -05:00
|
|
|
/**
|
|
|
|
* ClutterEventType:
|
|
|
|
* @CLUTTER_NOTHING: Empty event
|
|
|
|
* @CLUTTER_KEY_PRESS: Key press event
|
|
|
|
* @CLUTTER_KEY_RELEASE: Key release event
|
|
|
|
* @CLUTTER_MOTION: Pointer motion event
|
|
|
|
* @CLUTTER_ENTER: Actor enter event
|
|
|
|
* @CLUTTER_LEAVE: Actor leave event
|
|
|
|
* @CLUTTER_BUTTON_PRESS: Pointer button press event
|
|
|
|
* @CLUTTER_BUTTON_RELEASE: Pointer button release event
|
|
|
|
* @CLUTTER_SCROLL: Pointer scroll event
|
|
|
|
* @CLUTTER_STAGE_STATE: Stage stage change event
|
|
|
|
* @CLUTTER_DESTROY_NOTIFY: Destroy notification event
|
|
|
|
* @CLUTTER_CLIENT_MESSAGE: Client message event
|
|
|
|
* @CLUTTER_DELETE: Stage delete event
|
|
|
|
*
|
|
|
|
* Types of events.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2006-05-29 04:59:36 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
2007-03-22 14:21:59 -04:00
|
|
|
CLUTTER_NOTHING = 0,
|
2006-05-29 04:59:36 -04:00
|
|
|
CLUTTER_KEY_PRESS,
|
|
|
|
CLUTTER_KEY_RELEASE,
|
|
|
|
CLUTTER_MOTION,
|
2007-10-03 05:28:16 -04:00
|
|
|
CLUTTER_ENTER,
|
|
|
|
CLUTTER_LEAVE,
|
2006-05-29 04:59:36 -04:00
|
|
|
CLUTTER_BUTTON_PRESS,
|
2007-03-22 14:21:59 -04:00
|
|
|
CLUTTER_BUTTON_RELEASE,
|
|
|
|
CLUTTER_SCROLL,
|
|
|
|
CLUTTER_STAGE_STATE,
|
2007-04-19 11:24:57 -04:00
|
|
|
CLUTTER_DESTROY_NOTIFY,
|
2007-04-19 11:26:54 -04:00
|
|
|
CLUTTER_CLIENT_MESSAGE,
|
|
|
|
CLUTTER_DELETE
|
2006-05-29 04:59:36 -04:00
|
|
|
} ClutterEventType;
|
|
|
|
|
2007-11-23 12:07:46 -05:00
|
|
|
/**
|
|
|
|
* ClutterScrollDirection:
|
|
|
|
* @CLUTTER_SCROLL_UP: Scroll up
|
|
|
|
* @CLUTTER_SCROLL_DOWN: Scroll down
|
|
|
|
* @CLUTTER_SCROLL_LEFT: Scroll left
|
|
|
|
* @CLUTTER_SCROLL_RIGHT: Scroll right
|
|
|
|
*
|
|
|
|
* Direction of a pointer scroll event.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-03-22 14:21:59 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CLUTTER_SCROLL_UP,
|
|
|
|
CLUTTER_SCROLL_DOWN,
|
|
|
|
CLUTTER_SCROLL_LEFT,
|
|
|
|
CLUTTER_SCROLL_RIGHT
|
|
|
|
} ClutterScrollDirection;
|
|
|
|
|
2007-11-23 12:07:46 -05:00
|
|
|
/**
|
|
|
|
* ClutterStageState:
|
|
|
|
* @CLUTTER_STAGE_STATE_FULLSCREEN: Fullscreen mask
|
|
|
|
* @CLUTTER_STAGE_STATE_OFFSCREEN: Offscreen mask
|
|
|
|
* @CLUTTER_STAGE_STATE_ACTIVATED: Activated mask
|
|
|
|
*
|
|
|
|
* Stage state masks
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-03-22 14:21:59 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
2007-08-13 16:48:01 -04:00
|
|
|
CLUTTER_STAGE_STATE_FULLSCREEN = (1<<1),
|
|
|
|
CLUTTER_STAGE_STATE_OFFSCREEN = (1<<2),
|
2007-09-30 18:27:52 -04:00
|
|
|
CLUTTER_STAGE_STATE_ACTIVATED = (1<<3)
|
2007-03-22 14:21:59 -04:00
|
|
|
} ClutterStageState;
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
typedef union _ClutterEvent ClutterEvent;
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
typedef struct _ClutterAnyEvent ClutterAnyEvent;
|
|
|
|
typedef struct _ClutterButtonEvent ClutterButtonEvent;
|
|
|
|
typedef struct _ClutterKeyEvent ClutterKeyEvent;
|
|
|
|
typedef struct _ClutterMotionEvent ClutterMotionEvent;
|
|
|
|
typedef struct _ClutterScrollEvent ClutterScrollEvent;
|
|
|
|
typedef struct _ClutterStageStateEvent ClutterStageStateEvent;
|
2007-10-03 05:28:16 -04:00
|
|
|
typedef struct _ClutterCrossingEvent ClutterCrossingEvent;
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-07-04 10:00:41 -04:00
|
|
|
typedef struct _ClutterInputDevice ClutterInputDevice;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-12-15 09:36:27 -05:00
|
|
|
/**
|
|
|
|
* ClutterAnyEvent:
|
|
|
|
* @type: event type
|
|
|
|
* @time: event time
|
|
|
|
* @flags: event flags
|
|
|
|
* @source: event source actor
|
|
|
|
*
|
|
|
|
* Common members for a #ClutterEvent
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
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 _ClutterAnyEvent
|
|
|
|
{
|
|
|
|
ClutterEventType type;
|
2007-09-27 17:38:38 -04:00
|
|
|
guint32 time;
|
|
|
|
ClutterEventFlags flags;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage *stage;
|
2007-11-12 14:12:02 -05:00
|
|
|
ClutterActor *source;
|
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
|
|
|
};
|
|
|
|
|
2007-12-15 09:36:27 -05:00
|
|
|
/**
|
|
|
|
* ClutterKeyEvent:
|
|
|
|
* @type: event type
|
|
|
|
* @time: event time
|
|
|
|
* @flags: event flags
|
|
|
|
* @source: event source actor
|
|
|
|
* @modifier_state: key modifiers
|
|
|
|
* @keyval: raw key value
|
|
|
|
* @hardware_keycode: raw hardware key value
|
2008-01-18 06:58:16 -05:00
|
|
|
* @unicode_value: Unicode representation
|
2007-12-15 09:36:27 -05:00
|
|
|
*
|
|
|
|
* Key event
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
2006-05-29 04:59:36 -04:00
|
|
|
struct _ClutterKeyEvent
|
|
|
|
{
|
|
|
|
ClutterEventType type;
|
2007-03-22 14:21:59 -04:00
|
|
|
guint32 time;
|
2007-09-27 17:38:38 -04:00
|
|
|
ClutterEventFlags flags;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage *stage;
|
2007-11-12 14:12:02 -05:00
|
|
|
ClutterActor *source;
|
2007-06-11 05:02:40 -04:00
|
|
|
ClutterModifierType modifier_state;
|
2007-03-22 14:21:59 -04:00
|
|
|
guint keyval;
|
|
|
|
guint16 hardware_keycode;
|
2008-01-18 06:58:16 -05:00
|
|
|
gunichar unicode_value;
|
2006-05-29 04:59:36 -04:00
|
|
|
};
|
|
|
|
|
2007-12-15 09:36:27 -05:00
|
|
|
/**
|
|
|
|
* ClutterButtonEvent:
|
|
|
|
* @type: event type
|
|
|
|
* @time: event time
|
|
|
|
* @flags: event flags
|
|
|
|
* @source: event source actor
|
|
|
|
* @x: event X coordinate
|
|
|
|
* @y: event Y coordinate
|
|
|
|
* @modifier_state: button modifiers
|
|
|
|
* @button: event button
|
|
|
|
* @click_count: number of button presses within the default time
|
|
|
|
* and radius
|
|
|
|
* @axes: reserved for future use
|
|
|
|
* @device: reserved for future use
|
|
|
|
*
|
|
|
|
* Button event
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
2006-05-29 04:59:36 -04:00
|
|
|
struct _ClutterButtonEvent
|
|
|
|
{
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterEventType type;
|
|
|
|
guint32 time;
|
2007-09-27 17:38:38 -04:00
|
|
|
ClutterEventFlags flags;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage *stage;
|
2007-11-12 14:12:02 -05:00
|
|
|
ClutterActor *source;
|
2007-03-22 14:21:59 -04:00
|
|
|
gint x;
|
|
|
|
gint y;
|
2007-06-11 05:02:40 -04:00
|
|
|
ClutterModifierType modifier_state;
|
2007-03-22 14:21:59 -04:00
|
|
|
guint32 button;
|
2007-09-27 17:38:38 -04:00
|
|
|
guint click_count;
|
2007-03-22 14:21:59 -04:00
|
|
|
gdouble *axes; /* Future use */
|
|
|
|
ClutterInputDevice *device; /* Future use */
|
2006-05-29 04:59:36 -04:00
|
|
|
};
|
|
|
|
|
2007-10-03 05:28:16 -04:00
|
|
|
struct _ClutterCrossingEvent
|
|
|
|
{
|
|
|
|
ClutterEventType type;
|
|
|
|
guint32 time;
|
|
|
|
ClutterEventFlags flags;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage *stage;
|
2007-11-12 14:12:02 -05:00
|
|
|
ClutterActor *source;
|
2007-10-03 05:28:16 -04:00
|
|
|
gint x;
|
|
|
|
gint y;
|
|
|
|
ClutterActor *related;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
struct _ClutterMotionEvent
|
|
|
|
{
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterEventType type;
|
|
|
|
guint32 time;
|
2007-09-27 17:38:38 -04:00
|
|
|
ClutterEventFlags flags;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage *stage;
|
2007-11-12 14:12:02 -05:00
|
|
|
ClutterActor *source;
|
2007-03-22 14:21:59 -04:00
|
|
|
gint x;
|
|
|
|
gint y;
|
2007-06-11 05:02:40 -04:00
|
|
|
ClutterModifierType modifier_state;
|
2007-03-22 14:21:59 -04:00
|
|
|
gdouble *axes; /* Future use */
|
|
|
|
ClutterInputDevice *device; /* Future use */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _ClutterScrollEvent
|
|
|
|
{
|
|
|
|
ClutterEventType type;
|
|
|
|
guint32 time;
|
2007-09-27 17:38:38 -04:00
|
|
|
ClutterEventFlags flags;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage *stage;
|
2007-11-12 14:12:02 -05:00
|
|
|
ClutterActor *source;
|
2007-03-22 14:21:59 -04:00
|
|
|
gint x;
|
|
|
|
gint y;
|
|
|
|
ClutterScrollDirection direction;
|
2007-06-11 05:02:40 -04:00
|
|
|
ClutterModifierType modifier_state;
|
2007-03-22 14:21:59 -04:00
|
|
|
gdouble *axes; /* future use */
|
|
|
|
ClutterInputDevice *device; /* future use */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _ClutterStageStateEvent
|
|
|
|
{
|
|
|
|
ClutterEventType type;
|
2007-09-27 17:38:38 -04:00
|
|
|
guint32 time;
|
|
|
|
ClutterEventFlags flags;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage *stage;
|
2007-11-12 14:12:02 -05:00
|
|
|
ClutterActor *source; /* unused XXX: should probably be the stage itself */
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterStageState changed_mask;
|
|
|
|
ClutterStageState new_state;
|
2006-05-29 04:59:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
union _ClutterEvent
|
|
|
|
{
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterEventType type;
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterAnyEvent any;
|
2006-07-10 06:52:04 -04:00
|
|
|
ClutterButtonEvent button;
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterKeyEvent key;
|
2006-07-10 06:52:04 -04:00
|
|
|
ClutterMotionEvent motion;
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterScrollEvent scroll;
|
|
|
|
ClutterStageStateEvent stage_state;
|
2007-10-03 05:28:16 -04:00
|
|
|
ClutterCrossingEvent crossing;
|
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
|
|
|
GType clutter_event_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2007-11-23 12:07:46 -05:00
|
|
|
gboolean clutter_events_pending (void);
|
|
|
|
ClutterEvent * clutter_event_get (void);
|
|
|
|
ClutterEvent * clutter_event_peek (void);
|
|
|
|
void clutter_event_put (ClutterEvent *event);
|
|
|
|
ClutterEvent * clutter_event_new (ClutterEventType type);
|
|
|
|
ClutterEvent * clutter_event_copy (ClutterEvent *event);
|
|
|
|
void clutter_event_free (ClutterEvent *event);
|
|
|
|
ClutterEventType clutter_event_type (ClutterEvent *event);
|
|
|
|
guint32 clutter_event_get_time (ClutterEvent *event);
|
|
|
|
ClutterModifierType clutter_event_get_state (ClutterEvent *event);
|
|
|
|
void clutter_event_get_coords (ClutterEvent *event,
|
|
|
|
gint *x,
|
|
|
|
gint *y);
|
|
|
|
ClutterActor* clutter_event_get_source (ClutterEvent *event);
|
|
|
|
|
|
|
|
guint clutter_key_event_symbol (ClutterKeyEvent *keyev);
|
|
|
|
guint16 clutter_key_event_code (ClutterKeyEvent *keyev);
|
|
|
|
guint32 clutter_key_event_unicode (ClutterKeyEvent *keyev);
|
|
|
|
|
|
|
|
guint32 clutter_button_event_button (ClutterButtonEvent *buttev);
|
|
|
|
|
|
|
|
guint32 clutter_keysym_to_unicode (guint keyval);
|
|
|
|
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterStage* clutter_event_get_stage (ClutterEvent *event);
|
2007-08-13 16:48:01 -04:00
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|