rock_widget_collection  0.1
SonarDisplayPlugin.h
Go to the documentation of this file.
1 
2 #ifndef SONARDISPLAYPLUGIN_H
3 #define SONARDISPLAYPLUGIN_H
4 
5 #include <QtGui/QtGui>
6 #include <QtDesigner/QDesignerCustomWidgetInterface>
7 
8 class SonarDisplayPlugin : public QObject , public QDesignerCustomWidgetInterface
9 {
10  Q_OBJECT
11  Q_INTERFACES(QDesignerCustomWidgetInterface)
12 
13  public:
14  SonarDisplayPlugin(QObject *parent = 0);
15  virtual ~SonarDisplayPlugin();
16 
17  bool isContainer() const;
18  bool isInitialized() const;
19  QIcon icon() const;
20  QString domXml() const;
21  QString group() const;
22  QString includeFile() const;
23  QString name() const;
24  QString toolTip() const;
25  QString whatsThis() const;
26  QWidget *createWidget(QWidget *parent);
27  void initialize(QDesignerFormEditorInterface *core);
28 
29  private:
30  bool initialized;
31 };
32 #endif
void initialize(QDesignerFormEditorInterface *core)
QString includeFile() const
QString whatsThis() const
QString name() const
QString toolTip() const
QString group() const
SonarDisplayPlugin(QObject *parent=0)
QWidget * createWidget(QWidget *parent)
bool isInitialized() const
QString domXml() const