2018-01-03 10:57:05 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* 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
|
|
|
|
|
2022-07-05 06:36:25 +00:00
|
|
|
#include "QskMaterial3Global.h"
|
2018-01-03 10:57:05 +00:00
|
|
|
#include <QskSkinFactory.h>
|
|
|
|
|
2022-07-05 06:36:25 +00:00
|
|
|
class QSK_MATERIAL3_EXPORT QskMaterial3SkinFactory : public QskSkinFactory
|
2018-01-03 10:57:05 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_PLUGIN_METADATA( IID QskSkinFactoryIID FILE "metadata.json" )
|
|
|
|
Q_INTERFACES( QskSkinFactory )
|
|
|
|
|
2018-08-03 06:15:28 +00:00
|
|
|
public:
|
2022-07-05 06:36:25 +00:00
|
|
|
QskMaterial3SkinFactory( QObject* parent = nullptr );
|
|
|
|
~QskMaterial3SkinFactory() override;
|
2018-01-03 10:57:05 +00:00
|
|
|
|
2018-07-31 15:32:25 +00:00
|
|
|
QStringList skinNames() const override;
|
|
|
|
QskSkin* createSkin( const QString& skinName ) override;
|
2018-01-03 10:57:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|