You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
361 B
18 lines
361 B
8 years ago
|
#ifndef STYLED_HPP
|
||
|
#define STYLED_HPP
|
||
|
|
||
|
#include "StyleCommon.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
|