2016-04-01 15:06:31 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright 2016 Marco Martin <mart@kde.org> *
|
|
|
|
* *
|
|
|
|
* This library is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Library General Public *
|
|
|
|
* License as published by the Free Software Foundation; either *
|
|
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This library is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
|
|
* Library General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Library General Public License *
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to *
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
|
|
|
|
* Boston, MA 02110-1301, USA. *
|
|
|
|
*******************************************************************************/
|
|
|
|
#ifndef THEMETEST_H
|
|
|
|
#define THEMETEST_H
|
|
|
|
|
2018-11-06 07:23:52 +01:00
|
|
|
#include <QtTest>
|
2016-04-01 15:06:31 +02:00
|
|
|
|
|
|
|
#include "plasma/theme.h"
|
|
|
|
#include "plasma/svg.h"
|
|
|
|
|
|
|
|
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
|
|
|
|
|