2007-11-15 09:45:27 -05:00
|
|
|
/* Clutter.
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
* Copyright (C) 2006-2007 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
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2007-11-15 09:45:27 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CLUTTER_BACKEND_X11_H__
|
|
|
|
#define __CLUTTER_BACKEND_X11_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <clutter/clutter-event.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
#include "clutter-x11.h"
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
|
2010-10-21 06:49:37 -04:00
|
|
|
#include "clutter-backend-private.h"
|
2010-07-12 12:11:30 -04:00
|
|
|
#include "clutter-keymap-x11.h"
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
|
2010-06-21 10:43:31 -04:00
|
|
|
#include "xsettings/xsettings-client.h"
|
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-01-20 10:39:28 -05:00
|
|
|
#define CLUTTER_TYPE_BACKEND_X11 (_clutter_backend_x11_get_type ())
|
2007-11-15 09:45:27 -05:00
|
|
|
#define CLUTTER_BACKEND_X11(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_BACKEND_X11, ClutterBackendX11))
|
|
|
|
#define CLUTTER_IS_BACKEND_X11(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_BACKEND_X11))
|
|
|
|
#define CLUTTER_BACKEND_X11_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CLUTTER_TYPE_BACKEND_X11, ClutterBackendX11Class))
|
|
|
|
#define CLUTTER_IS_BACKEND_X11_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_BACKEND_X11))
|
|
|
|
#define CLUTTER_BACKEND_X11_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_BACKEND_X11, ClutterBackendX11Class))
|
|
|
|
|
|
|
|
typedef struct _ClutterBackendX11 ClutterBackendX11;
|
|
|
|
typedef struct _ClutterBackendX11Class ClutterBackendX11Class;
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
typedef struct _ClutterEventX11 ClutterEventX11;
|
|
|
|
typedef struct _ClutterX11EventFilter ClutterX11EventFilter;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
struct _ClutterX11EventFilter
|
2007-11-15 09:45:27 -05:00
|
|
|
{
|
|
|
|
ClutterX11FilterFunc func;
|
|
|
|
gpointer data;
|
|
|
|
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _ClutterEventX11
|
|
|
|
{
|
|
|
|
/* additional fields for Key events */
|
|
|
|
gint key_group;
|
|
|
|
|
|
|
|
guint key_is_modifier : 1;
|
|
|
|
guint num_lock_set : 1;
|
|
|
|
guint caps_lock_set : 1;
|
|
|
|
};
|
2007-11-15 09:45:27 -05:00
|
|
|
|
|
|
|
struct _ClutterBackendX11
|
|
|
|
{
|
2011-11-04 12:52:44 -04:00
|
|
|
ClutterBackend parent_instance;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
|
|
|
Display *xdpy;
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
gchar *display_name;
|
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
Screen *xscreen;
|
|
|
|
int xscreen_num;
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
int xscreen_width;
|
|
|
|
int xscreen_height;
|
|
|
|
|
|
|
|
Window xwin_root;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
|
|
|
/* event source */
|
|
|
|
GSource *event_source;
|
|
|
|
GSList *event_filters;
|
|
|
|
|
|
|
|
/* props */
|
2009-08-04 10:06:27 -04:00
|
|
|
Atom atom_NET_WM_PID;
|
2007-11-17 13:11:14 -05:00
|
|
|
Atom atom_NET_WM_PING;
|
|
|
|
Atom atom_NET_WM_STATE;
|
|
|
|
Atom atom_NET_WM_STATE_FULLSCREEN;
|
|
|
|
Atom atom_NET_WM_USER_TIME;
|
|
|
|
Atom atom_WM_PROTOCOLS;
|
|
|
|
Atom atom_WM_DELETE_WINDOW;
|
|
|
|
Atom atom_XEMBED;
|
|
|
|
Atom atom_XEMBED_INFO;
|
|
|
|
Atom atom_NET_WM_NAME;
|
|
|
|
Atom atom_UTF8_STRING;
|
2008-06-23 05:55:42 -04:00
|
|
|
|
2009-02-18 04:45:26 -05:00
|
|
|
Time last_event_time;
|
2010-01-15 06:21:52 -05:00
|
|
|
|
2010-02-17 12:06:25 -05:00
|
|
|
ClutterDeviceManager *device_manager;
|
2011-01-18 08:15:20 -05:00
|
|
|
gboolean has_xinput;
|
2012-03-19 10:28:34 -04:00
|
|
|
int xi_minor;
|
2010-06-21 10:43:31 -04:00
|
|
|
|
|
|
|
XSettingsClient *xsettings;
|
2010-06-28 05:32:54 -04:00
|
|
|
Window xsettings_xwin;
|
2010-07-12 12:11:30 -04:00
|
|
|
|
|
|
|
ClutterKeymapX11 *keymap;
|
2010-07-12 13:04:03 -04:00
|
|
|
gboolean use_xkb;
|
|
|
|
gboolean have_xkb_autorepeat;
|
2011-02-08 07:08:18 -05:00
|
|
|
guint keymap_serial;
|
2007-11-15 09:45:27 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _ClutterBackendX11Class
|
|
|
|
{
|
2011-11-04 12:52:44 -04:00
|
|
|
ClutterBackendClass parent_class;
|
2007-11-15 09:45:27 -05:00
|
|
|
};
|
|
|
|
|
2011-01-20 10:39:28 -05:00
|
|
|
GType _clutter_backend_x11_get_type (void) G_GNUC_CONST;
|
2007-11-15 09:45:27 -05:00
|
|
|
|
2011-11-03 13:53:54 -04:00
|
|
|
void _clutter_backend_x11_events_init (ClutterBackend *backend);
|
2008-06-23 05:55:42 -04:00
|
|
|
|
2011-11-03 13:53:54 -04:00
|
|
|
GSource * _clutter_x11_event_source_new (ClutterBackendX11 *backend_x11);
|
2007-11-15 09:45:27 -05:00
|
|
|
|
2011-11-03 13:53:54 -04:00
|
|
|
/* Private to glx/eglx backends */
|
|
|
|
XVisualInfo * _clutter_backend_x11_get_visual_info (ClutterBackendX11 *backend_x11);
|
2010-07-08 10:47:18 -04:00
|
|
|
|
2011-11-03 13:53:54 -04:00
|
|
|
void _clutter_x11_select_events (Window xwin);
|
2010-07-08 10:47:18 -04:00
|
|
|
|
2011-11-03 13:53:54 -04:00
|
|
|
ClutterEventX11 * _clutter_event_x11_new (void);
|
|
|
|
ClutterEventX11 * _clutter_event_x11_copy (ClutterEventX11 *event_x11);
|
|
|
|
void _clutter_event_x11_free (ClutterEventX11 *event_x11);
|
2010-07-08 10:47:18 -04:00
|
|
|
|
2011-11-03 13:53:54 -04:00
|
|
|
gboolean _clutter_x11_input_device_translate_screen_coord (ClutterInputDevice *device,
|
|
|
|
gint stage_root_x,
|
|
|
|
gint stage_root_y,
|
|
|
|
guint index_,
|
|
|
|
gdouble value,
|
|
|
|
gdouble *axis_value);
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_BACKEND_X11_H__ */
|