19 lines
380 B
C++
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef STYLEE_INCLUDE_HPP
#define STYLEE_INCLUDE_HPP
#include <QStylePlugin>
2020-02-01 23:06:01 +01:00
#include "UtilityMacros.hpp"
2018-01-26 17:06:56 +01:00
class StyleE : public QStylePlugin
{
Q_OBJECT
// Json files in global root directory
Q_PLUGIN_METADATA(IID "org.styles.E" FILE "StyleE.json")
2020-08-30 11:54:41 +02:00
A_CUSTOM_MACRO(org.styles.E, "StyleE_Custom.json", AnotherArg)
2018-01-26 17:06:56 +01:00
public:
QStyle* create(const QString& key);
};
#endif