2010-09-21 14:31:40 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2010 Rohan Prabhu <rohan@rohanprabhu.com>
|
2012-01-21 16:48:07 +00:00
|
|
|
Copyright (C) 2011, 2012 Martin Gräßlin <mgraesslin@kde.org>
|
2010-09-21 14:31:40 +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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
2012-01-22 11:38:03 +00:00
|
|
|
#include "workspace_wrapper.h"
|
2019-09-24 08:48:08 +00:00
|
|
|
#include "../x11client.h"
|
2012-04-10 18:56:13 +00:00
|
|
|
#include "../outline.h"
|
2013-04-03 10:19:27 +00:00
|
|
|
#include "../screens.h"
|
2019-08-30 21:36:58 +00:00
|
|
|
#include "../xdgshellclient.h"
|
2012-11-16 07:23:47 +00:00
|
|
|
#include "../virtualdesktops.h"
|
[scripting] Emit clientAdded for Wayland clients
Summary:
Currently, if a script relies on clientAdded to setup some required
connections, then it probably won't work with Wayland clients because
clientAdded is emitted only for X11 clients.
Test Plan:
* Installed sticky window snapping script, it works;
* Installed a couple of tiling scripts, with some small changes, they work.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: strobach, TomButler, davidedmundson, mart, graesslin, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17097
2018-11-21 14:13:52 +00:00
|
|
|
#include "../wayland_server.h"
|
2013-04-26 09:52:15 +00:00
|
|
|
#include "../workspace.h"
|
2013-04-04 14:14:12 +00:00
|
|
|
#ifdef KWIN_BUILD_ACTIVITIES
|
|
|
|
#include "../activities.h"
|
|
|
|
#endif
|
2010-09-21 14:31:40 +00:00
|
|
|
|
2013-02-26 08:00:51 +00:00
|
|
|
#include <QDesktopWidget>
|
2013-08-06 08:27:49 +00:00
|
|
|
#include <QApplication>
|
2012-03-27 17:43:04 +00:00
|
|
|
|
2012-01-22 11:38:03 +00:00
|
|
|
namespace KWin {
|
|
|
|
|
|
|
|
WorkspaceWrapper::WorkspaceWrapper(QObject* parent) : QObject(parent)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-01-21 16:48:07 +00:00
|
|
|
KWin::Workspace *ws = KWin::Workspace::self();
|
2012-11-16 07:23:47 +00:00
|
|
|
KWin::VirtualDesktopManager *vds = KWin::VirtualDesktopManager::self();
|
2015-03-13 10:48:08 +00:00
|
|
|
connect(ws, &Workspace::desktopPresenceChanged, this, &WorkspaceWrapper::desktopPresenceChanged);
|
2015-03-06 11:38:07 +00:00
|
|
|
connect(ws, &Workspace::currentDesktopChanged, this, &WorkspaceWrapper::currentDesktopChanged);
|
[scripting] Emit clientAdded for Wayland clients
Summary:
Currently, if a script relies on clientAdded to setup some required
connections, then it probably won't work with Wayland clients because
clientAdded is emitted only for X11 clients.
Test Plan:
* Installed sticky window snapping script, it works;
* Installed a couple of tiling scripts, with some small changes, they work.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: strobach, TomButler, davidedmundson, mart, graesslin, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17097
2018-11-21 14:13:52 +00:00
|
|
|
connect(ws, &Workspace::clientAdded, this, &WorkspaceWrapper::clientAdded);
|
|
|
|
connect(ws, &Workspace::clientAdded, this, &WorkspaceWrapper::setupClientConnections);
|
2015-04-30 08:51:58 +00:00
|
|
|
connect(ws, &Workspace::clientRemoved, this, &WorkspaceWrapper::clientRemoved);
|
2015-03-06 12:58:24 +00:00
|
|
|
connect(ws, &Workspace::clientActivated, this, &WorkspaceWrapper::clientActivated);
|
2012-11-16 07:23:47 +00:00
|
|
|
connect(vds, SIGNAL(countChanged(uint,uint)), SIGNAL(numberDesktopsChanged(uint)));
|
2013-02-14 08:36:00 +00:00
|
|
|
connect(vds, SIGNAL(layoutChanged(int,int)), SIGNAL(desktopLayoutChanged()));
|
2015-03-13 10:13:29 +00:00
|
|
|
connect(ws, &Workspace::clientDemandsAttentionChanged, this, &WorkspaceWrapper::clientDemandsAttentionChanged);
|
2013-04-04 14:14:12 +00:00
|
|
|
#ifdef KWIN_BUILD_ACTIVITIES
|
2015-07-07 09:48:42 +00:00
|
|
|
if (KWin::Activities *activities = KWin::Activities::self()) {
|
|
|
|
connect(activities, SIGNAL(currentChanged(QString)), SIGNAL(currentActivityChanged(QString)));
|
|
|
|
connect(activities, SIGNAL(added(QString)), SIGNAL(activitiesChanged(QString)));
|
|
|
|
connect(activities, SIGNAL(added(QString)), SIGNAL(activityAdded(QString)));
|
|
|
|
connect(activities, SIGNAL(removed(QString)), SIGNAL(activitiesChanged(QString)));
|
|
|
|
connect(activities, SIGNAL(removed(QString)), SIGNAL(activityRemoved(QString)));
|
|
|
|
}
|
2013-04-04 14:14:12 +00:00
|
|
|
#endif
|
2014-02-27 08:55:45 +00:00
|
|
|
connect(screens(), &Screens::sizeChanged, this, &WorkspaceWrapper::virtualScreenSizeChanged);
|
|
|
|
connect(screens(), &Screens::geometryChanged, this, &WorkspaceWrapper::virtualScreenGeometryChanged);
|
2014-11-27 08:32:43 +00:00
|
|
|
connect(screens(), &Screens::countChanged, this,
|
|
|
|
[this] (int previousCount, int currentCount) {
|
|
|
|
Q_UNUSED(previousCount)
|
|
|
|
emit numberScreensChanged(currentCount);
|
|
|
|
}
|
|
|
|
);
|
2012-04-09 21:01:04 +00:00
|
|
|
connect(QApplication::desktop(), SIGNAL(resized(int)), SIGNAL(screenResized(int)));
|
[scripting] Emit clientAdded for Wayland clients
Summary:
Currently, if a script relies on clientAdded to setup some required
connections, then it probably won't work with Wayland clients because
clientAdded is emitted only for X11 clients.
Test Plan:
* Installed sticky window snapping script, it works;
* Installed a couple of tiling scripts, with some small changes, they work.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: strobach, TomButler, davidedmundson, mart, graesslin, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17097
2018-11-21 14:13:52 +00:00
|
|
|
if (waylandServer()) {
|
|
|
|
connect(waylandServer(), &WaylandServer::shellClientAdded, this, &WorkspaceWrapper::clientAdded);
|
|
|
|
connect(waylandServer(), &WaylandServer::shellClientAdded, this, &WorkspaceWrapper::setupAbstractClientConnections);
|
|
|
|
}
|
2019-09-24 08:48:08 +00:00
|
|
|
foreach (KWin::X11Client *client, ws->clientList()) {
|
2012-01-21 09:51:22 +00:00
|
|
|
setupClientConnections(client);
|
2010-09-21 14:31:40 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-09-21 14:31:40 +00:00
|
|
|
|
2012-11-16 07:23:47 +00:00
|
|
|
int WorkspaceWrapper::currentDesktop() const
|
|
|
|
{
|
|
|
|
return VirtualDesktopManager::self()->current();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::numberOfDesktops() const
|
|
|
|
{
|
|
|
|
return VirtualDesktopManager::self()->count();
|
2012-01-26 07:22:54 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 07:23:47 +00:00
|
|
|
void WorkspaceWrapper::setCurrentDesktop(int desktop)
|
|
|
|
{
|
|
|
|
VirtualDesktopManager::self()->setCurrent(desktop);
|
|
|
|
}
|
2012-01-26 07:22:54 +00:00
|
|
|
|
2012-11-16 07:23:47 +00:00
|
|
|
void WorkspaceWrapper::setNumberOfDesktops(int count)
|
|
|
|
{
|
|
|
|
VirtualDesktopManager::self()->setCount(count);
|
|
|
|
}
|
2012-01-26 07:22:54 +00:00
|
|
|
|
2018-11-21 16:34:24 +00:00
|
|
|
AbstractClient *WorkspaceWrapper::activeClient() const
|
|
|
|
{
|
|
|
|
return workspace()->activeClient();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-09-21 14:31:40 +00:00
|
|
|
|
2013-04-04 14:14:12 +00:00
|
|
|
QString WorkspaceWrapper::currentActivity() const
|
|
|
|
{
|
|
|
|
#ifdef KWIN_BUILD_ACTIVITIES
|
2015-07-07 09:48:42 +00:00
|
|
|
if (!Activities::self()) {
|
|
|
|
return QString();
|
|
|
|
}
|
2013-04-04 14:14:12 +00:00
|
|
|
return Activities::self()->current();
|
|
|
|
#else
|
|
|
|
return QString();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList WorkspaceWrapper::activityList() const
|
|
|
|
{
|
|
|
|
#ifdef KWIN_BUILD_ACTIVITIES
|
2015-07-07 09:48:42 +00:00
|
|
|
if (!Activities::self()) {
|
|
|
|
return QStringList();
|
|
|
|
}
|
2013-04-04 14:14:12 +00:00
|
|
|
return Activities::self()->all();
|
|
|
|
#else
|
|
|
|
return QStringList();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-05-11 12:09:15 +00:00
|
|
|
#define SLOTWRAPPER(name) \
|
2012-01-27 06:35:40 +00:00
|
|
|
void WorkspaceWrapper::name( ) { \
|
|
|
|
Workspace::self()->name(); \
|
|
|
|
}
|
|
|
|
|
|
|
|
SLOTWRAPPER(slotSwitchToNextScreen)
|
|
|
|
SLOTWRAPPER(slotWindowToNextScreen)
|
|
|
|
SLOTWRAPPER(slotToggleShowDesktop)
|
|
|
|
|
|
|
|
SLOTWRAPPER(slotWindowMaximize)
|
|
|
|
SLOTWRAPPER(slotWindowMaximizeVertical)
|
|
|
|
SLOTWRAPPER(slotWindowMaximizeHorizontal)
|
|
|
|
SLOTWRAPPER(slotWindowMinimize)
|
|
|
|
SLOTWRAPPER(slotWindowShade)
|
|
|
|
SLOTWRAPPER(slotWindowRaise)
|
|
|
|
SLOTWRAPPER(slotWindowLower)
|
|
|
|
SLOTWRAPPER(slotWindowRaiseOrLower)
|
|
|
|
SLOTWRAPPER(slotActivateAttentionWindow)
|
|
|
|
SLOTWRAPPER(slotWindowPackLeft)
|
|
|
|
SLOTWRAPPER(slotWindowPackRight)
|
|
|
|
SLOTWRAPPER(slotWindowPackUp)
|
|
|
|
SLOTWRAPPER(slotWindowPackDown)
|
|
|
|
SLOTWRAPPER(slotWindowGrowHorizontal)
|
|
|
|
SLOTWRAPPER(slotWindowGrowVertical)
|
|
|
|
SLOTWRAPPER(slotWindowShrinkHorizontal)
|
|
|
|
SLOTWRAPPER(slotWindowShrinkVertical)
|
|
|
|
|
|
|
|
SLOTWRAPPER(slotIncreaseWindowOpacity)
|
|
|
|
SLOTWRAPPER(slotLowerWindowOpacity)
|
|
|
|
|
|
|
|
SLOTWRAPPER(slotWindowOperations)
|
|
|
|
SLOTWRAPPER(slotWindowClose)
|
|
|
|
SLOTWRAPPER(slotWindowMove)
|
|
|
|
SLOTWRAPPER(slotWindowResize)
|
|
|
|
SLOTWRAPPER(slotWindowAbove)
|
|
|
|
SLOTWRAPPER(slotWindowBelow)
|
|
|
|
SLOTWRAPPER(slotWindowOnAllDesktops)
|
|
|
|
SLOTWRAPPER(slotWindowFullScreen)
|
|
|
|
SLOTWRAPPER(slotWindowNoBorder)
|
|
|
|
|
|
|
|
SLOTWRAPPER(slotWindowToNextDesktop)
|
|
|
|
SLOTWRAPPER(slotWindowToPreviousDesktop)
|
|
|
|
SLOTWRAPPER(slotWindowToDesktopRight)
|
|
|
|
SLOTWRAPPER(slotWindowToDesktopLeft)
|
|
|
|
SLOTWRAPPER(slotWindowToDesktopUp)
|
|
|
|
SLOTWRAPPER(slotWindowToDesktopDown)
|
|
|
|
|
|
|
|
#undef SLOTWRAPPER
|
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
#define SLOTWRAPPER(name,modes) \
|
|
|
|
void WorkspaceWrapper::name() { \
|
|
|
|
Workspace::self()->quickTileWindow(modes); \
|
|
|
|
}
|
|
|
|
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileLeft, QuickTileFlag::Left)
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileRight, QuickTileFlag::Right)
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileTop, QuickTileFlag::Top)
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileBottom, QuickTileFlag::Bottom)
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileTopLeft, QuickTileFlag::Top | QuickTileFlag::Left)
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileTopRight, QuickTileFlag::Top | QuickTileFlag::Right)
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileBottomLeft, QuickTileFlag::Bottom | QuickTileFlag::Left)
|
|
|
|
SLOTWRAPPER(slotWindowQuickTileBottomRight, QuickTileFlag::Bottom | QuickTileFlag::Right)
|
|
|
|
|
|
|
|
#undef SLOTWRAPPER
|
|
|
|
|
2017-07-20 04:58:35 +00:00
|
|
|
#define SLOTWRAPPER(name,direction) \
|
|
|
|
void WorkspaceWrapper::name() { \
|
|
|
|
Workspace::self()->switchWindow(Workspace::direction); \
|
|
|
|
}
|
|
|
|
|
|
|
|
SLOTWRAPPER(slotSwitchWindowUp, DirectionNorth)
|
|
|
|
SLOTWRAPPER(slotSwitchWindowDown, DirectionSouth)
|
|
|
|
SLOTWRAPPER(slotSwitchWindowRight, DirectionEast)
|
|
|
|
SLOTWRAPPER(slotSwitchWindowLeft, DirectionWest)
|
|
|
|
|
|
|
|
#undef SLOTWRAPPER
|
|
|
|
|
2013-05-11 12:09:15 +00:00
|
|
|
#define SLOTWRAPPER(name,direction) \
|
2012-11-16 07:23:47 +00:00
|
|
|
void WorkspaceWrapper::name( ) { \
|
|
|
|
VirtualDesktopManager::self()->moveTo<direction>(options->isRollOverDesktops()); \
|
|
|
|
}
|
|
|
|
|
2013-05-11 12:09:15 +00:00
|
|
|
SLOTWRAPPER(slotSwitchDesktopNext,DesktopNext)
|
|
|
|
SLOTWRAPPER(slotSwitchDesktopPrevious,DesktopPrevious)
|
|
|
|
SLOTWRAPPER(slotSwitchDesktopRight,DesktopRight)
|
|
|
|
SLOTWRAPPER(slotSwitchDesktopLeft,DesktopLeft)
|
|
|
|
SLOTWRAPPER(slotSwitchDesktopUp,DesktopAbove)
|
|
|
|
SLOTWRAPPER(slotSwitchDesktopDown,DesktopBelow)
|
2012-11-16 07:23:47 +00:00
|
|
|
|
|
|
|
#undef SLOTWRAPPER
|
|
|
|
|
2015-03-06 12:37:56 +00:00
|
|
|
void WorkspaceWrapper::setActiveClient(KWin::AbstractClient* client)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2015-03-12 11:24:54 +00:00
|
|
|
KWin::Workspace::self()->activateClient(client);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-09-21 14:31:40 +00:00
|
|
|
|
2012-01-22 11:38:03 +00:00
|
|
|
QSize WorkspaceWrapper::workspaceSize() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-01-21 16:48:07 +00:00
|
|
|
return QSize(workspaceWidth(), workspaceHeight());
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-09-21 14:31:40 +00:00
|
|
|
|
2012-01-26 15:53:07 +00:00
|
|
|
QSize WorkspaceWrapper::displaySize() const
|
|
|
|
{
|
2016-06-08 10:46:02 +00:00
|
|
|
return screens()->displaySize();
|
2012-01-26 15:53:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::displayWidth() const
|
|
|
|
{
|
2016-06-08 10:46:02 +00:00
|
|
|
return displaySize().width();
|
2012-01-26 15:53:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::displayHeight() const
|
|
|
|
{
|
2016-06-08 10:46:02 +00:00
|
|
|
return displaySize().height();
|
2012-01-26 15:53:07 +00:00
|
|
|
}
|
|
|
|
|
2012-01-26 21:56:24 +00:00
|
|
|
QRect WorkspaceWrapper::clientArea(ClientAreaOption option, const QPoint &p, int desktop) const
|
|
|
|
{
|
|
|
|
return Workspace::self()->clientArea(static_cast<clientAreaOption>(option), p, desktop);
|
|
|
|
}
|
|
|
|
|
2018-11-21 16:34:24 +00:00
|
|
|
QRect WorkspaceWrapper::clientArea(ClientAreaOption option, const KWin::AbstractClient *c) const
|
2012-01-26 21:56:24 +00:00
|
|
|
{
|
|
|
|
return Workspace::self()->clientArea(static_cast<clientAreaOption>(option), c);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRect WorkspaceWrapper::clientArea(ClientAreaOption option, int screen, int desktop) const
|
|
|
|
{
|
|
|
|
return Workspace::self()->clientArea(static_cast<clientAreaOption>(option), screen, desktop);
|
|
|
|
}
|
|
|
|
|
2012-02-19 15:45:44 +00:00
|
|
|
QString WorkspaceWrapper::desktopName(int desktop) const
|
|
|
|
{
|
2012-11-16 07:23:47 +00:00
|
|
|
return VirtualDesktopManager::self()->name(desktop);
|
2012-02-19 15:45:44 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 14:13:22 +00:00
|
|
|
QString WorkspaceWrapper::supportInformation() const
|
|
|
|
{
|
|
|
|
return Workspace::self()->supportInformation();
|
|
|
|
}
|
|
|
|
|
[scripting] Emit clientAdded for Wayland clients
Summary:
Currently, if a script relies on clientAdded to setup some required
connections, then it probably won't work with Wayland clients because
clientAdded is emitted only for X11 clients.
Test Plan:
* Installed sticky window snapping script, it works;
* Installed a couple of tiling scripts, with some small changes, they work.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: strobach, TomButler, davidedmundson, mart, graesslin, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17097
2018-11-21 14:13:52 +00:00
|
|
|
void WorkspaceWrapper::setupAbstractClientConnections(AbstractClient *client)
|
2012-01-21 09:51:22 +00:00
|
|
|
{
|
[scripting] Emit clientAdded for Wayland clients
Summary:
Currently, if a script relies on clientAdded to setup some required
connections, then it probably won't work with Wayland clients because
clientAdded is emitted only for X11 clients.
Test Plan:
* Installed sticky window snapping script, it works;
* Installed a couple of tiling scripts, with some small changes, they work.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: strobach, TomButler, davidedmundson, mart, graesslin, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17097
2018-11-21 14:13:52 +00:00
|
|
|
connect(client, &AbstractClient::clientMinimized, this, &WorkspaceWrapper::clientMinimized);
|
|
|
|
connect(client, &AbstractClient::clientUnminimized, this, &WorkspaceWrapper::clientUnminimized);
|
|
|
|
connect(client, qOverload<AbstractClient *, bool, bool>(&AbstractClient::clientMaximizedStateChanged),
|
2015-06-07 01:17:34 +00:00
|
|
|
this, &WorkspaceWrapper::clientMaximizeSet);
|
2012-01-21 09:51:22 +00:00
|
|
|
}
|
2012-01-22 11:38:03 +00:00
|
|
|
|
2019-09-24 08:48:08 +00:00
|
|
|
void WorkspaceWrapper::setupClientConnections(X11Client *client)
|
[scripting] Emit clientAdded for Wayland clients
Summary:
Currently, if a script relies on clientAdded to setup some required
connections, then it probably won't work with Wayland clients because
clientAdded is emitted only for X11 clients.
Test Plan:
* Installed sticky window snapping script, it works;
* Installed a couple of tiling scripts, with some small changes, they work.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: strobach, TomButler, davidedmundson, mart, graesslin, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17097
2018-11-21 14:13:52 +00:00
|
|
|
{
|
|
|
|
setupAbstractClientConnections(client);
|
|
|
|
|
2019-09-24 08:48:08 +00:00
|
|
|
connect(client, &X11Client::clientManaging, this, &WorkspaceWrapper::clientManaging);
|
|
|
|
connect(client, &X11Client::clientFullScreenSet, this, &WorkspaceWrapper::clientFullScreenSet);
|
[scripting] Emit clientAdded for Wayland clients
Summary:
Currently, if a script relies on clientAdded to setup some required
connections, then it probably won't work with Wayland clients because
clientAdded is emitted only for X11 clients.
Test Plan:
* Installed sticky window snapping script, it works;
* Installed a couple of tiling scripts, with some small changes, they work.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: strobach, TomButler, davidedmundson, mart, graesslin, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D17097
2018-11-21 14:13:52 +00:00
|
|
|
}
|
|
|
|
|
2012-04-10 18:56:13 +00:00
|
|
|
void WorkspaceWrapper::showOutline(const QRect &geometry)
|
|
|
|
{
|
2013-04-25 06:14:34 +00:00
|
|
|
outline()->show(geometry);
|
2012-04-10 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WorkspaceWrapper::showOutline(int x, int y, int width, int height)
|
|
|
|
{
|
2013-04-25 06:14:34 +00:00
|
|
|
outline()->show(QRect(x, y, width, height));
|
2012-04-10 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WorkspaceWrapper::hideOutline()
|
|
|
|
{
|
2013-04-25 06:14:34 +00:00
|
|
|
outline()->hide();
|
2012-04-10 18:56:13 +00:00
|
|
|
}
|
|
|
|
|
2019-09-24 08:48:08 +00:00
|
|
|
X11Client *WorkspaceWrapper::getClient(qulonglong windowId)
|
2012-06-22 07:51:27 +00:00
|
|
|
{
|
2014-03-20 08:19:53 +00:00
|
|
|
return Workspace::self()->findClient(Predicate::WindowMatch, windowId);
|
2012-06-22 07:51:27 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 07:23:47 +00:00
|
|
|
QSize WorkspaceWrapper::desktopGridSize() const
|
|
|
|
{
|
|
|
|
return VirtualDesktopManager::self()->grid().size();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::desktopGridWidth() const
|
|
|
|
{
|
|
|
|
return desktopGridSize().width();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::desktopGridHeight() const
|
|
|
|
{
|
|
|
|
return desktopGridSize().height();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::workspaceHeight() const
|
|
|
|
{
|
|
|
|
return desktopGridHeight() * displayHeight();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::workspaceWidth() const
|
|
|
|
{
|
|
|
|
return desktopGridWidth() * displayWidth();
|
|
|
|
}
|
|
|
|
|
2013-04-03 10:19:27 +00:00
|
|
|
int WorkspaceWrapper::numScreens() const
|
|
|
|
{
|
|
|
|
return screens()->count();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WorkspaceWrapper::activeScreen() const
|
|
|
|
{
|
|
|
|
return screens()->current();
|
|
|
|
}
|
|
|
|
|
2014-02-27 08:55:45 +00:00
|
|
|
QRect WorkspaceWrapper::virtualScreenGeometry() const
|
|
|
|
{
|
|
|
|
return screens()->geometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize WorkspaceWrapper::virtualScreenSize() const
|
|
|
|
{
|
|
|
|
return screens()->size();
|
|
|
|
}
|
|
|
|
|
2020-01-29 13:39:14 +00:00
|
|
|
void WorkspaceWrapper::sendClientToScreen(AbstractClient *client, int screen)
|
|
|
|
{
|
|
|
|
if (screen < 0 || screen >= screens()->count()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
workspace()->sendClientToScreen(client, screen);
|
|
|
|
}
|
|
|
|
|
2016-11-02 21:56:56 +00:00
|
|
|
QtScriptWorkspaceWrapper::QtScriptWorkspaceWrapper(QObject* parent)
|
|
|
|
: WorkspaceWrapper(parent) {}
|
|
|
|
|
2018-11-21 16:34:24 +00:00
|
|
|
QList<KWin::AbstractClient *> QtScriptWorkspaceWrapper::clientList() const
|
|
|
|
{
|
|
|
|
return workspace()->allClientList();
|
|
|
|
}
|
2016-11-02 21:56:56 +00:00
|
|
|
|
2018-11-21 16:34:24 +00:00
|
|
|
QQmlListProperty<KWin::AbstractClient> DeclarativeScriptWorkspaceWrapper::clients()
|
2016-11-02 21:56:56 +00:00
|
|
|
{
|
Use nullptr everywhere
Summary:
Because KWin is a very old project, we use three kinds of null pointer
literals: 0, NULL, and nullptr. Since C++11, it's recommended to use
nullptr keyword.
This change converts all usages of 0 and NULL literal to nullptr. Even
though it breaks git history, we need to do it in order to have consistent
code as well to ease code reviews (it's very tempting for some people to
add unrelated changes to their patches, e.g. converting NULL to nullptr).
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson, romangg
Reviewed By: #kwin, davidedmundson, romangg
Subscribers: romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D23618
2019-09-19 14:46:54 +00:00
|
|
|
return QQmlListProperty<KWin::AbstractClient>(this, nullptr, &DeclarativeScriptWorkspaceWrapper::countClientList, &DeclarativeScriptWorkspaceWrapper::atClientList);
|
2016-11-02 21:56:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 16:34:24 +00:00
|
|
|
int DeclarativeScriptWorkspaceWrapper::countClientList(QQmlListProperty<KWin::AbstractClient> *clients)
|
2016-11-02 21:56:56 +00:00
|
|
|
{
|
2016-11-03 07:17:11 +00:00
|
|
|
Q_UNUSED(clients)
|
2018-11-21 16:34:24 +00:00
|
|
|
return workspace()->allClientList().size();
|
2016-11-02 21:56:56 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 16:34:24 +00:00
|
|
|
KWin::AbstractClient *DeclarativeScriptWorkspaceWrapper::atClientList(QQmlListProperty<KWin::AbstractClient> *clients, int index)
|
2016-11-02 21:56:56 +00:00
|
|
|
{
|
2016-11-03 07:17:11 +00:00
|
|
|
Q_UNUSED(clients)
|
2018-11-21 16:34:24 +00:00
|
|
|
return workspace()->allClientList().at(index);
|
2016-11-02 21:56:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DeclarativeScriptWorkspaceWrapper::DeclarativeScriptWorkspaceWrapper(QObject* parent)
|
|
|
|
: WorkspaceWrapper(parent) {}
|
|
|
|
|
2012-01-22 11:38:03 +00:00
|
|
|
} // KWin
|