2017-07-25 05:24:27 +00:00
|
|
|
#ifndef OTHERSKIN_H
|
|
|
|
#define OTHERSKIN_H
|
|
|
|
|
|
|
|
#include <QskSkin.h>
|
|
|
|
|
|
|
|
class Palette;
|
|
|
|
|
|
|
|
class OtherSkin : public QskSkin
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OtherSkin( const QString& name, QObject* parent = nullptr );
|
|
|
|
virtual ~OtherSkin();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void initHints();
|
2017-07-26 15:54:25 +00:00
|
|
|
void initGraphicFilters();
|
2017-07-25 05:24:27 +00:00
|
|
|
|
|
|
|
QString m_name;
|
|
|
|
Palette* m_palette;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OTHERSKIN_H
|