##// END OF EJS Templates
Fixes plugin naming mismatch
Fixes plugin naming mismatch

File last commit:

r1201:f0af86b6db21
r1215:69e818b7432f
Show More
qchartsplugin.h
24 lines | 581 B | text/x-c | CLexer
Michal Klocek
Adds designer plugin stub
r1201 #ifndef QCHARTSPLUGIN_H_
#define QCHARTSPLUGIN_H_
#include <QDesignerCustomWidgetInterface>
class QChartsPlugin: public QObject,public QDesignerCustomWidgetInterface
{
Q_OBJECT
Q_INTERFACES(QDesignerCustomWidgetInterface)
public:
QChartsPlugin(QObject *parent = 0);
~QChartsPlugin();
QString name() const;
QString includeFile() const;
QString group() const;
QIcon icon() const;
QString toolTip() const;
QString whatsThis() const;
bool isContainer() const;
QWidget *createWidget(QWidget *parent);
};
#endif /* QCHARTSPLUGIN_H_ */