19 lines
364 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#ifndef STYLEA_HPP
#define STYLEA_HPP
#include <QStylePlugin>
2020-02-01 23:06:01 +01:00
#include "UtilityMacros.hpp"
2017-07-20 19:35:53 +02:00
class StyleA : public QStylePlugin
{
Q_OBJECT
2018-01-26 17:06:56 +01:00
// Json file in source local directory
2017-07-20 19:35:53 +02:00
Q_PLUGIN_METADATA(IID "org.styles.A" FILE "StyleA.json")
2020-08-30 11:54:41 +02:00
A_CUSTOM_MACRO(org.styles.A, "StyleA_Custom.json", AnotherArg)
2017-07-20 19:35:53 +02:00
public:
QStyle* create(const QString& key);
};
#endif