blob: 5f10fb4a07662099ec647205b17b88e0df62a520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef STYLEE_INCLUDE_HPP
#define STYLEE_INCLUDE_HPP
#include <QStylePlugin>
#include "UtilityMacros.hpp"
class StyleE : public QStylePlugin
{
Q_OBJECT
// Json files in global root directory
Q_PLUGIN_METADATA(IID "org.styles.E" FILE "StyleE.json")
A_CUSTOM_MACRO(SomeArg, "StyleE_Custom.json", AnotherArg)
public:
QStyle* create(const QString& key);
};
#endif
|