Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef QFITNAMEDWIDGETPLUGIN_H
00015 #define QFITNAMEDWIDGETPLUGIN_H
00016
00017 #include <QDesignerCustomWidgetInterface>
00018
00019 class QFitNamedWidgetPlugin : public QObject, public QDesignerCustomWidgetInterface
00020 {
00021 Q_OBJECT
00022 Q_INTERFACES(QDesignerCustomWidgetInterface)
00023
00024 public:
00025 QFitNamedWidgetPlugin(QObject *parent = 0);
00026
00027 bool isContainer() const;
00028 bool isInitialized() const;
00029 QIcon icon() const;
00030 QString domXml() const;
00031 QString group() const;
00032 QString includeFile() const;
00033 QString name() const;
00034 QString toolTip() const;
00035 QString whatsThis() const;
00036 QWidget *createWidget(QWidget *parent);
00037 void initialize(QDesignerFormEditorInterface *core);
00038
00039 private:
00040 bool initialized;
00041 };
00042
00043
00044 #endif
00045