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