kwin/autotests/tabbox/mock_tabboxhandler.h
Vlad Zahorodnii 4a1e7df599 tabbox: Drop desktop switching
Tabbox supports two operation modes: switching between windows and
desktops. Switching between windows is more commonly used. Desktop
switching is not exposed in user settings and it requires some advanced
knowledge of kwin's internals to enable it.

On the other hand, over the past years, we've double downed on effects
like desktop grid and overview to provide graphical means to switch
between virtual desktops.

This change drops desktop switching because it's effectively unused to
simplify the tabbox code, which can be very handy for the future
refactorings of window switching.
2023-03-24 22:01:12 +00:00

92 lines
2.6 KiB
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2012 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KWIN_MOCK_TABBOX_HANDLER_H
#define KWIN_MOCK_TABBOX_HANDLER_H
#include "tabbox/tabboxhandler.h"
namespace KWin
{
class MockTabBoxHandler : public TabBox::TabBoxHandler
{
Q_OBJECT
public:
MockTabBoxHandler(QObject *parent = nullptr);
~MockTabBoxHandler() override;
void activateAndClose() override
{
}
std::weak_ptr<TabBox::TabBoxClient> activeClient() const override;
void setActiveClient(const std::weak_ptr<TabBox::TabBoxClient> &client);
int activeScreen() const override
{
return 0;
}
std::weak_ptr<TabBox::TabBoxClient> clientToAddToList(TabBox::TabBoxClient *client, int desktop) const override;
int currentDesktop() const override
{
return 1;
}
std::weak_ptr<TabBox::TabBoxClient> desktopClient() const override
{
return std::weak_ptr<TabBox::TabBoxClient>();
}
QString desktopName(TabBox::TabBoxClient *client) const override
{
return "desktop";
}
void elevateClient(TabBox::TabBoxClient *c, QWindow *tabbox, bool elevate) const override
{
}
void shadeClient(TabBox::TabBoxClient *c, bool b) const override
{
}
virtual void hideOutline()
{
}
std::weak_ptr<TabBox::TabBoxClient> nextClientFocusChain(TabBox::TabBoxClient *client) const override;
std::weak_ptr<TabBox::TabBoxClient> firstClientFocusChain() const override;
bool isInFocusChain(TabBox::TabBoxClient *client) const override;
bool isKWinCompositing() const override
{
return false;
}
void raiseClient(TabBox::TabBoxClient *c) const override
{
}
void restack(TabBox::TabBoxClient *c, TabBox::TabBoxClient *under) override
{
}
virtual void showOutline(const QRect &outline)
{
}
TabBox::TabBoxClientList stackingOrder() const override
{
return TabBox::TabBoxClientList();
}
void grabbedKeyEvent(QKeyEvent *event) const override;
void highlightWindows(TabBox::TabBoxClient *window = nullptr, QWindow *controller = nullptr) override
{
}
bool noModifierGrab() const override
{
return false;
}
// mock methods
std::weak_ptr<TabBox::TabBoxClient> createMockWindow(const QString &caption);
void closeWindow(TabBox::TabBoxClient *client);
private:
QList<std::shared_ptr<TabBox::TabBoxClient>> m_windows;
std::weak_ptr<TabBox::TabBoxClient> m_activeClient;
};
} // namespace KWin
#endif