2018-04-20 14:34:32 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2018 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author: Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
*/
|
|
|
|
|
2023-07-21 13:37:20 +00:00
|
|
|
#pragma once
|
2018-04-20 14:34:32 +00:00
|
|
|
|
|
|
|
#include <clutter/clutter.h>
|
2020-08-04 12:17:39 +00:00
|
|
|
|
|
|
|
#include "backends/meta-backend-types.h"
|
2018-04-20 14:34:32 +00:00
|
|
|
|
2022-09-01 11:51:40 +00:00
|
|
|
#include "meta-dbus-input-mapping.h"
|
|
|
|
|
2018-04-20 14:34:32 +00:00
|
|
|
#define META_TYPE_INPUT_MAPPER (meta_input_mapper_get_type ())
|
|
|
|
|
|
|
|
G_DECLARE_FINAL_TYPE (MetaInputMapper, meta_input_mapper,
|
2022-09-01 11:51:40 +00:00
|
|
|
META, INPUT_MAPPER,
|
|
|
|
MetaDBusInputMappingSkeleton)
|
2018-04-20 14:34:32 +00:00
|
|
|
|
2022-05-27 17:35:01 +00:00
|
|
|
MetaInputMapper * meta_input_mapper_new (MetaBackend *backend);
|
2018-04-20 14:34:32 +00:00
|
|
|
|
|
|
|
void meta_input_mapper_add_device (MetaInputMapper *mapper,
|
2020-08-04 11:33:37 +00:00
|
|
|
ClutterInputDevice *device);
|
2018-04-20 14:34:32 +00:00
|
|
|
void meta_input_mapper_remove_device (MetaInputMapper *mapper,
|
2020-08-04 11:33:37 +00:00
|
|
|
ClutterInputDevice *device);
|
2018-04-20 14:34:32 +00:00
|
|
|
|
2018-04-20 15:47:21 +00:00
|
|
|
ClutterInputDevice *
|
|
|
|
meta_input_mapper_get_logical_monitor_device (MetaInputMapper *mapper,
|
|
|
|
MetaLogicalMonitor *logical_monitor,
|
|
|
|
ClutterInputDeviceType device_type);
|
2019-12-13 14:26:05 +00:00
|
|
|
MetaLogicalMonitor *
|
|
|
|
meta_input_mapper_get_device_logical_monitor (MetaInputMapper *mapper,
|
|
|
|
ClutterInputDevice *device);
|
2018-04-20 15:47:21 +00:00
|
|
|
|
2020-08-04 11:33:37 +00:00
|
|
|
GSettings * meta_input_mapper_get_tablet_settings (MetaInputMapper *mapper,
|
|
|
|
ClutterInputDevice *device);
|