QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RCharacterWidgetPlugin.h
Go to the documentation of this file.
1 #ifndef RCHARACTERWIDGETPLUGIN_H_
2 #define RCHARACTERWIDGETPLUGIN_H_
3 
4 #include <QDesignerCustomWidgetInterface>
5 
6 class RCharacterWidgetPlugin: public QObject,
7  public QDesignerCustomWidgetInterface {
8 
9  Q_OBJECT
10  Q_INTERFACES(QDesignerCustomWidgetInterface)
11 
12 public:
13  RCharacterWidgetPlugin(QObject *parent = 0);
14 
15  bool isContainer() const;
16  bool isInitialized() const;
17  QIcon icon() const;
18  QString domXml() const;
19  QString group() const;
20  QString includeFile() const;
21  QString name() const;
22  QString toolTip() const;
23  QString whatsThis() const;
24  QWidget *createWidget(QWidget *parent);
25  void initialize(QDesignerFormEditorInterface *core);
26 
27 private:
29 };
30 
31 #endif