ifw-fcfui 1.0.1
 
Loading...
Searching...
No Matches
qeansipumproughingplugin.hpp
Go to the documentation of this file.
1
5
6#ifndef QEANSIPUMPROUGHINGPLUGIN_H
7#define QEANSIPUMPROUGHINGPLUGIN_H
8
9#include <QtUiPlugin/QDesignerCustomWidgetInterface>
10
11class QeAnsiPumpRoughingPlugin : public QObject, public QDesignerCustomWidgetInterface
12{
13 Q_OBJECT
14 Q_INTERFACES(QDesignerCustomWidgetInterface)
15
16public:
17 QeAnsiPumpRoughingPlugin(QObject *parent = 0);
18
19 bool isContainer() const;
20 bool isInitialized() const;
21 QIcon icon() const;
22 QString domXml() const;
23 QString group() const;
24 QString includeFile() const;
25 QString name() const;
26 QString toolTip() const;
27 QString whatsThis() const;
28 QWidget *createWidget(QWidget *parent);
29 void initialize(QDesignerFormEditorInterface *core);
30
31private:
32 bool m_initialized;
33};
34
35#endif // QEANSIPUMPROUGHINGPLUGIN_H
QString toolTip() const
Definition qeansipumproughingplugin.cpp:56
QIcon icon() const
Definition qeansipumproughingplugin.cpp:51
QString name() const
Definition qeansipumproughingplugin.cpp:41
QWidget * createWidget(QWidget *parent)
Definition qeansipumproughingplugin.cpp:36
bool isContainer() const
Definition qeansipumproughingplugin.cpp:66
QString group() const
Definition qeansipumproughingplugin.cpp:46
QString domXml() const
Definition qeansipumproughingplugin.cpp:71
bool isInitialized() const
Definition qeansipumproughingplugin.cpp:31
QString whatsThis() const
Definition qeansipumproughingplugin.cpp:61
void initialize(QDesignerFormEditorInterface *core)
Definition qeansipumproughingplugin.cpp:21
QString includeFile() const
Definition qeansipumproughingplugin.cpp:87
QeAnsiPumpRoughingPlugin(QObject *parent=0)
Definition qeansipumproughingplugin.cpp:15