forked from qt-creator/qt-creator
Cannot put a source file template into a resource in a source directory as Visual Studio will grab and build it.
31 lines
704 B
C++
31 lines
704 B
C++
#ifndef @SINGLE_INCLUDE_GUARD@
|
|
#define @SINGLE_INCLUDE_GUARD@
|
|
|
|
#include <QDesignerCustomWidgetInterface>
|
|
|
|
class @PLUGIN_CLASS@ : public QObject, public QDesignerCustomWidgetInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QDesignerCustomWidgetInterface)
|
|
|
|
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
|