23 lines
348 B
C
Raw Normal View History

2017-07-25 07:24:27 +02:00
#ifndef OTHERSKIN_H
#define OTHERSKIN_H
#include <QskSkin.h>
class Palette;
class OtherSkin : public QskSkin
{
public:
OtherSkin( const QString& name, QObject* parent = nullptr );
2018-07-31 17:32:25 +02:00
~OtherSkin() override;
2017-07-25 07:24:27 +02:00
private:
void initHints();
void initGraphicFilters();
2017-07-25 07:24:27 +02:00
QString m_name;
Palette* m_palette;
};
#endif // OTHERSKIN_H