Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef GO4PLUGIN_H
00015 #define GO4PLUGIN_H
00016
00017
00018 #include <QtDesigner/QtDesigner>
00019 #include <QtCore/qplugin.h>
00020
00021 class Go4WidgetPlugins: public QObject, public QDesignerCustomWidgetCollectionInterface
00022 {
00023 Q_OBJECT
00024 Q_INTERFACES(QDesignerCustomWidgetCollectionInterface)
00025
00026 public:
00027 Go4WidgetPlugins(QObject *parent = 0);
00028
00029 virtual QList<QDesignerCustomWidgetInterface*> customWidgets() const;
00030
00031 private:
00032 QList<QDesignerCustomWidgetInterface*> widgets;
00033 };
00034
00035
00036 #endif
00037