QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RListViewPlugin.h
Go to the documentation of this file.
1 #ifndef RLISTVIEWPLUGIN_H_
2 #define RLISTVIEWPLUGIN_H_
3 
4 #include <QDesignerCustomWidgetInterface>
5 
6 class RListViewPlugin: public QObject, public QDesignerCustomWidgetInterface {
7 
8  Q_OBJECT
9  Q_INTERFACES(QDesignerCustomWidgetInterface)
10 
11 public:
12  RListViewPlugin(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:
28 };
29 
30 #endif