2016-05-04 04:19:23 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Red Hat
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jonas Ådahl <jadahl@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
2016-05-08 21:59:54 -04:00
|
|
|
#include "backends/meta-backend-private.h"
|
|
|
|
#include "backends/meta-renderer.h"
|
2016-05-04 04:19:23 -04:00
|
|
|
#include "backends/x11/meta-clutter-backend-x11.h"
|
2019-03-22 08:53:00 -04:00
|
|
|
#include "backends/x11/meta-keymap-x11.h"
|
2019-09-24 05:24:48 -04:00
|
|
|
#include "backends/x11/meta-seat-x11.h"
|
2019-03-22 08:53:00 -04:00
|
|
|
#include "backends/x11/meta-xkb-a11y-x11.h"
|
2019-03-29 16:18:07 -04:00
|
|
|
#include "backends/x11/nested/meta-stage-x11-nested.h"
|
2016-05-20 03:58:10 -04:00
|
|
|
#include "clutter/clutter-mutter.h"
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "clutter/clutter.h"
|
2017-10-12 09:10:04 -04:00
|
|
|
#include "core/bell.h"
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "meta/meta-backend.h"
|
2016-05-04 04:19:23 -04:00
|
|
|
|
|
|
|
struct _MetaClutterBackendX11
|
|
|
|
{
|
|
|
|
ClutterBackendX11 parent;
|
2019-09-24 05:24:48 -04:00
|
|
|
MetaSeatX11 *core_seat;
|
2016-05-04 04:19:23 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (MetaClutterBackendX11, meta_clutter_backend_x11,
|
|
|
|
CLUTTER_TYPE_BACKEND_X11)
|
|
|
|
|
2016-05-08 21:59:54 -04:00
|
|
|
static CoglRenderer *
|
|
|
|
meta_clutter_backend_x11_get_renderer (ClutterBackend *clutter_backend,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaRenderer *renderer = meta_backend_get_renderer (backend);
|
|
|
|
|
|
|
|
return meta_renderer_create_cogl_renderer (renderer);
|
|
|
|
}
|
|
|
|
|
2016-05-20 03:58:10 -04:00
|
|
|
static ClutterStageWindow *
|
|
|
|
meta_clutter_backend_x11_create_stage (ClutterBackend *backend,
|
|
|
|
ClutterStage *wrapper,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
ClutterStageWindow *stage;
|
|
|
|
GType stage_type;
|
|
|
|
|
|
|
|
if (meta_is_wayland_compositor ())
|
|
|
|
stage_type = META_TYPE_STAGE_X11_NESTED;
|
|
|
|
else
|
2019-03-22 08:53:00 -04:00
|
|
|
stage_type = META_TYPE_STAGE_X11;
|
2016-05-20 03:58:10 -04:00
|
|
|
|
|
|
|
stage = g_object_new (stage_type,
|
|
|
|
"backend", backend,
|
|
|
|
"wrapper", wrapper,
|
|
|
|
NULL);
|
|
|
|
return stage;
|
|
|
|
}
|
|
|
|
|
2019-03-22 08:53:00 -04:00
|
|
|
static gboolean
|
|
|
|
meta_clutter_backend_x11_translate_event (ClutterBackend *backend,
|
|
|
|
gpointer native,
|
|
|
|
ClutterEvent *event)
|
|
|
|
{
|
|
|
|
MetaClutterBackendX11 *backend_x11 = META_CLUTTER_BACKEND_X11 (backend);
|
|
|
|
MetaStageX11 *stage_x11;
|
|
|
|
ClutterBackendClass *clutter_backend_class;
|
|
|
|
|
|
|
|
clutter_backend_class =
|
|
|
|
CLUTTER_BACKEND_CLASS (meta_clutter_backend_x11_parent_class);
|
|
|
|
if (clutter_backend_class->translate_event (backend, native, event))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
stage_x11 = META_STAGE_X11 (clutter_backend_get_stage_window (backend));
|
|
|
|
if (meta_stage_x11_translate_event (stage_x11, native, event))
|
|
|
|
return TRUE;
|
|
|
|
|
2019-09-24 05:24:48 -04:00
|
|
|
if (meta_seat_x11_translate_event (backend_x11->core_seat, native, event))
|
2019-03-22 08:53:00 -04:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_clutter_backend_x11_init_events (ClutterBackend *backend)
|
|
|
|
{
|
|
|
|
MetaClutterBackendX11 *backend_x11 = META_CLUTTER_BACKEND_X11 (backend);
|
|
|
|
int event_base, first_event, first_error;
|
|
|
|
|
|
|
|
if (XQueryExtension (clutter_x11_get_default_display (),
|
|
|
|
"XInputExtension",
|
|
|
|
&event_base,
|
|
|
|
&first_event,
|
|
|
|
&first_error))
|
|
|
|
{
|
|
|
|
int major = 2;
|
|
|
|
int minor = 3;
|
|
|
|
|
|
|
|
if (XIQueryVersion (clutter_x11_get_default_display (),
|
|
|
|
&major, &minor) != BadRequest)
|
|
|
|
{
|
2019-09-24 05:24:48 -04:00
|
|
|
backend_x11->core_seat =
|
|
|
|
meta_seat_x11_new (event_base,
|
|
|
|
META_VIRTUAL_CORE_POINTER_ID,
|
|
|
|
META_VIRTUAL_CORE_KEYBOARD_ID);
|
2019-03-22 08:53:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-24 05:24:48 -04:00
|
|
|
if (!backend_x11->core_seat)
|
2019-03-22 08:53:00 -04:00
|
|
|
g_error ("No XInput 2.3 support");
|
2019-09-24 05:24:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static ClutterSeat *
|
|
|
|
meta_clutter_backend_x11_get_default_seat (ClutterBackend *backend)
|
|
|
|
{
|
|
|
|
MetaClutterBackendX11 *backend_x11 = META_CLUTTER_BACKEND_X11 (backend);
|
2019-03-22 08:53:00 -04:00
|
|
|
|
2019-09-24 05:24:48 -04:00
|
|
|
return CLUTTER_SEAT (backend_x11->core_seat);
|
2019-03-22 08:53:00 -04:00
|
|
|
}
|
|
|
|
|
2016-05-04 04:19:23 -04:00
|
|
|
static void
|
|
|
|
meta_clutter_backend_x11_init (MetaClutterBackendX11 *clutter_backend_x11)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_clutter_backend_x11_class_init (MetaClutterBackendX11Class *klass)
|
|
|
|
{
|
2016-05-08 21:59:54 -04:00
|
|
|
ClutterBackendClass *clutter_backend_class = CLUTTER_BACKEND_CLASS (klass);
|
|
|
|
|
|
|
|
clutter_backend_class->get_renderer = meta_clutter_backend_x11_get_renderer;
|
2016-05-20 03:58:10 -04:00
|
|
|
clutter_backend_class->create_stage = meta_clutter_backend_x11_create_stage;
|
2019-03-22 08:53:00 -04:00
|
|
|
clutter_backend_class->translate_event = meta_clutter_backend_x11_translate_event;
|
|
|
|
clutter_backend_class->init_events = meta_clutter_backend_x11_init_events;
|
2019-09-24 05:24:48 -04:00
|
|
|
clutter_backend_class->get_default_seat = meta_clutter_backend_x11_get_default_seat;
|
2016-05-04 04:19:23 -04:00
|
|
|
}
|