2020-08-13 21:08:54 +02:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2014 Marco Martin <mart@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
*/
|
2014-07-11 22:01:56 +02:00
|
|
|
#ifndef CORONATEST_H
|
|
|
|
#define CORONATEST_H
|
|
|
|
|
2019-12-14 16:58:05 +01:00
|
|
|
#include <QTest>
|
2014-07-11 22:01:56 +02:00
|
|
|
|
2014-07-14 11:23:22 +02:00
|
|
|
#include <QTimer>
|
|
|
|
|
2014-07-11 22:01:56 +02:00
|
|
|
#include "plasma/corona.h"
|
2014-07-14 11:04:48 +02:00
|
|
|
#include "plasma/pluginloader.h"
|
2014-07-11 22:01:56 +02:00
|
|
|
|
2014-07-14 11:04:48 +02:00
|
|
|
class SimpleLoader : public Plasma::PluginLoader
|
2014-07-11 22:01:56 +02:00
|
|
|
{
|
|
|
|
protected:
|
2021-03-05 19:15:32 +01:00
|
|
|
virtual Plasma::Applet *internalLoadApplet(const QString &name, uint appletId = 0, const QVariantList &args = QVariantList()) override;
|
2014-07-14 11:04:48 +02:00
|
|
|
};
|
|
|
|
|
2014-07-11 22:01:56 +02:00
|
|
|
class SimpleCorona : public Plasma::Corona
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-07-14 11:04:48 +02:00
|
|
|
|
2014-07-11 22:01:56 +02:00
|
|
|
public:
|
2021-03-05 19:15:32 +01:00
|
|
|
explicit SimpleCorona(QObject *parent = nullptr);
|
2014-07-14 11:04:48 +02:00
|
|
|
~SimpleCorona();
|
|
|
|
|
2018-05-23 08:05:31 +02:00
|
|
|
QRect screenGeometry(int) const override;
|
|
|
|
int screenForContainment(const Plasma::Containment *) const override;
|
2014-07-14 11:04:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class SimpleApplet : public Plasma::Applet
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-12-13 07:35:58 +01:00
|
|
|
explicit SimpleApplet(QObject *parent = nullptr, const QString &serviceId = QString(), uint appletId = 0);
|
2021-03-05 19:15:32 +01:00
|
|
|
|
2014-07-14 11:23:22 +02:00
|
|
|
private:
|
|
|
|
QTimer m_timer;
|
2014-07-11 22:01:56 +02:00
|
|
|
};
|
|
|
|
|
2014-07-15 10:16:10 +02:00
|
|
|
class SimpleContainment : public Plasma::Containment
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-12-13 07:35:58 +01:00
|
|
|
explicit SimpleContainment(QObject *parent = nullptr, const QString &serviceId = QString(), uint appletId = 0);
|
2021-03-05 19:15:32 +01:00
|
|
|
|
2014-07-15 10:16:10 +02:00
|
|
|
private:
|
|
|
|
QTimer m_timer;
|
|
|
|
};
|
|
|
|
|
2014-09-13 13:55:32 +02:00
|
|
|
class SimpleNoScreenContainment : public Plasma::Containment
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-12-13 07:35:58 +01:00
|
|
|
explicit SimpleNoScreenContainment(QObject *parent = nullptr, const QString &serviceId = QString(), uint appletId = 0);
|
2014-09-13 13:55:32 +02:00
|
|
|
};
|
|
|
|
|
2014-07-11 22:01:56 +02:00
|
|
|
class CoronaTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void cleanupTestCase();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void restore();
|
2014-09-15 15:40:15 +02:00
|
|
|
void checkOrder();
|
2014-07-11 22:01:56 +02:00
|
|
|
void startupCompletion();
|
2014-07-14 14:22:36 +02:00
|
|
|
void addRemoveApplets();
|
2014-07-11 22:01:56 +02:00
|
|
|
void immutability();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SimpleCorona *m_corona;
|
|
|
|
QDir m_configDir;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|