2020-08-13 21:08:54 +02:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2012 Sebastian Kügler <sebas@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
*/
|
2014-01-17 13:48:17 +01:00
|
|
|
|
2019-11-10 11:06:10 +01:00
|
|
|
#ifndef DPITEST_H
|
|
|
|
#define DPITEST_H
|
2014-01-17 13:48:17 +01:00
|
|
|
|
|
|
|
#include <QCoreApplication>
|
2014-05-19 16:58:37 +02:00
|
|
|
#include <QGuiApplication>
|
2014-01-17 13:48:17 +01:00
|
|
|
|
|
|
|
class QCommandLineParser;
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
class DPITestPrivate;
|
|
|
|
|
2014-05-19 16:58:37 +02:00
|
|
|
class DPITest : public QGuiApplication
|
2014-01-17 13:48:17 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-26 01:45:47 +02:00
|
|
|
public:
|
|
|
|
DPITest(int &argc, char **argv, QCommandLineParser *parser);
|
|
|
|
virtual ~DPITest();
|
2014-01-17 13:48:17 +01:00
|
|
|
|
2014-04-26 01:45:47 +02:00
|
|
|
public Q_SLOTS:
|
|
|
|
void runMain();
|
2014-01-17 13:48:17 +01:00
|
|
|
|
2014-04-26 01:45:47 +02:00
|
|
|
private:
|
|
|
|
DPITestPrivate *d;
|
2014-01-17 13:48:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|