ec5521ab3e
Better hints for the slider of the DefaultSkin - some animators and increased mouse press areas
23 lines
347 B
C++
23 lines
347 B
C++
#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();
|
|
void initGraphicFilters();
|
|
|
|
QString m_name;
|
|
Palette* m_palette;
|
|
};
|
|
|
|
#endif // OTHERSKIN_H
|