/* For general Scribus (>=1.3.2) copyright and licensing information please refer to the COPYING file provided with the program. Following this notice may exist a copyright and/or license notice that predates the release of Scribus 1.3.2 for which a new license (GPL+exception) is in place. */ #include #include "scrspinboxplugin.h" #include "../scrspinbox.h" ScrSpinBoxPlugin::ScrSpinBoxPlugin(QObject* parent) : QObject(parent), initialized(false) { } void ScrSpinBoxPlugin::initialize(QDesignerFormEditorInterface* core) { Q_UNUSED(core); if (!initialized) initialized = true; } bool ScrSpinBoxPlugin::isInitialized() const { return initialized; } QWidget* ScrSpinBoxPlugin::createWidget(QWidget* parent) { return new ScrSpinBox(parent); } QString ScrSpinBoxPlugin::name() const { return QLatin1String("ScrSpinBox"); } QString ScrSpinBoxPlugin::group() const { return QLatin1String("Scribus"); } QIcon ScrSpinBoxPlugin::icon() const { return QIcon(); } QString ScrSpinBoxPlugin::toolTip() const { return QString(); } QString ScrSpinBoxPlugin::whatsThis() const { return QString(); } bool ScrSpinBoxPlugin::isContainer() const { return false; } QString ScrSpinBoxPlugin::domXml() const { return QLatin1String("\n" " \n" " \n" " 0\n" " 0\n" " 180\n" " 80\n" " \n" " \n" "\n"); } QString ScrSpinBoxPlugin::includeFile() const { return QLatin1String("scrspinbox.h"); } QString ScrSpinBoxPlugin::codeTemplate() const { return QString(); } Q_EXPORT_PLUGIN2(scribus_scrspinbox, ScrSpinBoxPlugin)