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