c0274df69a
NO_CHANGELOG
85 lines
1.7 KiB
C++
85 lines
1.7 KiB
C++
/*
|
|
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"
|
|
#include "plasma/pluginloader.h"
|
|
|
|
class SimpleLoader : public Plasma::PluginLoader
|
|
{
|
|
protected:
|
|
virtual Plasma::Applet *internalLoadApplet(const QString &name, uint appletId = 0, const QVariantList &args = QVariantList()) override;
|
|
};
|
|
|
|
class SimpleCorona : public Plasma::Corona
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SimpleCorona(QObject *parent = nullptr);
|
|
~SimpleCorona();
|
|
|
|
QRect screenGeometry(int) const override;
|
|
int screenForContainment(const Plasma::Containment *) const override;
|
|
};
|
|
|
|
class SimpleApplet : public Plasma::Applet
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SimpleApplet(QObject *parent = nullptr, const QString &serviceId = QString(), uint appletId = 0);
|
|
|
|
private:
|
|
QTimer m_timer;
|
|
};
|
|
|
|
class SimpleContainment : public Plasma::Containment
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SimpleContainment(QObject *parent = nullptr, const QString &serviceId = QString(), uint appletId = 0);
|
|
|
|
private:
|
|
QTimer m_timer;
|
|
};
|
|
|
|
class SimpleNoScreenContainment : public Plasma::Containment
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
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
|