qskinny/skins/fluent2/QskFluent2SkinFactory.h

29 lines
835 B
C
Raw Normal View History

2023-04-13 15:19:36 +00:00
/******************************************************************************
2024-01-17 13:31:45 +00:00
* QSkinny - Copyright (C) The authors
2023-04-13 15:19:36 +00:00
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
2023-06-17 10:23:34 +00:00
#ifndef QSK_FLUENT2_SKIN_FACTORY_H
#define QSK_FLUENT2_SKIN_FACTORY_H
2023-04-13 15:19:36 +00:00
2023-06-17 10:23:34 +00:00
#include "QskFluent2Global.h"
2023-04-13 15:19:36 +00:00
#include <QskSkinFactory.h>
2023-06-17 10:23:34 +00:00
class QSK_FLUENT2_EXPORT QskFluent2SkinFactory : public QskSkinFactory
2023-04-13 15:19:36 +00:00
{
Q_OBJECT
2023-06-17 10:23:34 +00:00
#if defined( QSK_FLUENT2_MAKEDLL )
2023-04-13 15:19:36 +00:00
Q_PLUGIN_METADATA( IID QskSkinFactoryIID FILE "metadata.json" )
Q_INTERFACES( QskSkinFactory )
#endif
public:
2023-06-17 10:23:34 +00:00
QskFluent2SkinFactory( QObject* parent = nullptr );
2023-07-02 10:18:47 +00:00
~QskFluent2SkinFactory() override;
2023-04-13 15:19:36 +00:00
QStringList skinNames() const override;
QskSkin* createSkin( const QString& skinName ) override;
};
#endif