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>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class WaylandTestApplication : public Application
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
WaylandTestApplication(int &argc, char **argv);
|
|
|
|
virtual ~WaylandTestApplication();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void performStartup() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createBackend();
|
|
|
|
void createX11Connection();
|
|
|
|
void continueStartupWithScreens();
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-11-10 09:58:33 +00:00
|
|
|
#define WAYLANDTEST_MAIN_HELPER(TestObject, DPI) \
|
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; \
|
2015-10-02 13:04:57 +00:00
|
|
|
KWin::WaylandTestApplication app(argc, argv); \
|
|
|
|
app.setAttribute(Qt::AA_Use96Dpi, true); \
|
|
|
|
TestObject tc; \
|
|
|
|
return QTest::qExec(&tc, argc, argv); \
|
|
|
|
}
|
|
|
|
|
2015-11-10 09:58:33 +00:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 6, 0))
|
2016-02-11 08:34:19 +00:00
|
|
|
#define WAYLANDTEST_MAIN(TestObject) WAYLANDTEST_MAIN_HELPER(TestObject, QCoreApplication::setAttribute(Qt::AA_DisableHighDpiScaling) )
|
2015-11-10 09:58:33 +00:00
|
|
|
#else
|
2016-02-11 08:34:19 +00:00
|
|
|
#define WAYLANDTEST_MAIN(TestObject) WAYLANDTEST_MAIN_HELPER(TestObject,)
|
2015-11-10 09:58:33 +00:00
|
|
|
#endif
|
|
|
|
|
2015-10-02 13:04:57 +00:00
|
|
|
#endif
|