2015-03-04 08:21:10 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
|
[wayland] Asyncronously update maximise flags
Summary:
A window maximising is an async operation. We work out what size we want
the client to be, then request the client to update. The window isn't
really maximised until we get that new buffer with the new size.
This patch splits the requested, pending and current state, updating as
appropriate.
Things are a bit complex with things like borders. Technically we
shouldn't update them till we get a response, but we also need to have
the correct geometry of the full size window in our request. For now
they behave as before, updating when we request the change.
X code is untouched.
This hopefully fixes maximise animations on wayland as now we update the
geometry before emitting maximisedChanged.
Test Plan:
Maximised a window with the button and double clicking title bar.
I get only the following events on maximise/restore:
19:51:39.156 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(47,24 640x509) QRect(0,0 716x573)
19:51:39.157 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised true true
19:51:40.522 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(0,0 716x573) QRect(47,24 640x509)
19:51:40.522 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised false false
BUG: 382698
Reviewers: #kwin, romangg
Reviewed By: #kwin, romangg
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D15150
2018-10-05 14:36:02 +00:00
|
|
|
Copyright (C) 2018 David Edmundson <davidedmundson@kde.org>
|
2020-01-14 16:17:18 +00:00
|
|
|
Copyright (C) 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
2015-03-04 08:21:10 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2019-09-15 09:44:33 +00:00
|
|
|
|
|
|
|
#pragma once
|
2015-03-04 08:21:10 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
#include "waylandclient.h"
|
2019-09-15 09:41:21 +00:00
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
#include <KWaylandServer/xdgshell_interface.h>
|
2015-03-04 08:21:10 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
#include <QQueue>
|
|
|
|
#include <QTimer>
|
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
namespace KWaylandServer
|
2015-03-04 08:21:10 +00:00
|
|
|
{
|
2017-12-22 14:22:24 +00:00
|
|
|
class AppMenuInterface;
|
2015-06-09 17:10:56 +00:00
|
|
|
class PlasmaShellSurfaceInterface;
|
2020-02-17 18:39:17 +00:00
|
|
|
class ServerSideDecorationInterface;
|
|
|
|
class ServerSideDecorationPaletteInterface;
|
|
|
|
class XdgToplevelDecorationV1Interface;
|
2015-03-04 08:21:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
class XdgSurfaceConfigure
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum ConfigureField {
|
|
|
|
PositionField = 0x1,
|
|
|
|
SizeField = 0x2,
|
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(ConfigureFields, ConfigureField)
|
|
|
|
|
|
|
|
ConfigureFields presentFields;
|
|
|
|
QPoint position;
|
|
|
|
QSize size;
|
|
|
|
qreal serial;
|
XdgV6 - Kwin side
Summary:
Adds XDGV6 support for the kwin side.
Popup placement support is limited to the stuff v5 had,
a simple offset, rather than the awesome new positioner.
But Qt doesn't make use of it yet either.
Also ideally we should do all the positioning before sending the first
configure, but again Qt doesn't actually do anything with that anyway.
Also integrate pinging clients
Test Plan: gtk3-demo works nicely.
Reviewers: #plasma, graesslin, mart
Reviewed By: #plasma, graesslin
Subscribers: mart, graesslin, kwin, plasma-devel, #kwin
Tags: #plasma
Differential Revision: https://phabricator.kde.org/D6591
2017-09-25 15:37:59 +00:00
|
|
|
};
|
2019-01-28 00:28:48 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
class XdgSurfaceClient : public WaylandClient
|
2015-03-04 08:21:10 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-09-15 09:41:21 +00:00
|
|
|
|
2015-03-04 08:21:10 +00:00
|
|
|
public:
|
2020-02-17 18:39:17 +00:00
|
|
|
explicit XdgSurfaceClient(KWaylandServer::XdgSurfaceInterface *shellSurface);
|
|
|
|
~XdgSurfaceClient() override;
|
2015-03-04 08:21:10 +00:00
|
|
|
|
2020-01-16 20:15:24 +00:00
|
|
|
QRect inputGeometry() const override;
|
2019-10-03 19:43:28 +00:00
|
|
|
QRect bufferGeometry() const override;
|
2015-03-04 08:21:10 +00:00
|
|
|
QSize clientSize() const override;
|
2020-02-17 18:39:17 +00:00
|
|
|
QMatrix4x4 inputTransformation() const override;
|
|
|
|
void setFrameGeometry(const QRect &rect, ForceGeometry_t force = NormalGeometrySet) override;
|
|
|
|
using AbstractClient::move;
|
|
|
|
void move(int x, int y, ForceGeometry_t force = NormalGeometrySet) override;
|
|
|
|
bool isShown(bool shaded_is_shown) const override;
|
|
|
|
bool isHiddenInternal() const override;
|
|
|
|
void hideClient(bool hide) override;
|
|
|
|
void destroyClient() override;
|
|
|
|
|
|
|
|
QRect frameRectToBufferRect(const QRect &rect) const;
|
|
|
|
QRect requestedFrameGeometry() const;
|
|
|
|
QPoint requestedPos() const;
|
|
|
|
QSize requestedSize() const;
|
|
|
|
QRect requestedClientGeometry() const;
|
|
|
|
QSize requestedClientSize() const;
|
|
|
|
QRect clientGeometry() const;
|
|
|
|
bool isClosing() const;
|
|
|
|
bool isHidden() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void addDamage(const QRegion &damage) override;
|
|
|
|
|
|
|
|
virtual XdgSurfaceConfigure *sendRoleConfigure() const = 0;
|
|
|
|
virtual void handleRoleCommit();
|
|
|
|
virtual bool stateCompare() const;
|
|
|
|
|
|
|
|
XdgSurfaceConfigure *lastAcknowledgedConfigure() const;
|
|
|
|
void scheduleConfigure();
|
|
|
|
void sendConfigure();
|
|
|
|
void requestGeometry(const QRect &rect);
|
|
|
|
void updateGeometry(const QRect &rect);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void handleConfigureAcknowledged(quint32 serial);
|
|
|
|
void handleCommit();
|
|
|
|
void handleNextWindowGeometry();
|
|
|
|
bool haveNextWindowGeometry() const;
|
|
|
|
void setHaveNextWindowGeometry();
|
|
|
|
void resetHaveNextWindowGeometry();
|
|
|
|
QRect adjustMoveResizeGeometry(const QRect &rect) const;
|
|
|
|
void updateGeometryRestoreHack();
|
|
|
|
void updateDepth();
|
|
|
|
void internalShow();
|
|
|
|
void internalHide();
|
|
|
|
void cleanGrouping();
|
|
|
|
void cleanTabBox();
|
|
|
|
|
|
|
|
KWaylandServer::XdgSurfaceInterface *m_shellSurface;
|
|
|
|
QTimer *m_configureTimer;
|
|
|
|
QQueue<XdgSurfaceConfigure *> m_configureEvents;
|
|
|
|
QScopedPointer<XdgSurfaceConfigure> m_lastAcknowledgedConfigure;
|
|
|
|
QRect m_windowGeometry;
|
|
|
|
QRect m_requestedFrameGeometry;
|
|
|
|
QRect m_bufferGeometry;
|
|
|
|
QRect m_requestedClientGeometry;
|
|
|
|
QRect m_clientGeometry;
|
|
|
|
bool m_isClosing = false;
|
|
|
|
bool m_isHidden = false;
|
|
|
|
bool m_haveNextWindowGeometry = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
class XdgToplevelConfigure final : public XdgSurfaceConfigure
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
KWaylandServer::XdgToplevelInterface::States states;
|
|
|
|
};
|
|
|
|
|
|
|
|
class XdgToplevelClient final : public XdgSurfaceClient
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
enum class PingReason { CloseWindow, FocusWindow };
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit XdgToplevelClient(KWaylandServer::XdgToplevelInterface *shellSurface);
|
|
|
|
~XdgToplevelClient() override;
|
2020-05-07 14:29:41 +00:00
|
|
|
|
|
|
|
KWaylandServer::XdgToplevelInterface *shellSurface() const;
|
2020-02-17 18:39:17 +00:00
|
|
|
|
|
|
|
void debug(QDebug &stream) const override;
|
|
|
|
NET::WindowType windowType(bool direct = false, int supported_types = 0) const override;
|
|
|
|
MaximizeMode maximizeMode() const override;
|
|
|
|
MaximizeMode requestedMaximizeMode() const override;
|
2020-02-12 10:43:30 +00:00
|
|
|
QSize minSize() const override;
|
|
|
|
QSize maxSize() const override;
|
2020-02-17 18:39:17 +00:00
|
|
|
bool isFullScreen() const override;
|
|
|
|
bool isMovableAcrossScreens() const override;
|
|
|
|
bool isMovable() const override;
|
|
|
|
bool isResizable() const override;
|
2015-03-16 08:14:04 +00:00
|
|
|
bool isCloseable() const override;
|
2019-01-09 14:20:19 +00:00
|
|
|
bool isFullScreenable() const override;
|
2015-03-16 08:14:04 +00:00
|
|
|
bool isMaximizable() const override;
|
|
|
|
bool isMinimizable() const override;
|
2020-02-17 18:39:17 +00:00
|
|
|
bool isTransient() const override;
|
|
|
|
bool userCanSetFullScreen() const override;
|
|
|
|
bool userCanSetNoBorder() const override;
|
2015-03-16 08:14:04 +00:00
|
|
|
bool noBorder() const override;
|
|
|
|
void setNoBorder(bool set) override;
|
2015-12-17 14:47:36 +00:00
|
|
|
void updateDecoration(bool check_workspace_pos, bool force = false) override;
|
2020-02-17 18:39:17 +00:00
|
|
|
void updateColorScheme() override;
|
|
|
|
bool supportsWindowRules() const override;
|
2015-03-16 08:14:04 +00:00
|
|
|
void takeFocus() override;
|
|
|
|
bool wantsInput() const override;
|
2016-10-12 13:09:52 +00:00
|
|
|
bool dockWantsInput() const override;
|
2015-06-19 22:14:49 +00:00
|
|
|
bool hasStrut() const override;
|
2016-09-15 19:03:40 +00:00
|
|
|
void showOnScreenEdge() override;
|
2020-02-17 18:39:17 +00:00
|
|
|
bool isInitialPositionSet() const override;
|
|
|
|
void setFullScreen(bool set, bool user) override;
|
|
|
|
void closeWindow() override;
|
[effects] Make Scale and Glide effects Wayland-friendly
Summary:
The Scale effect and the Glide effect have to animate only ordinary
windows(i.e. the ones that are considered to be apps).
On X11, in order to distinguish ordinary windows from combo box popups,
popup menus, and other popups, those effects check whether given window
is managed.
On Wayland, there is no concept of managed/unmanaged windows.
XDG Shell protocol defines 2 surface roles:
* xdg_toplevel;
* and, xdg_popup.
The former can be used to implement typical windows, the ones that can
be minimized, maximized, etc.
The latter can be used to implement tooltips, popup menus, etc. Thus,
that's a good criteria to filter popup windows.
CCBUG: 398100
Reviewers: #kwin, graesslin, davidedmundson
Reviewed By: #kwin, graesslin, davidedmundson
Subscribers: davidedmundson, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D15117
2018-10-08 18:08:13 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
void installAppMenu(KWaylandServer::AppMenuInterface *appMenu);
|
|
|
|
void installServerDecoration(KWaylandServer::ServerSideDecorationInterface *decoration);
|
2020-04-29 15:18:41 +00:00
|
|
|
void installPalette(KWaylandServer::ServerSideDecorationPaletteInterface *palette);
|
2020-02-17 18:39:17 +00:00
|
|
|
void installPlasmaShellSurface(KWaylandServer::PlasmaShellSurfaceInterface *shellSurface);
|
|
|
|
void installXdgDecoration(KWaylandServer::XdgToplevelDecorationV1Interface *decoration);
|
2018-12-23 07:56:15 +00:00
|
|
|
|
2015-03-04 08:21:10 +00:00
|
|
|
protected:
|
2020-02-17 18:39:17 +00:00
|
|
|
XdgSurfaceConfigure *sendRoleConfigure() const override;
|
|
|
|
void handleRoleCommit() override;
|
|
|
|
void doMinimize() override;
|
2015-10-28 10:16:48 +00:00
|
|
|
void doResizeSync() override;
|
2020-02-17 18:39:17 +00:00
|
|
|
void doSetActive() override;
|
|
|
|
void doSetFullScreen();
|
|
|
|
void doSetMaximized();
|
|
|
|
bool doStartMoveResize() override;
|
|
|
|
void doFinishMoveResize() override;
|
2015-12-07 15:18:30 +00:00
|
|
|
bool acceptsFocus() const override;
|
2020-02-17 18:39:17 +00:00
|
|
|
void changeMaximize(bool horizontal, bool vertical, bool adjust) override;
|
|
|
|
Layer layerForDock() const override;
|
|
|
|
bool stateCompare() const override;
|
2015-03-04 08:21:10 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
private:
|
|
|
|
void handleWindowTitleChanged();
|
|
|
|
void handleWindowClassChanged();
|
|
|
|
void handleWindowMenuRequested(KWaylandServer::SeatInterface *seat,
|
|
|
|
const QPoint &surfacePos, quint32 serial);
|
2020-04-29 15:18:41 +00:00
|
|
|
void handleMoveRequested(KWaylandServer::SeatInterface *seat, quint32 serial);
|
2020-02-17 18:39:17 +00:00
|
|
|
void handleResizeRequested(KWaylandServer::SeatInterface *seat, Qt::Edges, quint32 serial);
|
|
|
|
void handleStatesAcknowledged(const KWaylandServer::XdgToplevelInterface::States &states);
|
|
|
|
void handleMaximizeRequested();
|
|
|
|
void handleUnmaximizeRequested();
|
|
|
|
void handleFullscreenRequested(KWaylandServer::OutputInterface *output);
|
|
|
|
void handleUnfullscreenRequested();
|
2019-09-15 10:54:53 +00:00
|
|
|
void handleMinimizeRequested();
|
2020-02-17 18:39:17 +00:00
|
|
|
void handleTransientForChanged();
|
|
|
|
void handleForeignTransientForChanged(KWaylandServer::SurfaceInterface *child);
|
2019-09-15 10:54:53 +00:00
|
|
|
void handlePingTimeout(quint32 serial);
|
2020-02-17 18:39:17 +00:00
|
|
|
void handlePingDelayed(quint32 serial);
|
2019-09-15 10:54:53 +00:00
|
|
|
void handlePongReceived(quint32 serial);
|
2020-02-17 18:39:17 +00:00
|
|
|
void initialize();
|
[wayland] Asyncronously update maximise flags
Summary:
A window maximising is an async operation. We work out what size we want
the client to be, then request the client to update. The window isn't
really maximised until we get that new buffer with the new size.
This patch splits the requested, pending and current state, updating as
appropriate.
Things are a bit complex with things like borders. Technically we
shouldn't update them till we get a response, but we also need to have
the correct geometry of the full size window in our request. For now
they behave as before, updating when we request the change.
X code is untouched.
This hopefully fixes maximise animations on wayland as now we update the
geometry before emitting maximisedChanged.
Test Plan:
Maximised a window with the button and double clicking title bar.
I get only the following events on maximise/restore:
19:51:39.156 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(47,24 640x509) QRect(0,0 716x573)
19:51:39.157 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised true true
19:51:40.522 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(0,0 716x573) QRect(47,24 640x509)
19:51:40.522 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised false false
BUG: 382698
Reviewers: #kwin, romangg
Reviewed By: #kwin, romangg
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D15150
2018-10-05 14:36:02 +00:00
|
|
|
void updateMaximizeMode(MaximizeMode maximizeMode);
|
2020-02-17 18:39:17 +00:00
|
|
|
void updateFullScreenMode(bool set);
|
|
|
|
void updateShowOnScreenEdge();
|
|
|
|
void setupWindowManagementIntegration();
|
|
|
|
void setupPlasmaShellIntegration();
|
|
|
|
void sendPing(PingReason reason);
|
[wayland] Asyncronously update maximise flags
Summary:
A window maximising is an async operation. We work out what size we want
the client to be, then request the client to update. The window isn't
really maximised until we get that new buffer with the new size.
This patch splits the requested, pending and current state, updating as
appropriate.
Things are a bit complex with things like borders. Technically we
shouldn't update them till we get a response, but we also need to have
the correct geometry of the full size window in our request. For now
they behave as before, updating when we request the change.
X code is untouched.
This hopefully fixes maximise animations on wayland as now we update the
geometry before emitting maximisedChanged.
Test Plan:
Maximised a window with the button and double clicking title bar.
I get only the following events on maximise/restore:
19:51:39.156 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(47,24 640x509) QRect(0,0 716x573)
19:51:39.157 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised true true
19:51:40.522 KWin::EffectsHandlerImpl::slotGeometryShapeChanged geometry
shape changed QRect(0,0 716x573) QRect(47,24 640x509)
19:51:40.522 KWin::EffectsHandlerImpl::slotClientMaximized slot client
maximised false false
BUG: 382698
Reviewers: #kwin, romangg
Reviewed By: #kwin, romangg
Subscribers: romangg, zzag, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D15150
2018-10-05 14:36:02 +00:00
|
|
|
|
2020-04-29 15:18:41 +00:00
|
|
|
QPointer<KWaylandServer::PlasmaShellSurfaceInterface> m_plasmaShellSurface;
|
|
|
|
QPointer<KWaylandServer::AppMenuInterface> m_appMenuInterface;
|
|
|
|
QPointer<KWaylandServer::ServerSideDecorationPaletteInterface> m_paletteInterface;
|
2020-02-17 18:39:17 +00:00
|
|
|
QPointer<KWaylandServer::ServerSideDecorationInterface> m_serverDecoration;
|
|
|
|
QPointer<KWaylandServer::XdgToplevelDecorationV1Interface> m_xdgDecoration;
|
|
|
|
KWaylandServer::XdgToplevelInterface *m_shellSurface;
|
|
|
|
KWaylandServer::XdgToplevelInterface::States m_requestedStates;
|
|
|
|
KWaylandServer::XdgToplevelInterface::States m_acknowledgedStates;
|
|
|
|
QMap<quint32, PingReason> m_pings;
|
|
|
|
QRect m_fullScreenGeometryRestore;
|
|
|
|
NET::WindowType m_windowType = NET::Normal;
|
|
|
|
MaximizeMode m_maximizeMode = MaximizeRestore;
|
|
|
|
MaximizeMode m_requestedMaximizeMode = MaximizeRestore;
|
|
|
|
bool m_isFullScreen = false;
|
2015-12-17 14:47:36 +00:00
|
|
|
bool m_userNoBorder = false;
|
2020-02-17 18:39:17 +00:00
|
|
|
bool m_isTransient = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
class XdgPopupClient final : public XdgSurfaceClient
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit XdgPopupClient(KWaylandServer::XdgPopupInterface *shellSurface);
|
|
|
|
~XdgPopupClient() override;
|
|
|
|
|
|
|
|
void debug(QDebug &stream) const override;
|
|
|
|
NET::WindowType windowType(bool direct = false, int supported_types = 0) const override;
|
|
|
|
bool hasPopupGrab() const override;
|
|
|
|
void popupDone() override;
|
|
|
|
bool isPopupWindow() const override;
|
|
|
|
bool isTransient() const override;
|
|
|
|
bool isResizable() const override;
|
|
|
|
bool isMovable() const override;
|
|
|
|
bool isMovableAcrossScreens() const override;
|
|
|
|
bool hasTransientPlacementHint() const override;
|
|
|
|
QRect transientPlacement(const QRect &bounds) const override;
|
|
|
|
bool isCloseable() const override;
|
|
|
|
void closeWindow() override;
|
|
|
|
void updateColorScheme() override;
|
|
|
|
bool noBorder() const override;
|
|
|
|
bool userCanSetNoBorder() const override;
|
|
|
|
void setNoBorder(bool set) override;
|
|
|
|
void updateDecoration(bool check_workspace_pos, bool force = false) override;
|
|
|
|
void showOnScreenEdge() override;
|
|
|
|
bool wantsInput() const override;
|
|
|
|
void takeFocus() override;
|
|
|
|
bool supportsWindowRules() const override;
|
2016-08-19 10:33:59 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
protected:
|
|
|
|
bool acceptsFocus() const override;
|
|
|
|
XdgSurfaceConfigure *sendRoleConfigure() const override;
|
2019-09-10 07:40:36 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
private:
|
|
|
|
void handleGrabRequested(KWaylandServer::SeatInterface *seat, quint32 serial);
|
|
|
|
void initialize();
|
|
|
|
|
|
|
|
KWaylandServer::XdgPopupInterface *m_shellSurface;
|
|
|
|
bool m_haveExplicitGrab = false;
|
2015-03-04 08:21:10 +00:00
|
|
|
};
|
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
} // namespace KWin
|
2015-03-04 08:21:10 +00:00
|
|
|
|
2020-02-17 18:39:17 +00:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(KWin::XdgSurfaceConfigure::ConfigureFields)
|