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 ())
|
|
|
|
#define CLUTTER_PRIORITY_EVENTS (G_PRIORITY_DEFAULT)
|
|
|
|
#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-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-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;
|
|
|
|
|
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-03-22 14:21:59 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CLUTTER_SCROLL_UP,
|
|
|
|
CLUTTER_SCROLL_DOWN,
|
|
|
|
CLUTTER_SCROLL_LEFT,
|
|
|
|
CLUTTER_SCROLL_RIGHT
|
|
|
|
} ClutterScrollDirection;
|
|
|
|
|
|
|
|
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
|
|
|
|
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;
|
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
|
|
|
};
|
|
|
|
|
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;
|
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;
|
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;
|
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;
|
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;
|
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;
|
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;
|
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-06-11 05:02:40 -04: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);
|
2006-12-12 15:20:04 -05:00
|
|
|
|
|
|
|
guint clutter_key_event_symbol (ClutterKeyEvent *keyev);
|
|
|
|
guint16 clutter_key_event_code (ClutterKeyEvent *keyev);
|
2006-06-23 11:13:11 -04:00
|
|
|
guint32 clutter_key_event_unicode (ClutterKeyEvent *keyev);
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
guint32 clutter_button_event_button (ClutterButtonEvent *buttev);
|
2006-12-12 15:20:04 -05:00
|
|
|
|
2006-06-23 11:13:11 -04:00
|
|
|
guint32 clutter_keysym_to_unicode (guint keyval);
|
2006-05-29 04:59:36 -04:00
|
|
|
|
2007-08-13 16:48:01 -04:00
|
|
|
ClutterActor* clutter_event_get_source (ClutterEvent *event);
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|