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-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-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-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);
|
|
|
|
connect(textInputV2, &TextInputV2Interface::enabledChanged, this, &VirtualKeyboard::textInputInterfaceEnabledChanged);
|
|
|
|
connect(textInputV2, &TextInputV2Interface::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-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-09-18 03:17:15 +00:00
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
if (!inputContext) {
|
|
|
|
return;
|
|
|
|
}
|
2020-09-21 07:35:34 +00:00
|
|
|
inputContext->sendSurroundingText(t->surroundingText(), t->surroundingTextCursorPosition(), t->surroundingTextSelectionAnchor());
|
2020-09-18 03:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::contentTypeChanged()
|
|
|
|
{
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-09-18 03:17:15 +00:00
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
if (!inputContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
inputContext->sendContentType(t->contentHints(), t->contentPurpose());
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::requestReset()
|
|
|
|
{
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-09-18 03:17:15 +00:00
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
|
|
|
if (!inputContext) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
inputContext->sendReset();
|
2020-09-21 07:35:34 +00:00
|
|
|
inputContext->sendSurroundingText(t->surroundingText(), t->surroundingTextCursorPosition(), t->surroundingTextSelectionAnchor());
|
|
|
|
inputContext->sendPreferredLanguage(t->preferredLanguage());
|
2020-09-18 03:17:15 +00:00
|
|
|
inputContext->sendContentType(t->contentHints(), t->contentPurpose());
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::textInputInterfaceEnabledChanged()
|
|
|
|
{
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-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-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
if (pressed) {
|
|
|
|
t->keysymPressed(sym, modifiers);
|
|
|
|
} else {
|
|
|
|
t->keysymReleased(sym, modifiers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void commitString(qint32 serial, const QString &text)
|
|
|
|
{
|
|
|
|
Q_UNUSED(serial)
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
t->commit(text.toUtf8());
|
|
|
|
t->preEdit({}, {});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setPreeditCursor(qint32 index)
|
|
|
|
{
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
t->setPreEditCursor(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setPreeditString(uint32_t serial, const QString &text, const QString &commit)
|
|
|
|
{
|
|
|
|
Q_UNUSED(serial)
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
t->preEdit(text.toUtf8(), commit.toUtf8());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void deleteSurroundingText(int32_t index, uint32_t length)
|
|
|
|
{
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
t->deleteSurroundingText(index, length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setCursorPosition(qint32 index, qint32 anchor)
|
|
|
|
{
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
t->setCursorPosition(index, anchor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setLanguage(uint32_t serial, const QString &language)
|
|
|
|
{
|
|
|
|
Q_UNUSED(serial)
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
t->setLanguage(language.toUtf8());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void setTextDirection(uint32_t serial, Qt::LayoutDirection direction)
|
|
|
|
{
|
|
|
|
Q_UNUSED(serial)
|
2020-09-22 03:14:57 +00:00
|
|
|
auto t = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
if (t && t->isEnabled()) {
|
|
|
|
t->setTextDirection(direction);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualKeyboard::adoptInputMethodContext()
|
|
|
|
{
|
|
|
|
auto inputContext = waylandServer()->inputMethod()->context();
|
2020-09-22 03:14:57 +00:00
|
|
|
TextInputV2Interface *ti = waylandServer()->seat()->textInputV2();
|
2020-07-11 16:40:28 +00:00
|
|
|
|
2020-09-21 07:35:34 +00:00
|
|
|
inputContext->sendSurroundingText(ti->surroundingText(), ti->surroundingTextCursorPosition(), ti->surroundingTextSelectionAnchor());
|
|
|
|
inputContext->sendPreferredLanguage(ti->preferredLanguage());
|
2020-09-03 08:45:00 +00:00
|
|
|
inputContext->sendContentType(ti->contentHints(), ti->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::preeditCursor, waylandServer(), &setPreeditCursor);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::preeditString, waylandServer(), &setPreeditString);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::deleteSurroundingText, waylandServer(), &deleteSurroundingText);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::cursorPosition, waylandServer(), &setCursorPosition);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::language, waylandServer(), &setLanguage);
|
|
|
|
connect(inputContext, &KWaylandServer::InputMethodContextV1Interface::textDirection, waylandServer(), &setTextDirection);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
}
|