blob: 1fe242a54522e4eff6f5b5eebfc53362914771c7 [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the Qt Designer of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "q3wizard_plugin.h"
#include "q3wizard_container.h"
#include <QtDesigner/QDesignerFormEditorInterface>
#include <QtDesigner/QExtensionManager>
#include <QtCore/qplugin.h>
#include <QtGui/QPushButton>
#include <Qt3Support/Q3Wizard>
QT_BEGIN_NAMESPACE
Q3WizardPlugin::Q3WizardPlugin(const QIcon &icon, QObject *parent)
: QObject(parent), m_initialized(false), m_icon(icon)
{}
QString Q3WizardPlugin::name() const
{ return QLatin1String("Q3Wizard"); }
QString Q3WizardPlugin::group() const
{ return QLatin1String("[invisible]"); }
QString Q3WizardPlugin::toolTip() const
{ return QString(); }
QString Q3WizardPlugin::whatsThis() const
{ return QString(); }
QString Q3WizardPlugin::includeFile() const
{ return QLatin1String("q3wizard.h"); }
QIcon Q3WizardPlugin::icon() const
{ return m_icon; }
bool Q3WizardPlugin::isContainer() const
{ return true; }
QWidget *Q3WizardPlugin::createWidget(QWidget *parent)
{
Q3Wizard *wizard = new Q3Wizard(parent);
new Q3WizardHelper(wizard);
wizard->backButton()->setObjectName(QLatin1String("__qt__passive_") + wizard->backButton()->objectName());
wizard->nextButton()->setObjectName(QLatin1String("__qt__passive_") + wizard->nextButton()->objectName());
return wizard;
}
bool Q3WizardPlugin::isInitialized() const
{ return m_initialized; }
void Q3WizardPlugin::initialize(QDesignerFormEditorInterface *core)
{
Q_UNUSED(core);
if (m_initialized)
return;
m_initialized = true;
QExtensionManager *mgr = core->extensionManager();
Q3WizardPropertySheetFactory::registerExtension(mgr);
mgr->registerExtensions(new Q3WizardContainerFactory(mgr), Q_TYPEID(QDesignerContainerExtension));
mgr->registerExtensions(new Q3WizardExtraInfoFactory(core, mgr), Q_TYPEID(QDesignerExtraInfoExtension));
}
QString Q3WizardPlugin::codeTemplate() const
{ return QString(); }
QString Q3WizardPlugin::domXml() const
{
return QLatin1String("\
<ui language=\"c++\">\
<widget class=\"Q3Wizard\" name=\"wizard\">\
<property name=\"geometry\">\
<rect>\
<x>0</x>\
<y>0</y>\
<width>100</width>\
<height>80</height>\
</rect>\
</property>\
<widget class=\"QWidget\" />\
<widget class=\"QWidget\" />\
</widget>\
</ui>");
}
QT_END_NAMESPACE