blob: e1fdf0bbd14cf2e20735a7b7078886eac3be5b77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef STYLEA_HPP
#define STYLEA_HPP
#include <QStylePlugin>
#include "UtilityMacros.hpp"
class StyleA : public QStylePlugin
{
Q_OBJECT
// Json file in source local directory
Q_PLUGIN_METADATA(IID "org.styles.A" FILE "StyleA.json")
A_CUSTOM_MACRO(SomeArg, "StyleA_Custom.json", AnotherArg)
public:
QStyle* create(const QString& key);
};
#endif
|