You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qtermwidget-packaging/lib/designer/qtermwidgetplugin.h

34 lines
738 B

#ifndef QTERMWIDGETPLUGIN_H
#define QTERMWIDGETPLUGIN_H
#include <QDesignerCustomWidgetInterface>
class QTermWidgetPlugin : public QObject, public QDesignerCustomWidgetInterface
{
Q_OBJECT
Q_INTERFACES(QDesignerCustomWidgetInterface)
public:
QTermWidgetPlugin(QObject *parent = 0);
virtual ~QTermWidgetPlugin();
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 initialized;
};
#endif