qskinny/skins/material/QskMaterialSkinFactory.h

27 lines
783 B
C
Raw Normal View History

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the 3-clause BSD License
*****************************************************************************/
#ifndef QSK_MATERIAL_SKIN_FACTORY_H
#define QSK_MATERIAL_SKIN_FACTORY_H
#include <QskSkinFactory.h>
class QSK_EXPORT QskMaterialSkinFactory : public QskSkinFactory
{
Q_OBJECT
Q_PLUGIN_METADATA( IID QskSkinFactoryIID FILE "metadata.json" )
Q_INTERFACES( QskSkinFactory )
public:
QskMaterialSkinFactory( QObject* parent = nullptr );
2018-07-31 17:32:25 +02:00
~QskMaterialSkinFactory() override;
2018-07-31 17:32:25 +02:00
QStringList skinNames() const override;
QskSkin* createSkin( const QString& skinName ) override;
};
#endif