2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-03-21 14:11:17 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2016-03-21 14:11:17 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2021-07-08 23:13:24 +00:00
|
|
|
#include "dpmsinputeventfilter.h"
|
|
|
|
#include "platform.h"
|
|
|
|
#include "abstract_wayland_output.h"
|
2018-05-02 18:47:59 +00:00
|
|
|
#include "wayland_server.h"
|
2021-05-07 07:27:54 +00:00
|
|
|
#include "main.h"
|
2016-03-21 14:11:17 +00:00
|
|
|
|
2021-07-08 23:13:24 +00:00
|
|
|
#include <QGuiApplication>
|
2021-02-22 16:11:06 +00:00
|
|
|
#include <QKeyEvent>
|
2016-03-21 14:11:17 +00:00
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
#include <KWaylandServer/seat_interface.h>
|
2018-05-02 18:47:59 +00:00
|
|
|
|
2016-03-21 14:11:17 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2021-07-08 23:13:24 +00:00
|
|
|
DpmsInputEventFilter::DpmsInputEventFilter()
|
2016-03-21 14:11:17 +00:00
|
|
|
: InputEventFilter()
|
|
|
|
{
|
2021-05-07 07:27:54 +00:00
|
|
|
KSharedConfig::Ptr kwinSettings = kwinApp()->config();
|
|
|
|
m_enableDoubleTap = kwinSettings->group("Wayland").readEntry<bool>("DoubleTapWakeup", true);
|
2016-03-21 14:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DpmsInputEventFilter::~DpmsInputEventFilter() = default;
|
|
|
|
|
|
|
|
bool DpmsInputEventFilter::pointerEvent(QMouseEvent *event, quint32 nativeButton)
|
|
|
|
{
|
|
|
|
Q_UNUSED(event)
|
|
|
|
Q_UNUSED(nativeButton)
|
|
|
|
notify();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DpmsInputEventFilter::wheelEvent(QWheelEvent *event)
|
|
|
|
{
|
|
|
|
Q_UNUSED(event)
|
|
|
|
notify();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DpmsInputEventFilter::keyEvent(QKeyEvent *event)
|
|
|
|
{
|
2021-02-22 15:43:41 +00:00
|
|
|
if (event->type() == QKeyEvent::KeyPress) {
|
|
|
|
notify();
|
|
|
|
}
|
2021-02-22 16:19:39 +00:00
|
|
|
return true;
|
2016-03-21 14:11:17 +00:00
|
|
|
}
|
|
|
|
|
2019-08-11 19:57:45 +00:00
|
|
|
bool DpmsInputEventFilter::touchDown(qint32 id, const QPointF &pos, quint32 time)
|
2016-03-21 14:11:17 +00:00
|
|
|
{
|
|
|
|
Q_UNUSED(pos)
|
|
|
|
Q_UNUSED(time)
|
2021-05-07 07:27:54 +00:00
|
|
|
if (m_enableDoubleTap) {
|
|
|
|
if (m_touchPoints.isEmpty()) {
|
|
|
|
if (!m_doubleTapTimer.isValid()) {
|
|
|
|
// this is the first tap
|
|
|
|
m_doubleTapTimer.start();
|
2016-03-21 14:11:17 +00:00
|
|
|
} else {
|
2021-05-07 07:27:54 +00:00
|
|
|
if (m_doubleTapTimer.elapsed() < qApp->doubleClickInterval()) {
|
|
|
|
m_secondTap = true;
|
|
|
|
} else {
|
|
|
|
// took too long. Let's consider it a new click
|
|
|
|
m_doubleTapTimer.restart();
|
|
|
|
}
|
2016-03-21 14:11:17 +00:00
|
|
|
}
|
2021-05-07 07:27:54 +00:00
|
|
|
} else {
|
|
|
|
// not a double tap
|
|
|
|
m_doubleTapTimer.invalidate();
|
|
|
|
m_secondTap = false;
|
2016-03-21 14:11:17 +00:00
|
|
|
}
|
2021-05-07 07:27:54 +00:00
|
|
|
m_touchPoints << id;
|
2016-03-21 14:11:17 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-11 19:57:45 +00:00
|
|
|
bool DpmsInputEventFilter::touchUp(qint32 id, quint32 time)
|
2016-03-21 14:11:17 +00:00
|
|
|
{
|
2021-05-07 07:27:54 +00:00
|
|
|
if (m_enableDoubleTap) {
|
|
|
|
m_touchPoints.removeAll(id);
|
|
|
|
if (m_touchPoints.isEmpty() && m_doubleTapTimer.isValid() && m_secondTap) {
|
|
|
|
if (m_doubleTapTimer.elapsed() < qApp->doubleClickInterval()) {
|
|
|
|
waylandServer()->seat()->setTimestamp(time);
|
|
|
|
notify();
|
|
|
|
}
|
|
|
|
m_doubleTapTimer.invalidate();
|
|
|
|
m_secondTap = false;
|
2016-03-21 14:11:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-11 19:57:45 +00:00
|
|
|
bool DpmsInputEventFilter::touchMotion(qint32 id, const QPointF &pos, quint32 time)
|
2016-03-21 14:11:17 +00:00
|
|
|
{
|
|
|
|
Q_UNUSED(id)
|
|
|
|
Q_UNUSED(pos)
|
|
|
|
Q_UNUSED(time)
|
|
|
|
// ignore the event
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DpmsInputEventFilter::notify()
|
|
|
|
{
|
2021-07-08 23:13:24 +00:00
|
|
|
const QVector<AbstractOutput *> enabledOutputs = kwinApp()->platform()->enabledOutputs();
|
|
|
|
for (auto it = enabledOutputs.constBegin(), end = enabledOutputs.constEnd(); it != end; it++) {
|
|
|
|
auto waylandOutput = static_cast<AbstractWaylandOutput *>(*it);
|
|
|
|
waylandOutput->setDpmsMode(AbstractWaylandOutput::DpmsMode::On);
|
|
|
|
}
|
2016-03-21 14:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|