qskinny/skins/fluent2/QskFluent2SkinFactory.h

29 lines
835 B
C
Raw Normal View History

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