mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
37 lines
651 B
C
37 lines
651 B
C
|
/*
|
||
|
* SPDX-FileCopyrightText: 2014 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#ifndef breezestyleplugin_h
|
||
|
#define breezestyleplugin_h
|
||
|
|
||
|
#include <QStylePlugin>
|
||
|
|
||
|
namespace Breeze
|
||
|
{
|
||
|
class StylePlugin : public QStylePlugin
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QStyleFactoryInterface" FILE "breeze.json")
|
||
|
|
||
|
public:
|
||
|
//* constructor
|
||
|
explicit StylePlugin(QObject *parent = nullptr)
|
||
|
: QStylePlugin(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//* returns list of valid keys
|
||
|
QStringList keys() const;
|
||
|
|
||
|
//* create style
|
||
|
QStyle *create(const QString &) override;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|