mirror of https://github.com/cutefishos/qt-plugins
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
380 B
C++
19 lines
380 B
C++
#ifndef PSTYLEPLUGIN_H
|
|
#define PSTYLEPLUGIN_H
|
|
|
|
#include <QStylePlugin>
|
|
|
|
class ProxyStylePlugin : public QStylePlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QStyleFactoryInterface" FILE "cutefishstyle.json")
|
|
|
|
public:
|
|
ProxyStylePlugin() = default;
|
|
|
|
QStringList keys() const;
|
|
QStyle *create(const QString &key) override;
|
|
};
|
|
|
|
#endif // PSTYLEPLUGIN_H
|