File indexing completed on 2024-05-19 16:37:09

0001 /*
0002     SPDX-FileCopyrightText: 2014 Marco Martin <mart@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 #ifndef FRAMESVGTEST_H
0007 #define FRAMESVGTEST_H
0008 
0009 #include <QTest>
0010 
0011 #include "plasma/framesvg.h"
0012 
0013 class FrameSvgTest : public QObject
0014 {
0015     Q_OBJECT
0016 
0017 public Q_SLOTS:
0018     void initTestCase();
0019     void cleanupTestCase();
0020 
0021 private Q_SLOTS:
0022     void margins();
0023     void contentsRect();
0024     void setTheme();
0025     void repaintBlocked();
0026 
0027 private:
0028     Plasma::FrameSvg *m_frameSvg;
0029     QDir m_cacheDir;
0030 };
0031 
0032 #endif