You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
/* |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
SPDX-FileCopyrightText: 2016, 2017 Martin Gräßlin <mgraesslin@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
#include "keyboard_repeat.h" |
|
#include "input_event.h" |
|
#include "keyboard_input.h" |
|
#include "wayland/keyboard_interface.h" |
|
#include "wayland/seat_interface.h" |
|
#include "wayland_server.h" |
|
|
|
#include <QTimer> |
|
|
|
namespace KWin |
|
{ |
|
|
|
KeyboardRepeat::KeyboardRepeat(Xkb *xkb) |
|
: QObject() |
|
, m_timer(new QTimer(this)) |
|
, m_xkb(xkb) |
|
{ |
|
connect(m_timer, &QTimer::timeout, this, &KeyboardRepeat::handleKeyRepeat); |
|
} |
|
|
|
KeyboardRepeat::~KeyboardRepeat() = default; |
|
|
|
void KeyboardRepeat::handleKeyRepeat() |
|
{ |
|
// TODO: don't depend on WaylandServer |
|
if (waylandServer()->seat()->keyboard()->keyRepeatRate() != 0) { |
|
m_timer->setInterval(1000 / waylandServer()->seat()->keyboard()->keyRepeatRate()); |
|
} |
|
// TODO: better time |
|
Q_EMIT keyRepeat(m_key, m_time); |
|
} |
|
|
|
void KeyboardRepeat::keyEvent(KeyEvent *event) |
|
{ |
|
if (event->isAutoRepeat()) { |
|
return; |
|
} |
|
const quint32 key = event->nativeScanCode(); |
|
if (event->type() == QEvent::KeyPress) { |
|
// TODO: don't get these values from WaylandServer |
|
if (m_xkb->shouldKeyRepeat(key) && waylandServer()->seat()->keyboard()->keyRepeatDelay() != 0) { |
|
m_timer->setInterval(waylandServer()->seat()->keyboard()->keyRepeatDelay()); |
|
m_key = key; |
|
m_time = event->timestamp(); |
|
m_timer->start(); |
|
} |
|
} else if (event->type() == QEvent::KeyRelease) { |
|
if (key == m_key) { |
|
m_timer->stop(); |
|
} |
|
} |
|
} |
|
|
|
}
|
|
|