2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "newdialog.h"
|
|
|
|
|
#include "ui_newdialog.h"
|
|
|
|
|
#include "basefilewizard.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/dialogs/iwizard.h>
|
|
|
|
|
|
|
|
|
|
#include <QtGui/QHeaderView>
|
|
|
|
|
#include <QtGui/QPushButton>
|
2009-11-27 10:33:24 +01:00
|
|
|
#include <QtCore/QDebug>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(Core::IWizard*)
|
|
|
|
|
|
|
|
|
|
static inline Core::IWizard *wizardOfItem(const QTreeWidgetItem *item = 0)
|
|
|
|
|
{
|
|
|
|
|
if (!item)
|
|
|
|
|
return 0;
|
|
|
|
|
return qVariantValue<Core::IWizard*>(item->data(0, Qt::UserRole));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
using namespace Core;
|
|
|
|
|
using namespace Core::Internal;
|
|
|
|
|
|
|
|
|
|
NewDialog::NewDialog(QWidget *parent) :
|
|
|
|
|
QDialog(parent),
|
|
|
|
|
m_ui(new Core::Internal::Ui::NewDialog),
|
|
|
|
|
m_okButton(0)
|
|
|
|
|
{
|
|
|
|
|
typedef QMap<QString, QTreeWidgetItem *> CategoryItemMap;
|
|
|
|
|
m_ui->setupUi(this);
|
|
|
|
|
m_okButton = m_ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
|
m_okButton->setDefault(true);
|
|
|
|
|
|
|
|
|
|
m_ui->watermark->setPixmap(BaseFileWizard::watermark());
|
|
|
|
|
|
|
|
|
|
m_ui->templatesTree->header()->hide();
|
|
|
|
|
connect(m_ui->templatesTree, SIGNAL(currentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)),
|
|
|
|
|
this, SLOT(currentItemChanged(QTreeWidgetItem*)));
|
|
|
|
|
connect(m_ui->templatesTree, SIGNAL(itemActivated(QTreeWidgetItem*,int)), m_okButton, SLOT(animateClick()));
|
|
|
|
|
|
|
|
|
|
connect(m_okButton, SIGNAL(clicked()), this, SLOT(okButtonClicked()));
|
|
|
|
|
connect(m_ui->buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
|
|
|
|
}
|
|
|
|
|
|
2009-11-27 10:33:24 +01:00
|
|
|
// Sort by category. id
|
|
|
|
|
bool wizardLessThan(const IWizard *w1, const IWizard *w2)
|
|
|
|
|
{
|
|
|
|
|
if (const int cc = w1->category().compare(w2->category()))
|
|
|
|
|
return cc < 0;
|
|
|
|
|
return w1->id().compare(w2->id()) < 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NewDialog::setWizards(QList<IWizard*> wizards)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
typedef QMap<QString, QTreeWidgetItem *> CategoryItemMap;
|
|
|
|
|
|
2009-11-27 10:33:24 +01:00
|
|
|
qStableSort(wizards.begin(), wizards.end(), wizardLessThan);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
CategoryItemMap categories;
|
|
|
|
|
QVariant wizardPtr;
|
|
|
|
|
|
|
|
|
|
m_ui->templatesTree->clear();
|
|
|
|
|
foreach (IWizard *wizard, wizards) {
|
|
|
|
|
// ensure category root
|
|
|
|
|
const QString categoryName = wizard->category();
|
|
|
|
|
CategoryItemMap::iterator cit = categories.find(categoryName);
|
|
|
|
|
if (cit == categories.end()) {
|
|
|
|
|
QTreeWidgetItem *categoryItem = new QTreeWidgetItem(m_ui->templatesTree);
|
|
|
|
|
categoryItem->setFlags(Qt::ItemIsEnabled);
|
2010-01-07 18:17:24 +01:00
|
|
|
categoryItem->setText(0, wizard->displayCategory());
|
2008-12-02 12:01:29 +01:00
|
|
|
qVariantSetValue<IWizard*>(wizardPtr, 0);
|
|
|
|
|
categoryItem->setData(0, Qt::UserRole, wizardPtr);
|
|
|
|
|
cit = categories.insert(categoryName, categoryItem);
|
|
|
|
|
}
|
|
|
|
|
// add item
|
2010-01-07 18:17:24 +01:00
|
|
|
QTreeWidgetItem *wizardItem = new QTreeWidgetItem(cit.value(), QStringList(wizard->displayName()));
|
2008-12-02 12:01:29 +01:00
|
|
|
wizardItem->setIcon(0, wizard->icon());
|
|
|
|
|
qVariantSetValue<IWizard*>(wizardPtr, wizard);
|
|
|
|
|
wizardItem->setData(0, Qt::UserRole, wizardPtr);
|
|
|
|
|
wizardItem->setFlags(Qt::ItemIsEnabled|Qt::ItemIsSelectable);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Core::IWizard *NewDialog::showDialog()
|
|
|
|
|
{
|
|
|
|
|
m_ui->templatesTree->expandAll();
|
|
|
|
|
if (QTreeWidgetItem *rootItem = m_ui->templatesTree->topLevelItem(0)) {
|
|
|
|
|
m_ui->templatesTree->scrollToItem(rootItem);
|
|
|
|
|
if (rootItem->childCount())
|
|
|
|
|
m_ui->templatesTree->setCurrentItem(rootItem->child(0));
|
|
|
|
|
}
|
|
|
|
|
updateOkButton();
|
|
|
|
|
if (exec() != Accepted)
|
|
|
|
|
return 0;
|
|
|
|
|
return currentWizard();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NewDialog::~NewDialog()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IWizard *NewDialog::currentWizard() const
|
|
|
|
|
{
|
|
|
|
|
return wizardOfItem(m_ui->templatesTree->currentItem());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NewDialog::currentItemChanged(QTreeWidgetItem *cat)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (const IWizard *wizard = wizardOfItem(cat))
|
|
|
|
|
m_ui->descLabel->setText(wizard->description());
|
|
|
|
|
else
|
|
|
|
|
m_ui->descLabel->setText(QString());
|
|
|
|
|
updateOkButton();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NewDialog::okButtonClicked()
|
|
|
|
|
{
|
|
|
|
|
if (m_ui->templatesTree->currentItem())
|
|
|
|
|
accept();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NewDialog::updateOkButton()
|
|
|
|
|
{
|
|
|
|
|
m_okButton->setEnabled(currentWizard() != 0);
|
|
|
|
|
}
|