2020-08-13 21:08:54 +02:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2016 Marco Martin <mart@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
*/
|
2016-04-01 15:06:31 +02:00
|
|
|
#ifndef THEMETEST_H
|
|
|
|
#define THEMETEST_H
|
|
|
|
|
2019-12-14 16:58:05 +01:00
|
|
|
#include <QTest>
|
2016-04-01 15:06:31 +02:00
|
|
|
|
|
|
|
#include "plasma/svg.h"
|
2021-03-05 19:15:32 +01:00
|
|
|
#include "plasma/theme.h"
|
2016-04-01 15:06:31 +02:00
|
|
|
|
|
|
|
class ThemeTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void cleanupTestCase();
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void loadSvgIcon();
|
2016-04-13 10:43:27 +02:00
|
|
|
void testColors();
|
2016-08-02 10:08:26 +02:00
|
|
|
void testCompositingChange();
|
2016-04-01 15:06:31 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Plasma::Svg *m_svg;
|
2016-04-13 10:43:27 +02:00
|
|
|
Plasma::Theme *m_theme;
|
2016-04-01 15:06:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|