2020-08-07 19:01:42 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2020 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "layershellv1client.h"
|
|
|
|
#include "abstract_output.h"
|
|
|
|
#include "layershellv1integration.h"
|
|
|
|
#include "deleted.h"
|
|
|
|
#include "wayland_server.h"
|
|
|
|
#include "workspace.h"
|
|
|
|
|
|
|
|
#include <KWaylandServer/layershell_v1_interface.h>
|
|
|
|
#include <KWaylandServer/output_interface.h>
|
|
|
|
#include <KWaylandServer/surface_interface.h>
|
|
|
|
|
|
|
|
using namespace KWaylandServer;
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static NET::WindowType scopeToType(const QString &scope)
|
|
|
|
{
|
|
|
|
static const QHash<QString, NET::WindowType> scopeToType {
|
|
|
|
{ QStringLiteral("desktop"), NET::Desktop },
|
|
|
|
{ QStringLiteral("dock"), NET::Dock },
|
|
|
|
{ QStringLiteral("crititical-notification"), NET::CriticalNotification },
|
|
|
|
{ QStringLiteral("notification"), NET::Notification },
|
|
|
|
{ QStringLiteral("tooltip"), NET::Tooltip },
|
|
|
|
{ QStringLiteral("on-screen-display"), NET::OnScreenDisplay },
|
|
|
|
{ QStringLiteral("dialog"), NET::Dialog },
|
|
|
|
{ QStringLiteral("splash"), NET::Splash },
|
|
|
|
{ QStringLiteral("utility"), NET::Utility },
|
|
|
|
};
|
|
|
|
return scopeToType.value(scope.toLower(), NET::Normal);
|
|
|
|
}
|
|
|
|
|
|
|
|
LayerShellV1Client::LayerShellV1Client(LayerSurfaceV1Interface *shellSurface,
|
|
|
|
AbstractOutput *output,
|
|
|
|
LayerShellV1Integration *integration)
|
|
|
|
: WaylandClient(shellSurface->surface())
|
2021-08-25 10:47:44 +00:00
|
|
|
, m_desiredOutput(output)
|
2020-08-07 19:01:42 +00:00
|
|
|
, m_integration(integration)
|
|
|
|
, m_shellSurface(shellSurface)
|
|
|
|
, m_windowType(scopeToType(shellSurface->scope()))
|
|
|
|
{
|
|
|
|
setSkipSwitcher(!isDesktop());
|
|
|
|
setSkipPager(true);
|
|
|
|
setSkipTaskbar(true);
|
|
|
|
|
|
|
|
connect(shellSurface, &LayerSurfaceV1Interface::aboutToBeDestroyed,
|
|
|
|
this, &LayerShellV1Client::destroyClient);
|
|
|
|
connect(shellSurface->surface(), &SurfaceInterface::aboutToBeDestroyed,
|
|
|
|
this, &LayerShellV1Client::destroyClient);
|
|
|
|
|
|
|
|
connect(output, &AbstractOutput::geometryChanged,
|
|
|
|
this, &LayerShellV1Client::scheduleRearrange);
|
2021-01-22 08:22:24 +00:00
|
|
|
connect(output, &AbstractOutput::enabledChanged,
|
|
|
|
this, &LayerShellV1Client::handleOutputEnabledChanged);
|
2020-08-07 19:01:42 +00:00
|
|
|
connect(output, &AbstractOutput::destroyed,
|
|
|
|
this, &LayerShellV1Client::handleOutputDestroyed);
|
|
|
|
|
|
|
|
connect(shellSurface->surface(), &SurfaceInterface::sizeChanged,
|
|
|
|
this, &LayerShellV1Client::handleSizeChanged);
|
|
|
|
connect(shellSurface->surface(), &SurfaceInterface::unmapped,
|
|
|
|
this, &LayerShellV1Client::handleUnmapped);
|
|
|
|
connect(shellSurface->surface(), &SurfaceInterface::committed,
|
|
|
|
this, &LayerShellV1Client::handleCommitted);
|
|
|
|
|
|
|
|
connect(shellSurface, &LayerSurfaceV1Interface::desiredSizeChanged,
|
|
|
|
this, &LayerShellV1Client::scheduleRearrange);
|
|
|
|
connect(shellSurface, &LayerSurfaceV1Interface::layerChanged,
|
|
|
|
this, &LayerShellV1Client::scheduleRearrange);
|
|
|
|
connect(shellSurface, &LayerSurfaceV1Interface::marginsChanged,
|
|
|
|
this, &LayerShellV1Client::scheduleRearrange);
|
|
|
|
connect(shellSurface, &LayerSurfaceV1Interface::anchorChanged,
|
|
|
|
this, &LayerShellV1Client::scheduleRearrange);
|
|
|
|
connect(shellSurface, &LayerSurfaceV1Interface::exclusiveZoneChanged,
|
|
|
|
this, &LayerShellV1Client::scheduleRearrange);
|
|
|
|
connect(shellSurface, &LayerSurfaceV1Interface::acceptsFocusChanged,
|
|
|
|
this, &LayerShellV1Client::handleAcceptsFocusChanged);
|
|
|
|
}
|
|
|
|
|
|
|
|
LayerSurfaceV1Interface *LayerShellV1Client::shellSurface() const
|
|
|
|
{
|
|
|
|
return m_shellSurface;
|
|
|
|
}
|
|
|
|
|
2021-08-25 10:47:44 +00:00
|
|
|
AbstractOutput *LayerShellV1Client::desiredOutput() const
|
2020-08-07 19:01:42 +00:00
|
|
|
{
|
2021-08-25 10:47:44 +00:00
|
|
|
return m_desiredOutput;
|
2020-08-07 19:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LayerShellV1Client::scheduleRearrange()
|
|
|
|
{
|
|
|
|
m_integration->scheduleRearrange();
|
|
|
|
}
|
|
|
|
|
|
|
|
NET::WindowType LayerShellV1Client::windowType(bool, int) const
|
|
|
|
{
|
|
|
|
return m_windowType;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::isPlaceable() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::isCloseable() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::isMovable() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::isMovableAcrossScreens() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::isResizable() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::takeFocus()
|
|
|
|
{
|
|
|
|
setActive(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::wantsInput() const
|
|
|
|
{
|
|
|
|
return acceptsFocus() && readyForPainting();
|
|
|
|
}
|
|
|
|
|
|
|
|
StrutRect LayerShellV1Client::strutRect(StrutArea area) const
|
|
|
|
{
|
|
|
|
switch (area) {
|
|
|
|
case StrutAreaLeft:
|
|
|
|
if (m_shellSurface->exclusiveEdge() == Qt::LeftEdge) {
|
|
|
|
return StrutRect(x(), y(), m_shellSurface->exclusiveZone(), height(), StrutAreaLeft);
|
|
|
|
}
|
|
|
|
return StrutRect();
|
|
|
|
case StrutAreaRight:
|
|
|
|
if (m_shellSurface->exclusiveEdge() == Qt::RightEdge) {
|
|
|
|
return StrutRect(x() + width() - m_shellSurface->exclusiveZone(), y(),
|
|
|
|
m_shellSurface->exclusiveZone(), height(), StrutAreaRight);
|
|
|
|
}
|
|
|
|
return StrutRect();
|
|
|
|
case StrutAreaTop:
|
|
|
|
if (m_shellSurface->exclusiveEdge() == Qt::TopEdge) {
|
|
|
|
return StrutRect(x(), y(), width(), m_shellSurface->exclusiveZone(), StrutAreaTop);
|
|
|
|
}
|
|
|
|
return StrutRect();
|
|
|
|
case StrutAreaBottom:
|
|
|
|
if (m_shellSurface->exclusiveEdge() == Qt::BottomEdge) {
|
|
|
|
return StrutRect(x(), y() + height() - m_shellSurface->exclusiveZone(),
|
|
|
|
width(), m_shellSurface->exclusiveZone(), StrutAreaBottom);
|
|
|
|
}
|
|
|
|
return StrutRect();
|
|
|
|
default:
|
|
|
|
return StrutRect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::hasStrut() const
|
|
|
|
{
|
|
|
|
return m_shellSurface->exclusiveZone() > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayerShellV1Client::destroyClient()
|
|
|
|
{
|
|
|
|
markAsZombie();
|
|
|
|
cleanTabBox();
|
|
|
|
Deleted *deleted = Deleted::create(this);
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT windowClosed(this, deleted);
|
2020-08-07 19:01:42 +00:00
|
|
|
StackingUpdatesBlocker blocker(workspace());
|
|
|
|
cleanGrouping();
|
|
|
|
waylandServer()->removeClient(this);
|
|
|
|
deleted->unrefWindow();
|
|
|
|
scheduleRearrange();
|
|
|
|
delete this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayerShellV1Client::closeWindow()
|
|
|
|
{
|
|
|
|
m_shellSurface->sendClosed();
|
|
|
|
}
|
|
|
|
|
|
|
|
Layer LayerShellV1Client::belongsToLayer() const
|
|
|
|
{
|
|
|
|
if (!isNormalWindow()) {
|
|
|
|
return WaylandClient::belongsToLayer();
|
|
|
|
}
|
|
|
|
switch (m_shellSurface->layer()) {
|
|
|
|
case LayerSurfaceV1Interface::BackgroundLayer:
|
|
|
|
return DesktopLayer;
|
|
|
|
case LayerSurfaceV1Interface::BottomLayer:
|
|
|
|
return BelowLayer;
|
|
|
|
case LayerSurfaceV1Interface::TopLayer:
|
|
|
|
return AboveLayer;
|
|
|
|
case LayerSurfaceV1Interface::OverlayLayer:
|
|
|
|
return UnmanagedLayer;
|
|
|
|
default:
|
|
|
|
Q_UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LayerShellV1Client::acceptsFocus() const
|
|
|
|
{
|
|
|
|
return m_shellSurface->acceptsFocus();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
void LayerShellV1Client::moveResizeInternal(const QRect &rect, MoveResizeMode mode)
|
2020-08-07 19:01:42 +00:00
|
|
|
{
|
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
|
|
|
if (areGeometryUpdatesBlocked()) {
|
|
|
|
setPendingMoveResizeMode(mode);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QSize requestedClientSize = frameSizeToClientSize(rect.size());
|
|
|
|
if (requestedClientSize != clientSize()) {
|
|
|
|
m_shellSurface->sendConfigure(rect.size());
|
|
|
|
} else {
|
|
|
|
updateGeometry(rect);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The surface position is updated synchronously.
|
|
|
|
QRect updateRect = m_frameGeometry;
|
|
|
|
updateRect.moveTopLeft(rect.topLeft());
|
|
|
|
updateGeometry(updateRect);
|
2020-08-07 19:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LayerShellV1Client::handleSizeChanged()
|
|
|
|
{
|
|
|
|
updateGeometry(QRect(pos(), clientSizeToFrameSize(surface()->size())));
|
|
|
|
scheduleRearrange();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayerShellV1Client::handleUnmapped()
|
|
|
|
{
|
|
|
|
m_integration->recreateClient(shellSurface());
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayerShellV1Client::handleCommitted()
|
|
|
|
{
|
|
|
|
if (surface()->buffer()) {
|
|
|
|
updateDepth();
|
|
|
|
setReadyForPainting();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayerShellV1Client::handleAcceptsFocusChanged()
|
|
|
|
{
|
|
|
|
switch (m_shellSurface->layer()) {
|
|
|
|
case LayerSurfaceV1Interface::TopLayer:
|
|
|
|
case LayerSurfaceV1Interface::OverlayLayer:
|
|
|
|
if (wantsInput()) {
|
|
|
|
workspace()->activateClient(this);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LayerSurfaceV1Interface::BackgroundLayer:
|
|
|
|
case LayerSurfaceV1Interface::BottomLayer:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-22 08:22:24 +00:00
|
|
|
void LayerShellV1Client::handleOutputEnabledChanged()
|
|
|
|
{
|
2021-08-25 10:47:44 +00:00
|
|
|
if (!m_desiredOutput->isEnabled()) {
|
2021-01-22 08:22:24 +00:00
|
|
|
closeWindow();
|
|
|
|
destroyClient();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-07 19:01:42 +00:00
|
|
|
void LayerShellV1Client::handleOutputDestroyed()
|
|
|
|
{
|
|
|
|
closeWindow();
|
|
|
|
destroyClient();
|
|
|
|
}
|
|
|
|
|
2021-04-09 14:44:44 +00:00
|
|
|
void LayerShellV1Client::setVirtualKeyboardGeometry(const QRect &geo)
|
|
|
|
{
|
|
|
|
if (m_virtualKeyboardGeometry == geo) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_virtualKeyboardGeometry = geo;
|
|
|
|
scheduleRearrange();
|
|
|
|
}
|
|
|
|
|
2020-08-07 19:01:42 +00:00
|
|
|
} // namespace KWin
|