kwin/src/inputpanelv1window.cpp

186 lines
6 KiB
C++
Raw Normal View History

2020-07-11 16:40:28 +00:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2020 Aleix Pol Gonzalez <aleixpol@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "inputpanelv1window.h"
2020-07-11 16:40:28 +00:00
#include "deleted.h"
#include "inputmethod.h"
#include "output.h"
#include "platform.h"
#include "wayland/output_interface.h"
#include "wayland/seat_interface.h"
#include "wayland/surface_interface.h"
#include "wayland/textinput_v2_interface.h"
#include "wayland/textinput_v3_interface.h"
2020-07-11 16:40:28 +00:00
#include "wayland_server.h"
#include "workspace.h"
using namespace KWaylandServer;
namespace KWin
{
InputPanelV1Window::InputPanelV1Window(InputPanelSurfaceV1Interface *panelSurface)
: WaylandWindow(panelSurface->surface())
2020-07-11 16:40:28 +00:00
, m_panelSurface(panelSurface)
{
setSkipSwitcher(true);
2020-07-11 16:40:28 +00:00
setSkipPager(true);
setSkipTaskbar(true);
connect(surface(), &SurfaceInterface::aboutToBeDestroyed, this, &InputPanelV1Window::destroyWindow);
connect(surface(), &SurfaceInterface::sizeChanged, this, &InputPanelV1Window::reposition);
connect(surface(), &SurfaceInterface::mapped, this, &InputPanelV1Window::updateDepth);
2020-07-11 16:40:28 +00:00
connect(panelSurface, &InputPanelSurfaceV1Interface::topLevel, this, &InputPanelV1Window::showTopLevel);
connect(panelSurface, &InputPanelSurfaceV1Interface::overlayPanel, this, &InputPanelV1Window::showOverlayPanel);
connect(panelSurface, &InputPanelSurfaceV1Interface::destroyed, this, &InputPanelV1Window::destroyWindow);
InputMethod::self()->setPanel(this);
2020-07-11 16:40:28 +00:00
}
void InputPanelV1Window::showOverlayPanel()
2020-07-11 16:40:28 +00:00
{
setOutput(nullptr);
m_mode = Overlay;
reposition();
showClient();
2020-07-11 16:40:28 +00:00
setReadyForPainting();
}
void InputPanelV1Window::showTopLevel(OutputInterface *output, InputPanelSurfaceV1Interface::Position position)
2020-07-11 16:40:28 +00:00
{
Q_UNUSED(position);
m_mode = Toplevel;
setOutput(output);
showClient();
}
void InputPanelV1Window::allow()
{
2020-07-11 16:40:28 +00:00
setReadyForPainting();
reposition();
2020-07-11 16:40:28 +00:00
}
void KWin::InputPanelV1Window::reposition()
2020-07-11 16:40:28 +00:00
{
if (!readyForPainting()) {
return;
}
2020-07-11 16:40:28 +00:00
switch (m_mode) {
case Toplevel: {
QSize panelSize = surface()->size();
if (!panelSize.isValid() || panelSize.isEmpty()) {
return;
}
QRect availableArea;
QRect outputArea;
if (m_output) {
outputArea = m_output->geometry();
if (waylandServer()->isScreenLocked()) {
availableArea = outputArea;
} else {
availableArea = workspace()->clientArea(MaximizeArea, this, m_output);
2020-07-11 16:40:28 +00:00
}
} else {
availableArea = workspace()->clientArea(MaximizeArea, this);
outputArea = workspace()->clientArea(FullScreenArea, this);
}
panelSize = panelSize.boundedTo(availableArea.size());
QRect geo(availableArea.bottomLeft() - QPoint{0, panelSize.height()}, panelSize);
geo.translate((availableArea.width() - panelSize.width()) / 2, availableArea.height() - outputArea.height());
moveResize(geo);
} break;
case Overlay: {
auto textInputSurface = waylandServer()->seat()->focusedTextInputSurface();
auto textWindow = waylandServer()->findWindow(textInputSurface);
QRect cursorRectangle;
auto textInputV2 = waylandServer()->seat()->textInputV2();
if (textInputV2 && textInputV2->isEnabled() && textInputV2->surface() == textInputSurface) {
cursorRectangle = textInputV2->cursorRectangle();
}
auto textInputV3 = waylandServer()->seat()->textInputV3();
if (textInputV3 && textInputV3->isEnabled() && textInputV3->surface() == textInputSurface) {
cursorRectangle = textInputV3->cursorRectangle();
}
if (textWindow) {
cursorRectangle.translate(textWindow->bufferGeometry().topLeft());
const QRect screen = Workspace::self()->clientArea(PlacementArea, this, cursorRectangle.bottomLeft());
// Reuse the similar logic like xdg popup
QRect popupRect(popupOffset(cursorRectangle, Qt::BottomEdge | Qt::LeftEdge, Qt::RightEdge | Qt::BottomEdge, surface()->size()), surface()->size());
if (popupRect.left() < screen.left()) {
popupRect.moveLeft(screen.left());
}
if (popupRect.right() > screen.right()) {
popupRect.moveRight(screen.right());
}
if (popupRect.top() < screen.top() || popupRect.bottom() > screen.bottom()) {
auto flippedPopupRect =
QRect(popupOffset(cursorRectangle, Qt::TopEdge | Qt::LeftEdge, Qt::RightEdge | Qt::TopEdge, surface()->size()), surface()->size());
// if it still doesn't fit we should continue with the unflipped version
if (flippedPopupRect.top() >= screen.top() || flippedPopupRect.bottom() <= screen.bottom()) {
popupRect.moveTop(flippedPopupRect.top());
}
2020-07-11 16:40:28 +00:00
}
moveResize(popupRect);
}
} break;
2020-07-11 16:40:28 +00:00
}
}
void InputPanelV1Window::destroyWindow()
2020-07-11 16:40:28 +00:00
{
markAsZombie();
Deleted *deleted = Deleted::create(this);
Q_EMIT windowClosed(this, deleted);
2020-07-11 16:40:28 +00:00
StackingUpdatesBlocker blocker(workspace());
waylandServer()->removeWindow(this);
2020-07-11 16:40:28 +00:00
deleted->unrefWindow();
delete this;
}
NET::WindowType InputPanelV1Window::windowType(bool, int) const
2020-07-11 16:40:28 +00:00
{
return NET::Utility;
}
QRect InputPanelV1Window::inputGeometry() const
{
return readyForPainting() ? surface()->input().boundingRect().translated(pos()) : QRect();
}
void InputPanelV1Window::setOutput(OutputInterface *outputIface)
2020-07-11 16:40:28 +00:00
{
if (m_output) {
disconnect(m_output, &Output::geometryChanged, this, &InputPanelV1Window::reposition);
2020-07-11 16:40:28 +00:00
}
m_output = waylandServer()->findOutput(outputIface);
if (m_output) {
connect(m_output, &Output::geometryChanged, this, &InputPanelV1Window::reposition);
2020-07-11 16:40:28 +00:00
}
}
void InputPanelV1Window::moveResizeInternal(const QRect &rect, MoveResizeMode mode)
Rework async geometry updates Window management features were written with synchronous geometry updates in mind. Currently, this poses a big problem on Wayland because geometry updates are done in asynchronous fashion there. At the moment, geometry is updated in a so called pseudo-asynchronous fashion, meaning that the frame geometry will be reset to the old value once geometry updates are unblocked. The main drawback of this approach is that it is too error prone, the data flow is hard to comprehend, etc. It is worth noting that there is already a machinery to perform async geometry which is used during interactive move/resize operations. This change extends the move/resize geometry usage beyond interactive move/resize to make asynchronous geometry updates less error prone and easier to comprehend. With the proposed solution, all geometry updates must be done on the move/resize geometry first. After that, the new geometry is passed on to the Client-specific implementation of moveResizeInternal(). To be more specific, the frameGeometry() returns the current frame geometry, it is primarily useful only to the scene. If you want to move or resize a window, you need to use moveResizeGeometry() because it corresponds to the last requested frame geometry. It is worth noting that the moveResizeGeometry() returns the desired bounding geometry. The client may commit the xdg_toplevel surface with a slightly smaller window geometry, for example to enforce a specific aspect ratio. The client is not allowed to resize beyond the size as indicated in moveResizeGeometry(). The data flow is very simple: moveResize() updates the move/resize geometry and calls the client-specific implementation of the moveResizeInternal() method. Based on whether a configure event is needed, moveResizeInternal() will update the frameGeometry() either immediately or after the client commits a new buffer. Unfortunately, both the compositor and xdg-shell clients try to update the window geometry. It means that it's possible to have conflicts between the two. With this change, the compositor's move resize geometry will be synced only if there are no pending configure events, meaning that the user doesn't try to resize the window.
2021-04-30 18:26:09 +00:00
{
Q_UNUSED(mode)
updateGeometry(rect);
}
} // namespace KWin