-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMyWidgetPlugin.h
More file actions
33 lines (28 loc) · 875 Bytes
/
MyWidgetPlugin.h
File metadata and controls
33 lines (28 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once
#include <QObject>
#include <QtPlugin> // for Q_PLUGIN_METADATA and Q_EXPORT_PLUGIN2
#include <QDesignerCustomWidgetInterface>
class MyWidgetPlugin : public QObject, public QDesignerCustomWidgetInterface
{
Q_OBJECT
#if QT_VERSION >= 0x050000
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QDesignerCustomWidgetInterface")
#endif
Q_INTERFACES(QDesignerCustomWidgetInterface)
public:
MyWidgetPlugin(QObject *parent = 0);
virtual ~MyWidgetPlugin();
bool isContainer() const;
bool isInitialized() const;
QIcon icon() const;
QString domXml() const;
QString group() const;
QString includeFile() const;
QString name() const;
QString toolTip() const;
QString whatsThis() const;
QWidget* createWidget(QWidget *parent);
void initialize(QDesignerFormEditorInterface *core);
private:
bool initialized;
};