2009-06-29 14:47:04 +02:00
|
|
|
#ifndef @SINGLE_INCLUDE_GUARD@
|
|
|
|
|
#define @SINGLE_INCLUDE_GUARD@
|
|
|
|
|
|
|
|
|
|
#include <QDesignerCustomWidgetInterface>
|
|
|
|
|
|
|
|
|
|
class @PLUGIN_CLASS@ : public QObject, public QDesignerCustomWidgetInterface
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_INTERFACES(QDesignerCustomWidgetInterface)
|
2013-02-12 14:15:31 +01:00
|
|
|
@SINGLE_PLUGIN_METADATA@
|
2009-06-29 14:47:04 +02:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
@PLUGIN_CLASS@(QObject *parent = 0);
|
|
|
|
|
|
|
|
|
|
bool isContainer() const;
|
|
|
|
|
bool isInitialized() const;
|
|
|
|
|
QIcon icon() const;
|
|
|
|
|
QString domXml() const;
|
|
|
|
|
QString group() const;
|
|
|
|
|
QString includeFile() const;
|
|
|
|
|
QString name() const;
|
|
|
|
|
QString toolTip() const;
|
|
|
|
|
QString whatsThis() const;
|
|
|
|
|
QWidget *createWidget(QWidget *parent);
|
|
|
|
|
void initialize(QDesignerFormEditorInterface *core);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool m_initialized;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|