2019-06-20 12:02:28 +02:00

28 lines
612 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the 3-clause BSD License
*****************************************************************************/
#ifndef OTHERSKIN_H
#define OTHERSKIN_H
#include <QskSkin.h>
class Palette;
class OtherSkin : public QskSkin
{
public:
OtherSkin( const QString& name, QObject* parent = nullptr );
~OtherSkin() override;
private:
void initHints();
void initGraphicFilters();
QString m_name;
Palette* m_palette;
};
#endif