2014-08-14 12:43:57 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2014 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 KWIN_LIBINPUT_CONNECTION_H
|
|
|
|
#define KWIN_LIBINPUT_CONNECTION_H
|
|
|
|
|
|
|
|
#include "../input.h"
|
|
|
|
#include <kwinglobals.h>
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QSize>
|
2015-09-02 09:32:26 +00:00
|
|
|
#include <QMutex>
|
|
|
|
#include <QVector>
|
2014-08-14 12:43:57 +00:00
|
|
|
|
|
|
|
class QSocketNotifier;
|
2015-09-02 08:12:18 +00:00
|
|
|
class QThread;
|
2014-08-14 12:43:57 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
namespace LibInput
|
|
|
|
{
|
|
|
|
|
2015-09-02 09:32:26 +00:00
|
|
|
class Event;
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
class Device;
|
2014-08-14 12:43:57 +00:00
|
|
|
class Context;
|
|
|
|
|
|
|
|
class Connection : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
~Connection();
|
|
|
|
|
2016-05-06 07:53:36 +00:00
|
|
|
void setInputConfig(const KSharedConfigPtr &config) {
|
|
|
|
m_config = config;
|
|
|
|
}
|
|
|
|
|
2014-08-14 12:43:57 +00:00
|
|
|
void setup();
|
|
|
|
/**
|
|
|
|
* Sets the screen @p size. This is needed for mapping absolute pointer events to
|
|
|
|
* the screen data.
|
|
|
|
**/
|
|
|
|
void setScreenSize(const QSize &size);
|
|
|
|
|
2015-03-26 15:19:26 +00:00
|
|
|
bool hasKeyboard() const {
|
|
|
|
return m_keyboard > 0;
|
|
|
|
}
|
2016-05-24 10:59:57 +00:00
|
|
|
bool hasAlphaNumericKeyboard() const {
|
|
|
|
return m_alphaNumericKeyboard > 0;
|
|
|
|
}
|
2015-03-26 15:19:26 +00:00
|
|
|
bool hasTouch() const {
|
|
|
|
return m_touch > 0;
|
|
|
|
}
|
|
|
|
bool hasPointer() const {
|
|
|
|
return m_pointer > 0;
|
|
|
|
}
|
|
|
|
|
2015-03-31 07:16:16 +00:00
|
|
|
bool isSuspended() const;
|
|
|
|
|
2015-04-15 15:47:56 +00:00
|
|
|
void deactivate();
|
|
|
|
|
2015-09-02 09:32:26 +00:00
|
|
|
void processEvents();
|
|
|
|
|
2016-05-06 10:28:07 +00:00
|
|
|
void toggleTouchpads();
|
|
|
|
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
QVector<Device*> devices() const {
|
|
|
|
return m_devices;
|
|
|
|
}
|
|
|
|
|
2014-08-14 12:43:57 +00:00
|
|
|
Q_SIGNALS:
|
2016-05-24 08:57:57 +00:00
|
|
|
void keyChanged(quint32 key, KWin::InputRedirection::KeyboardKeyState, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pointerButtonChanged(quint32 button, KWin::InputRedirection::PointerButtonState state, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pointerMotionAbsolute(QPointF orig, QPointF screen, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pointerMotion(QPointF delta, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pointerAxisChanged(KWin::InputRedirection::PointerAxis axis, qreal delta, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void touchFrame(KWin::LibInput::Device *device);
|
|
|
|
void touchCanceled(KWin::LibInput::Device *device);
|
|
|
|
void touchDown(qint32 id, const QPointF &absolutePos, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void touchUp(qint32 id, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void touchMotion(qint32 id, const QPointF &absolutePos, quint32 time, KWin::LibInput::Device *device);
|
2015-03-26 15:19:26 +00:00
|
|
|
void hasKeyboardChanged(bool);
|
2016-05-24 10:59:57 +00:00
|
|
|
void hasAlphaNumericKeyboardChanged(bool);
|
2015-03-26 15:19:26 +00:00
|
|
|
void hasPointerChanged(bool);
|
|
|
|
void hasTouchChanged(bool);
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
void deviceAdded(KWin::LibInput::Device *);
|
|
|
|
void deviceRemoved(KWin::LibInput::Device *);
|
2016-08-05 12:35:33 +00:00
|
|
|
void swipeGestureBegin(int fingerCount, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void swipeGestureUpdate(const QSizeF &delta, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void swipeGestureEnd(quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void swipeGestureCancelled(quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pinchGestureBegin(int fingerCount, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pinchGestureUpdate(qreal scale, qreal angleDelta, const QSizeF &delta, quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pinchGestureEnd(quint32 time, KWin::LibInput::Device *device);
|
|
|
|
void pinchGestureCancelled(quint32 time, KWin::LibInput::Device *device);
|
2014-08-14 12:43:57 +00:00
|
|
|
|
2015-09-02 09:32:26 +00:00
|
|
|
void eventsRead();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void doSetup();
|
2016-05-06 07:53:36 +00:00
|
|
|
void slotKGlobalSettingsNotifyChange(int type, int arg);
|
2015-09-02 09:32:26 +00:00
|
|
|
|
2014-08-14 12:43:57 +00:00
|
|
|
private:
|
|
|
|
Connection(Context *input, QObject *parent = nullptr);
|
|
|
|
void handleEvent();
|
2016-05-06 07:53:36 +00:00
|
|
|
void applyDeviceConfig(Device *device);
|
2014-08-14 12:43:57 +00:00
|
|
|
Context *m_input;
|
|
|
|
QSocketNotifier *m_notifier;
|
|
|
|
QSize m_size;
|
2015-03-26 15:19:26 +00:00
|
|
|
int m_keyboard = 0;
|
2016-05-24 10:59:57 +00:00
|
|
|
int m_alphaNumericKeyboard = 0;
|
2015-03-26 15:19:26 +00:00
|
|
|
int m_pointer = 0;
|
|
|
|
int m_touch = 0;
|
2015-03-31 07:16:16 +00:00
|
|
|
bool m_keyboardBeforeSuspend = false;
|
2016-05-24 10:59:57 +00:00
|
|
|
bool m_alphaNumericKeyboardBeforeSuspend = false;
|
2015-03-31 07:16:16 +00:00
|
|
|
bool m_pointerBeforeSuspend = false;
|
|
|
|
bool m_touchBeforeSuspend = false;
|
2015-09-02 09:32:26 +00:00
|
|
|
QMutex m_mutex;
|
|
|
|
QVector<Event*> m_eventQueue;
|
|
|
|
bool wasSuspended = false;
|
[libinput] Add a wrapper class Device for a libinput_device
Summary:
The Device class wraps all the information we can get from libinput
about the device, like whether it's a keyboard, pointer, touch, etc.
In addition some more information is queried to figure out how "useful"
a device is. For a keyboard all alphanumeric keys are checked whether
they exist, for a pointer all (normal) buttons are queried.
All the information is exposed as Q_PROPERTY and used by the
DebugConsole. The DebugConsole gained a new tab "Input Devices" which
renders all devices and their properties in a tree view. When plugging
in/out a device, the model gets reset, so it's always up to date.
The new Device class can be used in future to configure the device,
e.g. disable touch pad, set mouse acceleration, etc.
Reviewers: #plasma
Subscribers: plasma-devel
Projects: #plasma
Differential Revision: https://phabricator.kde.org/D1538
2016-05-04 11:42:26 +00:00
|
|
|
QVector<Device*> m_devices;
|
2016-05-06 07:53:36 +00:00
|
|
|
KSharedConfigPtr m_config;
|
2016-05-06 10:28:07 +00:00
|
|
|
bool m_touchpadsEnabled = true;
|
2014-08-14 12:43:57 +00:00
|
|
|
|
|
|
|
KWIN_SINGLETON(Connection)
|
2015-09-02 08:12:18 +00:00
|
|
|
static QThread *s_thread;
|
2014-08-14 12:43:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|