19 lines
369 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#ifndef STYLED_HPP
#define STYLED_HPP
#include <QStylePlugin>
2020-02-01 23:06:01 +01:00
#include "UtilityMacros.hpp"
2017-07-20 19:35:53 +02:00
class StyleD : public QStylePlugin
{
Q_OBJECT
// Json file in global sub director
Q_PLUGIN_METADATA(IID "org.styles.D" FILE "sub/StyleD.json")
2020-08-30 11:54:41 +02:00
A_CUSTOM_MACRO(org.styles.D, "sub/StyleD_Custom.json", AnotherArg)
2017-07-20 19:35:53 +02:00
public:
QStyle* create(const QString& key);
};
#endif