blob: 3c093b914b622efadbc183b870c6742a51e3bd68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef STYLED_HPP
#define STYLED_HPP
#include <QStylePlugin>
#include "UtilityMacros.hpp"
class StyleD : public QStylePlugin
{
Q_OBJECT
// Json file in global sub director
Q_PLUGIN_METADATA(IID "org.styles.D" FILE "sub/StyleD.json")
A_CUSTOM_MACRO(SomeArg, "sub/StyleD_Custom.json", AnotherArg)
public:
QStyle* create(const QString& key);
};
#endif
|