18 lines
357 B
C++
18 lines
357 B
C++
#ifndef STYLEC_HPP
|
|
#define STYLEC_HPP
|
|
|
|
#include "UtilityMacros.hpp"
|
|
#include <QStylePlugin>
|
|
|
|
class StyleC : public QStylePlugin
|
|
{
|
|
Q_OBJECT
|
|
// Json file in global root directory
|
|
Q_PLUGIN_METADATA(IID "org.styles.C" FILE "StyleC.json")
|
|
A_CUSTOM_MACRO(SomeArg, "StyleC_Custom.json", AnotherArg)
|
|
public:
|
|
QStyle* create(const QString& key);
|
|
};
|
|
|
|
#endif
|