plasma-framework/autotests/coronatest.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
1.7 KiB
C
Raw Normal View History

/*
SPDX-FileCopyrightText: 2014 Marco Martin <mart@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef CORONATEST_H
#define CORONATEST_H
#include <QTest>
#include <QTimer>
#include "plasma/corona.h"
2014-07-14 11:04:48 +02:00
#include "plasma/pluginloader.h"
2014-07-14 11:04:48 +02:00
class SimpleLoader : public Plasma::PluginLoader
{
protected:
virtual Plasma::Applet *internalLoadApplet(const QString &name, uint appletId = 0, const QVariantList &args = QVariantList()) override;
2014-07-14 11:04:48 +02:00
};
class SimpleCorona : public Plasma::Corona
{
Q_OBJECT
2014-07-14 11:04:48 +02:00
public:
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);
private:
QTimer m_timer;
};
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);
private:
QTimer m_timer;
};
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);
};
class CoronaTest : public QObject
{
Q_OBJECT
public Q_SLOTS:
void initTestCase();
void cleanupTestCase();
private Q_SLOTS:
void restore();
void checkOrder();
void startupCompletion();
void addRemoveApplets();
void immutability();
private:
SimpleCorona *m_corona;
QDir m_configDir;
};
#endif