blob: 9696aaa26eef39c557b91307995b5311bca510e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef STYLED_HPP
#define STYLED_HPP
#include "UtilityMacros.hpp"
#include <QStylePlugin>
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
|