2015-10-02 13:04:57 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_WAYLAND_TEST_H
|
|
|
|
#define KWIN_WAYLAND_TEST_H
|
|
|
|
|
|
|
|
#include "../../main.h"
|
|
|
|
|
|
|
|
// Qt
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
namespace KWayland
|
|
|
|
{
|
|
|
|
namespace Client
|
|
|
|
{
|
|
|
|
class ConnectionThread;
|
|
|
|
class Compositor;
|
|
|
|
class PlasmaShell;
|
|
|
|
class PlasmaWindowManagement;
|
2016-11-25 06:17:43 +00:00
|
|
|
class PointerConstraints;
|
2016-06-30 11:32:54 +00:00
|
|
|
class Seat;
|
|
|
|
class ServerSideDecorationManager;
|
|
|
|
class Shell;
|
|
|
|
class ShellSurface;
|
|
|
|
class ShmPool;
|
|
|
|
class Surface;
|
2016-04-22 12:13:37 +00:00
|
|
|
class XdgShellSurface;
|
2016-06-30 11:32:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-02 13:04:57 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2016-07-01 10:37:09 +00:00
|
|
|
class AbstractClient;
|
2016-07-01 07:54:44 +00:00
|
|
|
class ShellClient;
|
|
|
|
|
2015-10-02 13:04:57 +00:00
|
|
|
class WaylandTestApplication : public Application
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-09-30 14:35:52 +00:00
|
|
|
WaylandTestApplication(OperationMode mode, int &argc, char **argv);
|
2015-10-02 13:04:57 +00:00
|
|
|
virtual ~WaylandTestApplication();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void performStartup() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createBackend();
|
|
|
|
void createX11Connection();
|
|
|
|
void continueStartupWithScreens();
|
2017-10-01 07:06:51 +00:00
|
|
|
void continueStartupWithSceen();
|
2015-10-02 13:04:57 +00:00
|
|
|
void continueStartupWithX();
|
|
|
|
void startXwaylandServer();
|
|
|
|
|
|
|
|
int m_xcbConnectionFd = -1;
|
|
|
|
QProcess *m_xwaylandProcess = nullptr;
|
2015-11-12 13:05:09 +00:00
|
|
|
QMetaObject::Connection m_xwaylandFailConnection;
|
2015-10-02 13:04:57 +00:00
|
|
|
};
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
|
|
|
|
enum class AdditionalWaylandInterface {
|
|
|
|
Seat = 1 << 0,
|
|
|
|
Decoration = 1 << 1,
|
|
|
|
PlasmaShell = 1 << 2,
|
2016-11-25 06:17:43 +00:00
|
|
|
WindowManagement = 1 << 3,
|
|
|
|
PointerConstraints = 1 << 4
|
2016-06-30 11:32:54 +00:00
|
|
|
};
|
|
|
|
Q_DECLARE_FLAGS(AdditionalWaylandInterfaces, AdditionalWaylandInterface)
|
|
|
|
/**
|
|
|
|
* Creates a Wayland Connection in a dedicated thread and creates various
|
|
|
|
* client side objects which can be used to create windows.
|
|
|
|
* @returns @c true if created successfully, @c false if there was an error
|
|
|
|
* @see destroyWaylandConnection
|
|
|
|
**/
|
2016-12-03 13:31:14 +00:00
|
|
|
bool setupWaylandConnection(AdditionalWaylandInterfaces flags = AdditionalWaylandInterfaces());
|
2016-06-30 11:32:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroys the Wayland Connection created with @link{setupWaylandConnection}.
|
|
|
|
* This can be called from cleanup in order to ensure that no Wayland Connection
|
|
|
|
* leaks into the next test method.
|
|
|
|
* @see setupWaylandConnection
|
|
|
|
*/
|
|
|
|
void destroyWaylandConnection();
|
|
|
|
|
|
|
|
KWayland::Client::ConnectionThread *waylandConnection();
|
|
|
|
KWayland::Client::Compositor *waylandCompositor();
|
|
|
|
KWayland::Client::Shell *waylandShell();
|
|
|
|
KWayland::Client::ShmPool *waylandShmPool();
|
|
|
|
KWayland::Client::Seat *waylandSeat();
|
|
|
|
KWayland::Client::ServerSideDecorationManager *waylandServerSideDecoration();
|
|
|
|
KWayland::Client::PlasmaShell *waylandPlasmaShell();
|
|
|
|
KWayland::Client::PlasmaWindowManagement *waylandWindowManagement();
|
2016-11-25 06:17:43 +00:00
|
|
|
KWayland::Client::PointerConstraints *waylandPointerConstraints();
|
2016-06-30 11:32:54 +00:00
|
|
|
|
|
|
|
bool waitForWaylandPointer();
|
|
|
|
bool waitForWaylandTouch();
|
2016-08-11 09:17:09 +00:00
|
|
|
bool waitForWaylandKeyboard();
|
2016-06-30 11:32:54 +00:00
|
|
|
|
|
|
|
void flushWaylandConnection();
|
|
|
|
|
|
|
|
KWayland::Client::Surface *createSurface(QObject *parent = nullptr);
|
2016-04-22 12:13:37 +00:00
|
|
|
enum class ShellSurfaceType {
|
|
|
|
WlShell,
|
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
|
|
|
XdgShellV5,
|
|
|
|
XdgShellV6
|
2016-04-22 12:13:37 +00:00
|
|
|
};
|
|
|
|
QObject *createShellSurface(ShellSurfaceType type, KWayland::Client::Surface *surface, QObject *parent = nullptr);
|
2016-06-30 11:32:54 +00:00
|
|
|
KWayland::Client::ShellSurface *createShellSurface(KWayland::Client::Surface *surface, QObject *parent = nullptr);
|
2016-04-22 12:13:37 +00:00
|
|
|
KWayland::Client::XdgShellSurface *createXdgShellV5Surface(KWayland::Client::Surface *surface, QObject *parent = nullptr);
|
2016-06-30 11:32:54 +00:00
|
|
|
|
2017-07-31 14:12:37 +00:00
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
/**
|
|
|
|
* Creates a shared memory buffer of @p size in @p color and attaches it to the @p surface.
|
|
|
|
* The @p surface gets damaged and committed, thus it's rendered.
|
|
|
|
**/
|
2017-08-30 09:01:55 +00:00
|
|
|
void render(KWayland::Client::Surface *surface, const QSize &size, const QColor &color, const QImage::Format &format = QImage::Format_ARGB32_Premultiplied);
|
2016-07-01 07:54:44 +00:00
|
|
|
|
2017-07-31 14:12:37 +00:00
|
|
|
/**
|
|
|
|
* Creates a shared memory buffer using the supplied image @p img and attaches it to the @p surface
|
|
|
|
*/
|
|
|
|
void render(KWayland::Client::Surface *surface, const QImage &img);
|
|
|
|
|
2016-07-01 07:54:44 +00:00
|
|
|
/**
|
|
|
|
* Waits till a new ShellClient is shown and returns the created ShellClient.
|
|
|
|
* If no ShellClient gets shown during @p timeout @c null is returned.
|
|
|
|
**/
|
|
|
|
ShellClient *waitForWaylandWindowShown(int timeout = 5000);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Combination of @link{render} and @link{waitForWaylandWindowShown}.
|
|
|
|
**/
|
|
|
|
ShellClient *renderAndWaitForShown(KWayland::Client::Surface *surface, const QSize &size, const QColor &color, const QImage::Format &format = QImage::Format_ARGB32, int timeout = 5000);
|
2016-07-01 10:37:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Waits for the @p client to be destroyed.
|
|
|
|
**/
|
|
|
|
bool waitForWindowDestroyed(AbstractClient *client);
|
2016-08-16 06:19:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Locks the screen and waits till the screen is locked.
|
|
|
|
* @returns @c true if the screen could be locked, @c false otherwise
|
|
|
|
**/
|
|
|
|
bool lockScreen();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unlocks the screen and waits till the screen is unlocked.
|
|
|
|
* @returns @c true if the screen could be unlocked, @c false otherwise
|
|
|
|
**/
|
|
|
|
bool unlockScreen();
|
2016-06-30 11:32:54 +00:00
|
|
|
}
|
|
|
|
|
2015-10-02 13:04:57 +00:00
|
|
|
}
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(KWin::Test::AdditionalWaylandInterfaces)
|
2016-04-22 12:13:37 +00:00
|
|
|
Q_DECLARE_METATYPE(KWin::Test::ShellSurfaceType)
|
2016-06-30 11:32:54 +00:00
|
|
|
|
2017-09-30 14:35:52 +00:00
|
|
|
#define WAYLANDTEST_MAIN_HELPER(TestObject, DPI, OperationMode) \
|
2015-10-02 13:04:57 +00:00
|
|
|
int main(int argc, char *argv[]) \
|
|
|
|
{ \
|
|
|
|
setenv("QT_QPA_PLATFORM", "wayland-org.kde.kwin.qpa", true); \
|
|
|
|
setenv("QT_QPA_PLATFORM_PLUGIN_PATH", KWINQPAPATH, true); \
|
2016-01-30 11:31:19 +00:00
|
|
|
setenv("KWIN_FORCE_OWN_QPA", "1", true); \
|
2015-11-10 09:58:33 +00:00
|
|
|
DPI; \
|
2017-09-30 14:35:52 +00:00
|
|
|
KWin::WaylandTestApplication app(OperationMode, argc, argv); \
|
2015-10-02 13:04:57 +00:00
|
|
|
app.setAttribute(Qt::AA_Use96Dpi, true); \
|
|
|
|
TestObject tc; \
|
|
|
|
return QTest::qExec(&tc, argc, argv); \
|
|
|
|
}
|
|
|
|
|
2017-09-30 14:35:52 +00:00
|
|
|
#ifdef NO_XWAYLAND
|
|
|
|
#define WAYLANDTEST_MAIN(TestObject) WAYLANDTEST_MAIN_HELPER(TestObject, QCoreApplication::setAttribute(Qt::AA_DisableHighDpiScaling), KWin::Application::OperationModeWaylandOnly)
|
|
|
|
#else
|
|
|
|
#define WAYLANDTEST_MAIN(TestObject) WAYLANDTEST_MAIN_HELPER(TestObject, QCoreApplication::setAttribute(Qt::AA_DisableHighDpiScaling), KWin::Application::OperationModeXwayland)
|
|
|
|
#endif
|
2015-11-10 09:58:33 +00:00
|
|
|
|
2015-10-02 13:04:57 +00:00
|
|
|
#endif
|