You can not 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
358 B
19 lines
358 B
#ifndef STYLEC_HPP
|
|
#define STYLEC_HPP
|
|
|
|
#include <QStylePlugin>
|
|
|
|
#include "UtilityMacros.hpp"
|
|
|
|
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
|