2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-04-29 13:05:03 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-04-29 13:05:03 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-04-29 13:05:03 +00:00
|
|
|
#include "virtualkeyboard.h"
|
2017-10-06 19:22:50 +00:00
|
|
|
#include "virtualkeyboard_dbus.h"
|
2016-08-03 06:31:58 +00:00
|
|
|
#include "input.h"
|
2017-08-16 19:18:01 +00:00
|
|
|
#include "keyboard_input.h"
|
2016-04-29 13:05:03 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "screens.h"
|
|
|
|
#include "wayland_server.h"
|
|
|
|
#include "workspace.h"
|
2020-02-06 09:33:23 +00:00
|
|
|
#include "screenlockerwatcher.h"
|
2016-04-29 13:05:03 +00:00
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
#include <KWaylandServer/display.h>
|
|
|
|
#include <KWaylandServer/seat_interface.h>
|
2020-09-21 07:35:34 +00:00
|
|
|
#include <KWaylandServer/textinput_v2_interface.h>
|
2020-09-25 06:51:04 +00:00
|
|
|
#include <KWaylandServer/textinput_v3_interface.h>
|
2020-04-29 15:18:41 +00:00
|
|
|
#include <KWaylandServer/surface_interface.h>
|
2020-07-11 16:40:28 +00:00
|
|
|
#include <KWaylandServer/inputmethod_v1_interface.h>
|
2016-04-29 13:05:03 +00:00
|
|
|
|
|
|
|
#include <KStatusNotifierItem>
|
|
|
|
#include <KLocalizedString>
|
|
|
|
|
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusPendingCall>
|
|
|
|
#include <QDBusMessage>
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
#include <linux/input-event-codes.h>
|
|
|
|
#include <xkbcommon/xkbcommon-keysyms.h>
|
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
using namespace KWaylandServer;
|
2016-04-29 13:05:03 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
KWIN_SINGLETON_FACTORY(VirtualKeyboard)
|
|
|
|
|
|
|
|
VirtualKeyboard::VirtualKeyboard(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
|
|
|
// this is actually too late. Other processes are started before init,
|
|
|
|
// so might miss the availability of text input
|
|
|
|
// but without Workspace we don't have the window listed at all
|
|
|
|
connect(kwinApp(), &Application::workspaceCreated, this, &VirtualKeyboard::init);
|
|
|
|
}
|
|
|
|
|
|
|
|
VirtualKeyboard::~VirtualKeyboard() = default;
|
|
|
|
|
|
|
|
void VirtualKeyboard::init()
|
|
|
|
{
|
2020-02-06 09:33:23 +00:00
|
|
|
connect(ScreenLockerWatcher::self(), &ScreenLockerWatcher::aboutToLock, this, &VirtualKeyboard::hide);
|
|
|
|
|
2016-04-29 13:05:03 +00:00
|
|
|
if (waylandServer()) {
|
2016-08-03 06:31:58 +00:00
|
|
|
m_enabled = !input()->hasAlphaNumericKeyboard();
|
2018-12-10 10:57:24 +00:00
|
|
|
qCDebug(KWIN_VIRTUALKEYBOARD) << "enabled by default: " << m_enabled;
|
2016-08-03 06:31:58 +00:00
|
|
|
connect(input(), &InputRedirection::hasAlphaNumericKeyboardChanged, this,
|
|
|
|
[this] (bool set) {
|
2018-12-10 10:57:24 +00:00
|
|
|
qCDebug(KWIN_VIRTUALKEYBOARD) << "AlphaNumeric Keyboard changed:" << set << "toggling VirtualKeyboard.";
|
2016-08-03 06:31:58 +00:00
|
|
|
setEnabled(!set);
|
2016-04-29 13:05:03 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-12-10 10:57:24 +00:00
|
|
|
qCDebug(KWIN_VIRTUALKEYBOARD) << "Registering the SNI";
|
2016-04-29 13:05:03 +00:00
|
|
|
m_sni = new KStatusNotifierItem(QStringLiteral("kwin-virtual-keyboard"), this);
|
2017-01-26 19:33:59 +00:00
|
|
|
m_sni->setStandardActionsEnabled(false);
|
2016-04-29 13:05:03 +00:00
|
|
|
m_sni->setCategory(KStatusNotifierItem::Hardware);
|
|
|
|
m_sni->setStatus(KStatusNotifierItem::Passive);
|
|
|
|
m_sni->setTitle(i18n("Virtual Keyboard"));
|
|
|
|
updateSni();
|
|
|
|
connect(m_sni, &KStatusNotifierItem::activateRequested, this,
|
|
|
|
[this] {
|
|
|
|
setEnabled(!m_enabled);
|
|
|
|
}
|
|
|
|
);
|
2017-10-06 19:22:50 +00:00
|
|
|
connect(this, &VirtualKeyboard::enabledChanged, this, &VirtualKeyboard::updateSni);
|
|
|
|
|
|
|
|
auto dbus = new VirtualKeyboardDBus(this);
|
2018-12-10 10:57:24 +00:00
|
|
|
qCDebug(KWIN_VIRTUALKEYBOARD) << "Registering the DBus interface";
|
2017-10-06 19:22:50 +00:00
|
|
|
dbus->setEnabled(m_enabled);
|
|
|
|
connect(dbus, &VirtualKeyboardDBus::activateRequested, this, &VirtualKeyboard::setEnabled);
|
|
|
|
connect(this, &VirtualKeyboard::enabledChanged, dbus, &VirtualKeyboardDBus::setEnabled);
|
2020-08-11 11:45:56 +00:00
|
|
|
connect(input(), &InputRedirection::keyStateChanged, this, &VirtualKeyboard::hide);
|
2016-04-29 13:05:03 +00:00
|
|
|
|
|
|
|
if (waylandServer()) {
|
2020-09-21 07:35:34 +00:00
|
|
|
waylandServer()->display()->createTextInputManagerV2();
|
2020-09-25 06:51:04 +00:00
|
|
|
waylandServer()->display()->createTextInputManagerV3();
|
|
|
|
|
2020-09-18 03:17:15 +00:00
|
|
|
connect(workspace(), &Workspace::clientAdded, this, &VirtualKeyboard::clientAdded);
|
2020-09-23 10:02:54 +00:00
|
|
|
connect(waylandServer()->seat(), &SeatInterface::focusedTextInputSurfaceChanged, this, &VirtualKeyboard::handleFocusedSurfaceChanged);
|
|
|
|
|
|
|
|
TextInputV2Interface *textInputV2 = waylandServer()->seat()->textInputV2();
|
|
|
|
connect(textInputV2, &TextInputV2Interface::requestShowInputPanel, this, &VirtualKeyboard::show);
|
|
|
|
connect(textInputV2, &TextInputV2Interface::requestHideInputPanel, this, &VirtualKeyboard::hide);
|
|
|
|
connect(textInputV2, &TextInputV2Interface::surroundingTextChanged, this, &VirtualKeyboard::surroundingTextChanged);
|
|
|
|
connect(textInputV2, &TextInputV2Interface::contentTypeChanged, this, &VirtualKeyboard::contentTypeChanged);
|
|
|
|
connect(textInputV2, &TextInputV2Interface::requestReset, this, &VirtualKeyboard::requestReset);
|
2020-09-25 06:51:04 +00:00
|
|
|
connect(textInputV2, &TextInputV2Interface::enabledChanged, this, &VirtualKeyboard::textInputInterfaceV2EnabledChanged);
|
2020-09-23 10:02:54 +00:00
|
|
|
connect(textInputV2, &TextInputV2Interface::stateCommitted, this, &VirtualKeyboard::stateCommitted);
|
2020-09-25 06:51:04 +00:00
|
|
|
|
|
|
|
TextInputV3Interface *textInputV3 = waylandServer()->seat()->textInputV3();
|
|
|
|
connect(textInputV3, &TextInputV3Interface::enabledChanged, this, &VirtualKeyboard::textInputInterfaceV3EnabledChanged);
|
|
|
|
connect(textInputV3, &TextInputV3Interface::surroundingTextChanged, this, &VirtualKeyboard::surroundingTextChanged);
|
|
|
|
connect(textInputV3, &TextInputV3Interface::contentTypeChanged, this, &VirtualKeyboard::contentTypeChanged);
|
|
|
|
connect(textInputV3, &TextInputV3Interface::stateCommitted, this, &VirtualKeyboard::stateCommitted);
|
2016-04-29 13:05:03 +00:00
|
|
|
}
|
2020-07-27 19:30:49 +00:00
|
|
|
}
|
virtualkeyboard: resize the focused window to make room for the keyboard
Summary:
alternative approach: try to resize the winidow to make room for the keyboard.
the new input wayland protocol doesn't have anymore the overlap rectangle (and it would not be going to work with qwidget apps anyways)
in the future will probably be needed anextension to the input protocol v3 which partially gets back this, tough window resizing is needed regardless
what's missing: the resize should be "temporary" and the window should be restored to its previous geometry when the keyboard closes
Test Plan: tested with test QML code
Reviewers: #plasma, #kwin, bshah, graesslin, romangg, davidedmundson
Reviewed By: #plasma, #kwin, romangg, davidedmundson
Subscribers: nicolasfella, mart, kwin, davidedmundson, graesslin
Tags: #kwin
Maniphest Tasks: T9815
Differential Revision: https://phabricator.kde.org/D18818
2019-03-20 10:04:51 +00:00
|
|
|
|
2020-07-27 19:30:49 +00:00
|
|
|
void VirtualKeyboard::show()
|
|
|
|
{
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-27 19:30:49 +00:00
|
|
|
if (t) {
|
2020-09-01 08:58:46 +00:00
|
|
|
//FIXME: this shouldn't be necessary and causes double emits?
|
2020-07-27 19:30:49 +00:00
|
|
|
Q_EMIT t->enabledChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::hide()
|
|
|
|
{
|
|
|
|
waylandServer()->inputMethod()->sendDeactivate();
|
|
|
|
updateInputPanelState();
|
2016-04-29 13:05:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 03:17:15 +00:00
|
|
|
void VirtualKeyboard::clientAdded(AbstractClient* client)
|
|
|
|
{
|
|
|
|
if (!client->isInputMethod()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_inputClient = client;
|
|
|
|
auto refreshFrame = [this] {
|
|
|
|
if (!m_trackedClient) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_inputClient && !m_inputClient->inputGeometry().isEmpty()) {
|
|
|
|
m_trackedClient->setVirtualKeyboardGeometry(m_inputClient->inputGeometry());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
connect(client->surface(), &SurfaceInterface::inputChanged, this, refreshFrame);
|
|
|
|
connect(client, &QObject::destroyed, this, [this] {
|
|
|
|
if (m_trackedClient) {
|
|
|
|
m_trackedClient->setVirtualKeyboardGeometry({});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
connect(m_inputClient, &AbstractClient::frameGeometryChanged, this, refreshFrame);
|
|
|
|
}
|
|
|
|
|
2020-09-23 10:02:54 +00:00
|
|
|
void VirtualKeyboard::handleFocusedSurfaceChanged()
|
2020-09-18 03:17:15 +00:00
|
|
|
{
|
2020-09-23 10:02:54 +00:00
|
|
|
SurfaceInterface *focusedSurface = waylandServer()->seat()->focusedTextInputSurface();
|
|
|
|
if (focusedSurface) {
|
|
|
|
AbstractClient *focusedClient = waylandServer()->findClient(focusedSurface);
|
2020-09-18 03:17:15 +00:00
|
|
|
// Reset the old client virtual keybaord geom if necessary
|
|
|
|
// Old and new clients could be the same if focus moves between subsurfaces
|
2020-09-23 10:02:54 +00:00
|
|
|
if (m_trackedClient != focusedClient) {
|
2020-09-18 03:17:15 +00:00
|
|
|
if (m_trackedClient) {
|
|
|
|
m_trackedClient->setVirtualKeyboardGeometry(QRect());
|
|
|
|
}
|
2020-09-23 10:02:54 +00:00
|
|
|
m_trackedClient = focusedClient;
|
2020-09-18 03:17:15 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
waylandServer()->inputMethod()->sendDeactivate();
|
|
|
|
}
|
|
|
|
updateInputPanelState();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::surroundingTextChanged()
|
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
2020-09-18 03:17:15 +00:00
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
if (!inputContext) {
|
|
|
|
return;
|
|
|
|
}
|
2020-09-25 06:51:04 +00:00
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
inputContext->sendSurroundingText(t2->surroundingText(), t2->surroundingTextCursorPosition(), t2->surroundingTextSelectionAnchor());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (t3 && t3->isEnabled()) {
|
|
|
|
inputContext->sendSurroundingText(t3->surroundingText(), t3->surroundingTextCursorPosition(), t3->surroundingTextSelectionAnchor());
|
|
|
|
return;
|
|
|
|
}
|
2020-09-18 03:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::contentTypeChanged()
|
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
2020-09-18 03:17:15 +00:00
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
if (!inputContext) {
|
|
|
|
return;
|
|
|
|
}
|
2020-09-25 06:51:04 +00:00
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
inputContext->sendContentType(t2->contentHints(), t2->contentPurpose());
|
|
|
|
}
|
|
|
|
if (t3 && t3->isEnabled()) {
|
|
|
|
inputContext->sendContentType(t3->contentHints(), t3->contentPurpose());
|
|
|
|
}
|
2020-09-18 03:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::requestReset()
|
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
2020-09-18 03:17:15 +00:00
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
if (!inputContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
inputContext->sendReset();
|
2020-09-25 06:51:04 +00:00
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
inputContext->sendSurroundingText(t2->surroundingText(), t2->surroundingTextCursorPosition(), t2->surroundingTextSelectionAnchor());
|
|
|
|
inputContext->sendPreferredLanguage(t2->preferredLanguage());
|
|
|
|
inputContext->sendContentType(t2->contentHints(), t2->contentPurpose());
|
|
|
|
}
|
2020-09-18 03:17:15 +00:00
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
void VirtualKeyboard::textInputInterfaceV2EnabledChanged()
|
2020-09-18 03:17:15 +00:00
|
|
|
{
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-09-18 03:17:15 +00:00
|
|
|
if (t->isEnabled()) {
|
|
|
|
//FIXME This sendDeactivate shouldn't be necessary?
|
|
|
|
waylandServer()->inputMethod()->sendDeactivate();
|
|
|
|
waylandServer()->inputMethod()->sendActivate();
|
|
|
|
adoptInputMethodContext();
|
|
|
|
} else {
|
|
|
|
waylandServer()->inputMethod()->sendDeactivate();
|
|
|
|
hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
void VirtualKeyboard::textInputInterfaceV3EnabledChanged()
|
|
|
|
{
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
|
|
|
if (t3->isEnabled()) {
|
|
|
|
waylandServer()->inputMethod()->sendActivate();
|
|
|
|
adoptInputMethodContext();
|
|
|
|
} else {
|
|
|
|
waylandServer()->inputMethod()->sendDeactivate();
|
|
|
|
// reset value of preedit when textinput is disabled
|
|
|
|
preedit.text = QString();
|
|
|
|
preedit.begin = 0;
|
|
|
|
preedit.end = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-18 03:17:15 +00:00
|
|
|
void VirtualKeyboard::stateCommitted(uint32_t serial)
|
|
|
|
{
|
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
if (!inputContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
inputContext->sendCommitState(serial);
|
|
|
|
}
|
|
|
|
|
2016-04-29 13:05:03 +00:00
|
|
|
void VirtualKeyboard::setEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
if (m_enabled == enabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_enabled = enabled;
|
2017-10-06 19:22:50 +00:00
|
|
|
emit enabledChanged(m_enabled);
|
2016-04-29 13:05:03 +00:00
|
|
|
|
|
|
|
// send OSD message
|
|
|
|
QDBusMessage msg = QDBusMessage::createMethodCall(
|
|
|
|
QStringLiteral("org.kde.plasmashell"),
|
|
|
|
QStringLiteral("/org/kde/osdService"),
|
|
|
|
QStringLiteral("org.kde.osdService"),
|
|
|
|
QStringLiteral("virtualKeyboardEnabledChanged")
|
|
|
|
);
|
|
|
|
msg.setArguments({enabled});
|
|
|
|
QDBusConnection::sessionBus().asyncCall(msg);
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
static quint32 keysymToKeycode(quint32 sym)
|
|
|
|
{
|
|
|
|
switch(sym) {
|
|
|
|
case XKB_KEY_BackSpace:
|
|
|
|
return KEY_BACKSPACE;
|
|
|
|
case XKB_KEY_Return:
|
|
|
|
return KEY_ENTER;
|
|
|
|
case XKB_KEY_Left:
|
|
|
|
return KEY_LEFT;
|
|
|
|
case XKB_KEY_Right:
|
|
|
|
return KEY_RIGHT;
|
|
|
|
case XKB_KEY_Up:
|
|
|
|
return KEY_UP;
|
|
|
|
case XKB_KEY_Down:
|
|
|
|
return KEY_DOWN;
|
|
|
|
default:
|
|
|
|
return KEY_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-11 16:40:28 +00:00
|
|
|
static void keysymReceived(quint32 serial, quint32 time, quint32 sym, bool pressed, Qt::KeyboardModifiers modifiers)
|
|
|
|
{
|
|
|
|
Q_UNUSED(serial)
|
|
|
|
Q_UNUSED(time)
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
if (pressed) {
|
|
|
|
t2->keysymPressed(sym, modifiers);
|
|
|
|
} else {
|
|
|
|
t2->keysymReleased(sym, modifiers);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
|
|
|
if (t3 && t3->isEnabled()) {
|
2020-07-11 16:40:28 +00:00
|
|
|
if (pressed) {
|
2020-09-25 06:51:04 +00:00
|
|
|
waylandServer()->seat()->keyPressed(keysymToKeycode(sym));
|
2020-07-11 16:40:28 +00:00
|
|
|
} else {
|
2020-09-25 06:51:04 +00:00
|
|
|
waylandServer()->seat()->keyReleased(keysymToKeycode(sym));
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
2020-09-25 06:51:04 +00:00
|
|
|
return;
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void commitString(qint32 serial, const QString &text)
|
|
|
|
{
|
|
|
|
Q_UNUSED(serial)
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
t2->commitString(text.toUtf8());
|
|
|
|
t2->preEdit({}, {});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
|
|
|
if (t3 && t3->isEnabled()) {
|
|
|
|
t3->commitString(text.toUtf8());
|
|
|
|
t3->done();
|
|
|
|
return;
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
static void deleteSurroundingText(int32_t index, uint32_t length)
|
2020-07-11 16:40:28 +00:00
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
t2->deleteSurroundingText(index, length);
|
|
|
|
}
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
|
|
|
if (t3 && t3->isEnabled()) {
|
|
|
|
t3->deleteSurroundingText(index, length);
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
static void setCursorPosition(qint32 index, qint32 anchor)
|
2020-07-11 16:40:28 +00:00
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
t2->setCursorPosition(index, anchor);
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
static void setLanguage(uint32_t serial, const QString &language)
|
2020-07-11 16:40:28 +00:00
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
Q_UNUSED(serial)
|
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
t2->setLanguage(language.toUtf8());
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
static void setTextDirection(uint32_t serial, Qt::LayoutDirection direction)
|
2020-07-11 16:40:28 +00:00
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
Q_UNUSED(serial)
|
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
t2->setTextDirection(direction);
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
void VirtualKeyboard::setPreeditCursor(qint32 index)
|
2020-07-11 16:40:28 +00:00
|
|
|
{
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
t2->setPreEditCursor(index);
|
|
|
|
}
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
|
|
|
if (t3 && t3->isEnabled()) {
|
|
|
|
preedit.begin = index;
|
|
|
|
preedit.end = index;
|
|
|
|
t3->sendPreEditString(preedit.text, preedit.begin, preedit.end);
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
|
|
|
|
void VirtualKeyboard::setPreeditString(uint32_t serial, const QString &text, const QString &commit)
|
2020-07-11 16:40:28 +00:00
|
|
|
{
|
|
|
|
Q_UNUSED(serial)
|
2020-09-25 06:51:04 +00:00
|
|
|
auto t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
t2->preEdit(text.toUtf8(), commit.toUtf8());
|
|
|
|
}
|
|
|
|
auto t3 = waylandServer()->seat()->textInputV3();
|
|
|
|
if (t3 && t3->isEnabled()) {
|
|
|
|
preedit.text = text;
|
|
|
|
t3->sendPreEditString(preedit.text, preedit.begin, preedit.end);
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::adoptInputMethodContext()
|
|
|
|
{
|
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
TextInputV2Interface *t2 = waylandServer()->seat()->textInputV2();
|
|
|
|
TextInputV3Interface *t3 = waylandServer()->seat()->textInputV3();
|
|
|
|
|
|
|
|
if (t2 && t2->isEnabled()) {
|
|
|
|
inputContext->sendSurroundingText(t2->surroundingText(), t2->surroundingTextCursorPosition(), t2->surroundingTextSelectionAnchor());
|
|
|
|
inputContext->sendPreferredLanguage(t2->preferredLanguage());
|
|
|
|
inputContext->sendContentType(t2->contentHints(), t2->contentPurpose());
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::language, waylandServer(), &setLanguage);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::textDirection, waylandServer(), &setTextDirection);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t3 && t3->isEnabled()) {
|
|
|
|
inputContext->sendSurroundingText(t3->surroundingText(), t3->surroundingTextCursorPosition(), t3->surroundingTextSelectionAnchor());
|
|
|
|
inputContext->sendContentType(t3->contentHints(), t3->contentPurpose());
|
|
|
|
}
|
2020-07-11 16:40:28 +00:00
|
|
|
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::keysym, waylandServer(), &keysymReceived);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::commitString, waylandServer(), &commitString);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::deleteSurroundingText, waylandServer(), &deleteSurroundingText);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::cursorPosition, waylandServer(), &setCursorPosition);
|
2020-09-25 06:51:04 +00:00
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::preeditString, this, &VirtualKeyboard::setPreeditString);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::preeditCursor, this, &VirtualKeyboard::setPreeditCursor);
|
2020-07-11 16:40:28 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 13:05:03 +00:00
|
|
|
void VirtualKeyboard::updateSni()
|
|
|
|
{
|
|
|
|
if (!m_sni) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (m_enabled) {
|
|
|
|
m_sni->setIconByName(QStringLiteral("input-keyboard-virtual-on"));
|
2019-03-19 20:54:21 +00:00
|
|
|
m_sni->setTitle(i18n("Virtual Keyboard: enabled"));
|
2016-04-29 13:05:03 +00:00
|
|
|
} else {
|
|
|
|
m_sni->setIconByName(QStringLiteral("input-keyboard-virtual-off"));
|
2019-03-19 20:54:21 +00:00
|
|
|
m_sni->setTitle(i18n("Virtual Keyboard: disabled"));
|
2016-04-29 13:05:03 +00:00
|
|
|
}
|
2019-03-19 20:54:21 +00:00
|
|
|
m_sni->setToolTipTitle(i18n("Whether to show the virtual keyboard on demand."));
|
2016-04-29 13:05:03 +00:00
|
|
|
}
|
|
|
|
|
virtualkeyboard: resize the focused window to make room for the keyboard
Summary:
alternative approach: try to resize the winidow to make room for the keyboard.
the new input wayland protocol doesn't have anymore the overlap rectangle (and it would not be going to work with qwidget apps anyways)
in the future will probably be needed anextension to the input protocol v3 which partially gets back this, tough window resizing is needed regardless
what's missing: the resize should be "temporary" and the window should be restored to its previous geometry when the keyboard closes
Test Plan: tested with test QML code
Reviewers: #plasma, #kwin, bshah, graesslin, romangg, davidedmundson
Reviewed By: #plasma, #kwin, romangg, davidedmundson
Subscribers: nicolasfella, mart, kwin, davidedmundson, graesslin
Tags: #kwin
Maniphest Tasks: T9815
Differential Revision: https://phabricator.kde.org/D18818
2019-03-20 10:04:51 +00:00
|
|
|
void VirtualKeyboard::updateInputPanelState()
|
|
|
|
{
|
|
|
|
if (!waylandServer()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
virtualkeyboard: resize the focused window to make room for the keyboard
Summary:
alternative approach: try to resize the winidow to make room for the keyboard.
the new input wayland protocol doesn't have anymore the overlap rectangle (and it would not be going to work with qwidget apps anyways)
in the future will probably be needed anextension to the input protocol v3 which partially gets back this, tough window resizing is needed regardless
what's missing: the resize should be "temporary" and the window should be restored to its previous geometry when the keyboard closes
Test Plan: tested with test QML code
Reviewers: #plasma, #kwin, bshah, graesslin, romangg, davidedmundson
Reviewed By: #plasma, #kwin, romangg, davidedmundson
Subscribers: nicolasfella, mart, kwin, davidedmundson, graesslin
Tags: #kwin
Maniphest Tasks: T9815
Differential Revision: https://phabricator.kde.org/D18818
2019-03-20 10:04:51 +00:00
|
|
|
|
2020-07-11 16:40:28 +00:00
|
|
|
if (!t) {
|
virtualkeyboard: resize the focused window to make room for the keyboard
Summary:
alternative approach: try to resize the winidow to make room for the keyboard.
the new input wayland protocol doesn't have anymore the overlap rectangle (and it would not be going to work with qwidget apps anyways)
in the future will probably be needed anextension to the input protocol v3 which partially gets back this, tough window resizing is needed regardless
what's missing: the resize should be "temporary" and the window should be restored to its previous geometry when the keyboard closes
Test Plan: tested with test QML code
Reviewers: #plasma, #kwin, bshah, graesslin, romangg, davidedmundson
Reviewed By: #plasma, #kwin, romangg, davidedmundson
Subscribers: nicolasfella, mart, kwin, davidedmundson, graesslin
Tags: #kwin
Maniphest Tasks: T9815
Differential Revision: https://phabricator.kde.org/D18818
2019-03-20 10:04:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-21 07:35:34 +00:00
|
|
|
if (m_trackedClient) {
|
|
|
|
m_trackedClient->setVirtualKeyboardGeometry(m_inputClient ? m_inputClient->inputGeometry() : QRect());
|
|
|
|
}
|
2020-07-27 19:30:49 +00:00
|
|
|
t->setInputPanelState(m_inputClient && m_inputClient->isShown(false), QRect(0, 0, 0, 0));
|
2016-04-29 13:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|