summaryrefslogtreecommitdiff
path: root/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp
diff options
context:
space:
mode:
authorSergey Shambir <sergey.shambir.auto@gmail.com>2013-03-19 00:41:44 +0400
committerSergey Shambir <sergey.shambir.auto@gmail.com>2013-04-26 13:30:48 +0200
commit516116c5a53a83b2ca70da518e9fcea5c783305e (patch)
treeae67305b94a2f04488269b55b73388f1123a45a9 /src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp
parentecacaab7a486191e928e1ce52da974c4b2de8efd (diff)
downloadqt-creator-516116c5a53a83b2ca70da518e9fcea5c783305e.tar.gz
PythonEditor: added class wizard
Contains SourceGenerator class which was also used to generate app template in PythonProjectManager; it saved for future use. Change-Id: I3d44e6d33a3beabc73030acdd6740edf1745e485 Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp')
-rw-r--r--src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp80
1 files changed, 80 insertions, 0 deletions
diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp b/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp
new file mode 100644
index 0000000000..80d5f0e4b5
--- /dev/null
+++ b/src/plugins/pythoneditor/wizard/pythonclasswizarddialog.cpp
@@ -0,0 +1,80 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include "pythonclasswizarddialog.h"
+#include "pythonclassnamepage.h"
+
+#include <utils/newclasswidget.h>
+#include <coreplugin/basefilewizard.h>
+
+namespace PythonEditor {
+
+ClassWizardDialog::ClassWizardDialog(QWidget *parent)
+ : Utils::Wizard(parent)
+ , m_classNamePage(new ClassNamePage(this))
+{
+ setWindowTitle(tr("Python Class Wizard"));
+ Core::BaseFileWizard::setupWizard(this);
+ const int classNameId = addPage(m_classNamePage.data());
+ wizardProgress()->item(classNameId)->setTitle(tr("Details"));
+}
+
+ClassWizardDialog::~ClassWizardDialog()
+{
+}
+
+ClassWizardParameters ClassWizardDialog::parameters() const
+{
+ ClassWizardParameters p;
+ const Utils::NewClassWidget *ncw = m_classNamePage->newClassWidget();
+ p.className = ncw->className();
+ p.fileName = ncw->sourceFileName();
+ p.baseClass = ncw->baseClassName();
+ p.path = ncw->path();
+ p.classType = ncw->classType();
+
+ return p;
+}
+
+void ClassWizardDialog::setExtraValues(const QVariantMap &extraValues)
+{
+ m_extraValues = extraValues;
+}
+
+const QVariantMap &ClassWizardDialog::extraValues() const
+{
+ return m_extraValues;
+}
+
+void ClassWizardDialog::setPath(const QString &path)
+{
+ m_classNamePage->newClassWidget()->setPath(path);
+}
+
+} // namespace PythonEditor