ac2f41c86d
Summary: This change adds support for the switch devices introduces with libinput 1.7 (lid) and 1.9 (tablet mode). So far it's not yet used internally in KWin, but only exposed through the Device and Events. As KWin currently only requires libinput 1.5 and we are rather late in the release cycle the new functionality is ifdef'ed. The requirement will be raised once master is 5.13. It is already available on build.kde.org, but e.g. Neon only has 1.6. The switch events are interesting as they report whether the lid is closed (might be interesting for e.g. powerdevil) and whether a convertible is in tablet mode (supported for e.g. Lenovo Yogas with recent kernel). This can be used by KWin internally to enable/disable the virtual keyboard. And can be exposed globally to switch to Plasma Mobile shell in future. Test Plan: Only through test case as my Lenovo Yoga uses Neon which has a too old libinput Reviewers: #kwin, #plasma Subscribers: plasma-devel, kwin Tags: #plasma Differential Revision: https://phabricator.kde.org/D9516
159 lines
5.4 KiB
C++
159 lines
5.4 KiB
C++
/********************************************************************
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
Copyright (C) 2016 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
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/>.
|
|
*********************************************************************/
|
|
#ifndef MOCK_LIBINPUT_H
|
|
#define MOCK_LIBINPUT_H
|
|
#include <libinput.h>
|
|
|
|
#include <QByteArray>
|
|
#include <QPointF>
|
|
#include <QSizeF>
|
|
#include <QVector>
|
|
|
|
#include <array>
|
|
|
|
struct libinput_device {
|
|
bool keyboard = false;
|
|
bool pointer = false;
|
|
bool touch = false;
|
|
bool tabletTool = false;
|
|
bool gestureSupported = false;
|
|
bool switchDevice = false;
|
|
QByteArray name;
|
|
QByteArray sysName = QByteArrayLiteral("event0");
|
|
QByteArray outputName;
|
|
quint32 product = 0;
|
|
quint32 vendor = 0;
|
|
int tapFingerCount = 0;
|
|
QSizeF deviceSize;
|
|
int deviceSizeReturnValue = 0;
|
|
bool tapEnabledByDefault = false;
|
|
bool tapToClick = false;
|
|
bool tapAndDragEnabledByDefault = false;
|
|
bool tapAndDrag = false;
|
|
bool tapDragLockEnabledByDefault = false;
|
|
bool tapDragLock = false;
|
|
bool supportsDisableWhileTyping = false;
|
|
bool supportsPointerAcceleration = false;
|
|
bool supportsLeftHanded = false;
|
|
bool supportsCalibrationMatrix = false;
|
|
bool supportsDisableEvents = false;
|
|
bool supportsDisableEventsOnExternalMouse = false;
|
|
bool supportsMiddleEmulation = false;
|
|
bool supportsNaturalScroll = false;
|
|
quint32 supportedScrollMethods = 0;
|
|
bool middleEmulationEnabledByDefault = false;
|
|
bool middleEmulation = false;
|
|
enum libinput_config_tap_button_map defaultTapButtonMap = LIBINPUT_CONFIG_TAP_MAP_LRM;
|
|
enum libinput_config_tap_button_map tapButtonMap = LIBINPUT_CONFIG_TAP_MAP_LRM;
|
|
int setTapButtonMapReturnValue = 0;
|
|
enum libinput_config_dwt_state disableWhileTypingEnabledByDefault = LIBINPUT_CONFIG_DWT_DISABLED;
|
|
enum libinput_config_dwt_state disableWhileTyping = LIBINPUT_CONFIG_DWT_DISABLED;
|
|
int setDisableWhileTypingReturnValue = 0;
|
|
qreal defaultPointerAcceleration = 0.0;
|
|
qreal pointerAcceleration = 0.0;
|
|
int setPointerAccelerationReturnValue = 0;
|
|
bool leftHandedEnabledByDefault = false;
|
|
bool leftHanded = false;
|
|
int setLeftHandedReturnValue = 0;
|
|
bool naturalScrollEnabledByDefault = false;
|
|
bool naturalScroll = false;
|
|
int setNaturalScrollReturnValue = 0;
|
|
enum libinput_config_scroll_method defaultScrollMethod = LIBINPUT_CONFIG_SCROLL_NO_SCROLL;
|
|
enum libinput_config_scroll_method scrollMethod = LIBINPUT_CONFIG_SCROLL_NO_SCROLL;
|
|
int setScrollMethodReturnValue = 0;
|
|
quint32 defaultScrollButton = 0;
|
|
quint32 scrollButton = 0;
|
|
int setScrollButtonReturnValue = 0;
|
|
Qt::MouseButtons supportedButtons;
|
|
QVector<quint32> keys;
|
|
bool enabled = true;
|
|
int setEnableModeReturnValue = 0;
|
|
int setTapToClickReturnValue = 0;
|
|
int setTapAndDragReturnValue = 0;
|
|
int setTapDragLockReturnValue = 0;
|
|
int setMiddleEmulationReturnValue = 0;
|
|
quint32 supportedPointerAccelerationProfiles = 0;
|
|
enum libinput_config_accel_profile defaultPointerAccelerationProfile = LIBINPUT_CONFIG_ACCEL_PROFILE_NONE;
|
|
enum libinput_config_accel_profile pointerAccelerationProfile = LIBINPUT_CONFIG_ACCEL_PROFILE_NONE;
|
|
bool setPointerAccelerationProfileReturnValue = 0;
|
|
std::array<float, 6> defaultCalibrationMatrix{{1.0f, 0.0f, 0.0f,
|
|
0.0f, 1.0f, 0.0f}};
|
|
std::array<float, 6> calibrationMatrix{{1.0f, 0.0f, 0.0f,
|
|
0.0f, 1.0f, 0.0f}};
|
|
bool defaultCalibrationMatrixIsIdentity = true;
|
|
|
|
bool lidSwitch = false;
|
|
bool tabletModeSwitch = false;
|
|
};
|
|
|
|
struct libinput_event {
|
|
libinput_device *device = nullptr;
|
|
libinput_event_type type = LIBINPUT_EVENT_NONE;
|
|
quint32 time = 0;
|
|
};
|
|
|
|
struct libinput_event_keyboard : libinput_event {
|
|
libinput_event_keyboard() {
|
|
type = LIBINPUT_EVENT_KEYBOARD_KEY;
|
|
}
|
|
libinput_key_state state = LIBINPUT_KEY_STATE_RELEASED;
|
|
quint32 key = 0;
|
|
};
|
|
|
|
struct libinput_event_pointer : libinput_event {
|
|
libinput_button_state buttonState = LIBINPUT_BUTTON_STATE_RELEASED;
|
|
quint32 button = 0;
|
|
bool verticalAxis = false;
|
|
bool horizontalAxis = false;
|
|
qreal horizontalAxisValue = 0.0;
|
|
qreal verticalAxisValue = 0.0;
|
|
QSizeF delta;
|
|
QPointF absolutePos;
|
|
};
|
|
|
|
struct libinput_event_touch : libinput_event {
|
|
qint32 slot = -1;
|
|
QPointF absolutePos;
|
|
};
|
|
|
|
struct libinput_event_gesture : libinput_event {
|
|
int fingerCount = 0;
|
|
bool cancelled = false;
|
|
QSizeF delta = QSizeF(0, 0);
|
|
qreal scale = 0.0;
|
|
qreal angleDelta = 0.0;
|
|
};
|
|
|
|
struct libinput_event_switch : libinput_event {
|
|
enum class State {
|
|
Off,
|
|
On
|
|
};
|
|
State state = State::Off;
|
|
quint64 timeMicroseconds = 0;
|
|
};
|
|
|
|
struct libinput {
|
|
int refCount = 1;
|
|
QByteArray seat;
|
|
int assignSeatRetVal = 0;
|
|
};
|
|
|
|
#endif
|