qskinny/skins/material3/QskMaterial3SkinFactory.h

29 lines
855 B
C
Raw Normal View History

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
2023-04-06 09:23:37 +02:00
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
#ifndef QSK_MATERIAL_SKIN_FACTORY_H
#define QSK_MATERIAL_SKIN_FACTORY_H
2022-07-05 08:36:25 +02:00
#include "QskMaterial3Global.h"
#include <QskSkinFactory.h>
2022-07-05 08:36:25 +02:00
class QSK_MATERIAL3_EXPORT QskMaterial3SkinFactory : public QskSkinFactory
{
Q_OBJECT
2023-04-05 17:47:15 +02:00
#if defined( QSK_MATERIAL3_MAKEDLL )
Q_PLUGIN_METADATA( IID QskSkinFactoryIID FILE "metadata.json" )
Q_INTERFACES( QskSkinFactory )
2023-04-05 17:47:15 +02:00
#endif
2018-08-03 08:15:28 +02:00
public:
2022-07-05 08:36:25 +02:00
QskMaterial3SkinFactory( QObject* parent = nullptr );
~QskMaterial3SkinFactory() override;
2018-07-31 17:32:25 +02:00
QStringList skinNames() const override;
QskSkin* createSkin( const QString& skinName ) override;
};
#endif