2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2014-09-17 08:29:03 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2014-09-17 08:29:03 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2014-09-17 08:29:03 +00:00
|
|
|
#ifndef KWIN_MOCK_CLIENT_H
|
|
|
|
#define KWIN_MOCK_CLIENT_H
|
|
|
|
|
2015-04-29 12:13:20 +00:00
|
|
|
#include <abstract_client.h>
|
|
|
|
|
2014-09-17 08:29:03 +00:00
|
|
|
#include <QObject>
|
2014-09-26 12:01:44 +00:00
|
|
|
#include <QRect>
|
2014-09-17 08:29:03 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2019-09-24 08:48:08 +00:00
|
|
|
class X11Client : public AbstractClient
|
2014-09-17 08:29:03 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-09-24 08:48:08 +00:00
|
|
|
explicit X11Client(QObject *parent);
|
|
|
|
~X11Client() override;
|
2016-09-15 19:03:40 +00:00
|
|
|
void showOnScreenEdge() override;
|
2014-09-26 12:01:44 +00:00
|
|
|
|
2014-09-17 08:29:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|