2014-04-21 23:13:04 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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:
|
|
|
|
* Jasper St. Pierre <jstpierre@mecheye.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_BACKEND_X11_H
|
|
|
|
#define META_BACKEND_X11_H
|
|
|
|
|
2017-01-31 14:09:02 +00:00
|
|
|
#include <stdint.h>
|
2014-04-21 23:13:04 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "backends/meta-backend-private.h"
|
2022-03-14 21:45:34 +00:00
|
|
|
#include "backends/x11/meta-backend-x11-types.h"
|
2016-05-04 08:19:23 +00:00
|
|
|
#include "backends/x11/meta-clutter-backend-x11.h"
|
|
|
|
|
2016-11-30 10:46:20 +00:00
|
|
|
#define META_TYPE_BACKEND_X11 (meta_backend_x11_get_type ())
|
2016-12-05 10:33:19 +00:00
|
|
|
G_DECLARE_DERIVABLE_TYPE (MetaBackendX11, meta_backend_x11,
|
|
|
|
META, BACKEND_X11, MetaBackend)
|
|
|
|
|
|
|
|
struct _MetaBackendX11Class
|
|
|
|
{
|
|
|
|
MetaBackendClass parent_class;
|
2017-01-27 15:04:02 +00:00
|
|
|
|
|
|
|
gboolean (* handle_host_xevent) (MetaBackendX11 *x11,
|
|
|
|
XEvent *event);
|
|
|
|
void (* translate_device_event) (MetaBackendX11 *x11,
|
|
|
|
XIDeviceEvent *device_event);
|
|
|
|
void (* translate_crossing_event) (MetaBackendX11 *x11,
|
|
|
|
XIEnterEvent *enter_event);
|
2016-12-05 10:33:19 +00:00
|
|
|
};
|
2014-04-21 23:13:04 +00:00
|
|
|
|
2014-04-23 13:57:16 +00:00
|
|
|
Display * meta_backend_x11_get_xdisplay (MetaBackendX11 *backend);
|
2014-04-21 23:13:04 +00:00
|
|
|
|
2021-09-17 19:26:55 +00:00
|
|
|
Screen * meta_backend_x11_get_xscreen (MetaBackendX11 *backend);
|
|
|
|
|
2021-09-17 13:53:05 +00:00
|
|
|
Window meta_backend_x11_get_root_xwindow (MetaBackendX11 *backend_x11);
|
|
|
|
|
2014-04-27 14:49:29 +00:00
|
|
|
Window meta_backend_x11_get_xwindow (MetaBackendX11 *backend);
|
|
|
|
|
2016-12-01 04:59:47 +00:00
|
|
|
void meta_backend_x11_handle_event (MetaBackendX11 *x11,
|
|
|
|
XEvent *xevent);
|
|
|
|
|
2017-01-31 14:09:02 +00:00
|
|
|
uint8_t meta_backend_x11_get_xkb_event_base (MetaBackendX11 *x11);
|
|
|
|
|
2018-06-27 19:30:55 +00:00
|
|
|
void meta_backend_x11_reload_cursor (MetaBackendX11 *x11);
|
|
|
|
|
2020-12-18 13:59:17 +00:00
|
|
|
void meta_backend_x11_sync_pointer (MetaBackendX11 *backend_x11);
|
|
|
|
|
2022-03-14 21:45:34 +00:00
|
|
|
MetaX11Barriers * meta_backend_x11_get_barriers (MetaBackendX11 *backend_x11);
|
|
|
|
|
2014-04-21 23:13:04 +00:00
|
|
|
#endif /* META_BACKEND_X11_H */
|