forked from qt-creator/qt-creator
New File Dialog: Choose right default project for adding
So far we used a heuristic that prefers .pro files in the same directory as the new files. That fails if there are multiple .pro files in the same directory. So instead introduce a mechanism to pass extra data through the wizard. Task-number: QTCREATORBUG-7157 Change-Id: I615f7292e16a0a6cb1e84f090016879f1038409f Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
@@ -434,7 +434,7 @@ QString BaseFileWizard::descriptionImage() const
|
|||||||
return d->m_parameters.descriptionImage();
|
return d->m_parameters.descriptionImage();
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseFileWizard::runWizard(const QString &path, QWidget *parent, const QString &platform)
|
void BaseFileWizard::runWizard(const QString &path, QWidget *parent, const QString &platform, const QVariantMap &extraValues)
|
||||||
{
|
{
|
||||||
QTC_ASSERT(!path.isEmpty(), return);
|
QTC_ASSERT(!path.isEmpty(), return);
|
||||||
|
|
||||||
@@ -493,7 +493,7 @@ void BaseFileWizard::runWizard(const QString &path, QWidget *parent, const QStri
|
|||||||
}
|
}
|
||||||
if (firstExtensionPageHit)
|
if (firstExtensionPageHit)
|
||||||
foreach (IFileWizardExtension *ex, extensions)
|
foreach (IFileWizardExtension *ex, extensions)
|
||||||
ex->firstExtensionPageShown(files);
|
ex->firstExtensionPageShown(files, extraValues);
|
||||||
if (accepted)
|
if (accepted)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -158,7 +158,7 @@ public:
|
|||||||
|
|
||||||
virtual QString descriptionImage() const;
|
virtual QString descriptionImage() const;
|
||||||
|
|
||||||
virtual void runWizard(const QString &path, QWidget *parent, const QString &platform);
|
virtual void runWizard(const QString &path, QWidget *parent, const QString &platform, const QVariantMap &extraValues);
|
||||||
virtual Core::FeatureSet requiredFeatures() const;
|
virtual Core::FeatureSet requiredFeatures() const;
|
||||||
virtual WizardFlags flags() const;
|
virtual WizardFlags flags() const;
|
||||||
|
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
#include <coreplugin/featureprovider.h>
|
#include <coreplugin/featureprovider.h>
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
#include <QVariantMap>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QIcon;
|
class QIcon;
|
||||||
@@ -77,7 +78,7 @@ public:
|
|||||||
virtual FeatureSet requiredFeatures() const = 0;
|
virtual FeatureSet requiredFeatures() const = 0;
|
||||||
virtual WizardFlags flags() const = 0;
|
virtual WizardFlags flags() const = 0;
|
||||||
|
|
||||||
virtual void runWizard(const QString &path, QWidget *parent, const QString &platform) = 0;
|
virtual void runWizard(const QString &path, QWidget *parent, const QString &platform, const QVariantMap &variables) = 0;
|
||||||
|
|
||||||
bool isAvailable(const QString &platformName) const;
|
bool isAvailable(const QString &platformName) const;
|
||||||
QStringList supportedPlatforms() const;
|
QStringList supportedPlatforms() const;
|
||||||
|
|||||||
@@ -385,9 +385,10 @@ ICore::~ICore()
|
|||||||
|
|
||||||
void ICore::showNewItemDialog(const QString &title,
|
void ICore::showNewItemDialog(const QString &title,
|
||||||
const QList<IWizard *> &wizards,
|
const QList<IWizard *> &wizards,
|
||||||
const QString &defaultLocation)
|
const QString &defaultLocation,
|
||||||
|
const QVariantMap &extraVariables)
|
||||||
{
|
{
|
||||||
m_mainwindow->showNewItemDialog(title, wizards, defaultLocation);
|
m_mainwindow->showNewItemDialog(title, wizards, defaultLocation, extraVariables);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ICore::showOptionsDialog(const QString &group, const QString &page, QWidget *parent)
|
bool ICore::showOptionsDialog(const QString &group, const QString &page, QWidget *parent)
|
||||||
|
|||||||
@@ -81,7 +81,8 @@ public:
|
|||||||
|
|
||||||
static void showNewItemDialog(const QString &title,
|
static void showNewItemDialog(const QString &title,
|
||||||
const QList<IWizard *> &wizards,
|
const QList<IWizard *> &wizards,
|
||||||
const QString &defaultLocation = QString());
|
const QString &defaultLocation = QString(),
|
||||||
|
const QVariantMap &extraVariables = QVariantMap());
|
||||||
|
|
||||||
static bool showOptionsDialog(const QString &group = QString(),
|
static bool showOptionsDialog(const QString &group = QString(),
|
||||||
const QString &page = QString(),
|
const QString &page = QString(),
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
#include <QVariantMap>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QWizardPage;
|
class QWizardPage;
|
||||||
@@ -71,8 +72,9 @@ public:
|
|||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
/* Notification about the first extension page being shown. */
|
/* Notification about the first extension page being shown. */
|
||||||
virtual void firstExtensionPageShown(const QList<GeneratedFile> &files) {
|
virtual void firstExtensionPageShown(const QList<GeneratedFile> &files, const QVariantMap &extraValues) {
|
||||||
Q_UNUSED(files)
|
Q_UNUSED(files)
|
||||||
|
Q_UNUSED(extraValues)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -937,7 +937,8 @@ void MainWindow::setFocusToEditor()
|
|||||||
|
|
||||||
void MainWindow::showNewItemDialog(const QString &title,
|
void MainWindow::showNewItemDialog(const QString &title,
|
||||||
const QList<IWizard *> &wizards,
|
const QList<IWizard *> &wizards,
|
||||||
const QString &defaultLocation)
|
const QString &defaultLocation,
|
||||||
|
const QVariantMap &extraVariables)
|
||||||
{
|
{
|
||||||
// Scan for wizards matching the filter and pick one. Don't show
|
// Scan for wizards matching the filter and pick one. Don't show
|
||||||
// dialog if there is only one.
|
// dialog if there is only one.
|
||||||
@@ -978,7 +979,7 @@ void MainWindow::showNewItemDialog(const QString &title,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
wizard->runWizard(path, this, selectedPlatform);
|
wizard->runWizard(path, this, selectedPlatform, extraVariables);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MainWindow::showOptionsDialog(const QString &category,
|
bool MainWindow::showOptionsDialog(const QString &category,
|
||||||
|
|||||||
@@ -137,7 +137,8 @@ public slots:
|
|||||||
|
|
||||||
void showNewItemDialog(const QString &title,
|
void showNewItemDialog(const QString &title,
|
||||||
const QList<IWizard *> &wizards,
|
const QList<IWizard *> &wizards,
|
||||||
const QString &defaultLocation = QString());
|
const QString &defaultLocation = QString(),
|
||||||
|
const QVariantMap &extraVariables = QVariantMap());
|
||||||
|
|
||||||
bool showOptionsDialog(const QString &category = QString(),
|
bool showOptionsDialog(const QString &category = QString(),
|
||||||
const QString &page = QString(),
|
const QString &page = QString(),
|
||||||
|
|||||||
@@ -2569,10 +2569,12 @@ void ProjectExplorerPlugin::addNewFile()
|
|||||||
QTC_ASSERT(d->m_currentNode, return)
|
QTC_ASSERT(d->m_currentNode, return)
|
||||||
QString location = directoryFor(d->m_currentNode);
|
QString location = directoryFor(d->m_currentNode);
|
||||||
|
|
||||||
|
QVariantMap map;
|
||||||
|
map.insert(QLatin1String(Constants::PREFERED_PROJECT_NODE), d->m_currentNode->projectNode()->path());
|
||||||
Core::ICore::showNewItemDialog(tr("New File", "Title of dialog"),
|
Core::ICore::showNewItemDialog(tr("New File", "Title of dialog"),
|
||||||
Core::IWizard::wizardsOfKind(Core::IWizard::FileWizard)
|
Core::IWizard::wizardsOfKind(Core::IWizard::FileWizard)
|
||||||
+ Core::IWizard::wizardsOfKind(Core::IWizard::ClassWizard),
|
+ Core::IWizard::wizardsOfKind(Core::IWizard::ClassWizard),
|
||||||
location);
|
location, map);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ProjectExplorerPlugin::addNewSubproject()
|
void ProjectExplorerPlugin::addNewSubproject()
|
||||||
@@ -2583,9 +2585,11 @@ void ProjectExplorerPlugin::addNewSubproject()
|
|||||||
if (d->m_currentNode->nodeType() == ProjectNodeType
|
if (d->m_currentNode->nodeType() == ProjectNodeType
|
||||||
&& d->m_currentNode->projectNode()->supportedActions(
|
&& d->m_currentNode->projectNode()->supportedActions(
|
||||||
d->m_currentNode->projectNode()).contains(ProjectNode::AddSubProject)) {
|
d->m_currentNode->projectNode()).contains(ProjectNode::AddSubProject)) {
|
||||||
|
QVariantMap map;
|
||||||
|
map.insert(QLatin1String(Constants::PREFERED_PROJECT_NODE), d->m_currentNode->projectNode()->path());
|
||||||
Core::ICore::showNewItemDialog(tr("New Subproject", "Title of dialog"),
|
Core::ICore::showNewItemDialog(tr("New Subproject", "Title of dialog"),
|
||||||
Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard),
|
Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard),
|
||||||
location);
|
location, map);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -205,6 +205,9 @@ const char PROJECT_WIZARD_CATEGORY_DISPLAY[] = QT_TRANSLATE_NOOP("ProjectExplore
|
|||||||
const char IMPORT_WIZARD_CATEGORY[] = "T.Import";
|
const char IMPORT_WIZARD_CATEGORY[] = "T.Import";
|
||||||
const char IMPORT_WIZARD_CATEGORY_DISPLAY[] = QT_TRANSLATE_NOOP("ProjectExplorer", "Import Project");
|
const char IMPORT_WIZARD_CATEGORY_DISPLAY[] = QT_TRANSLATE_NOOP("ProjectExplorer", "Import Project");
|
||||||
|
|
||||||
|
// Wizard extra values
|
||||||
|
const char PREFERED_PROJECT_NODE[] = "ProjectExplorer.PreferedProjectNode";
|
||||||
|
|
||||||
// Build step lists ids:
|
// Build step lists ids:
|
||||||
const char BUILDSTEPS_CLEAN[] = "ProjectExplorer.BuildSteps.Clean";
|
const char BUILDSTEPS_CLEAN[] = "ProjectExplorer.BuildSteps.Clean";
|
||||||
const char BUILDSTEPS_BUILD[] = "ProjectExplorer.BuildSteps.Build";
|
const char BUILDSTEPS_BUILD[] = "ProjectExplorer.BuildSteps.Build";
|
||||||
|
|||||||
@@ -231,15 +231,23 @@ static QList<ProjectEntry> findDeployProject(const QList<ProjectEntry> &projects
|
|||||||
// the longest matching path (list containing"/project/subproject1" matching
|
// the longest matching path (list containing"/project/subproject1" matching
|
||||||
// common path "/project/subproject1/newuserpath").
|
// common path "/project/subproject1/newuserpath").
|
||||||
static int findMatchingProject(const QList<ProjectEntry> &projects,
|
static int findMatchingProject(const QList<ProjectEntry> &projects,
|
||||||
const QString &commonPath)
|
const QString &commonPath,
|
||||||
|
const QString &preferedProjectNode)
|
||||||
{
|
{
|
||||||
if (projects.isEmpty() || commonPath.isEmpty())
|
if (projects.isEmpty() || commonPath.isEmpty())
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
const int count = projects.size();
|
||||||
|
if (!preferedProjectNode.isEmpty()) {
|
||||||
|
for (int p = 0; p < count; ++p) {
|
||||||
|
if (projects.at(p).node->path() == preferedProjectNode)
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int bestMatch = -1;
|
int bestMatch = -1;
|
||||||
int bestMatchLength = 0;
|
int bestMatchLength = 0;
|
||||||
bool bestMatchIsProFile = false;
|
bool bestMatchIsProFile = false;
|
||||||
const int count = projects.size();
|
|
||||||
for (int p = 0; p < count; p++) {
|
for (int p = 0; p < count; p++) {
|
||||||
// Direct match or better match? (note that the wizards' files are native).
|
// Direct match or better match? (note that the wizards' files are native).
|
||||||
const ProjectEntry &entry = projects.at(p);
|
const ProjectEntry &entry = projects.at(p);
|
||||||
@@ -268,7 +276,8 @@ static QString generatedProjectFilePath(const QList<Core::GeneratedFile> &files)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void ProjectFileWizardExtension::firstExtensionPageShown(
|
void ProjectFileWizardExtension::firstExtensionPageShown(
|
||||||
const QList<Core::GeneratedFile> &files)
|
const QList<Core::GeneratedFile> &files,
|
||||||
|
const QVariantMap &extraValues)
|
||||||
{
|
{
|
||||||
initProjectChoices(generatedProjectFilePath(files));
|
initProjectChoices(generatedProjectFilePath(files));
|
||||||
|
|
||||||
@@ -302,7 +311,8 @@ void ProjectFileWizardExtension::firstExtensionPageShown(
|
|||||||
m_context->page->setAdditionalInfo(text);
|
m_context->page->setAdditionalInfo(text);
|
||||||
bestProjectIndex = -1;
|
bestProjectIndex = -1;
|
||||||
} else {
|
} else {
|
||||||
bestProjectIndex = findMatchingProject(m_context->projects, m_context->commonDirectory);
|
bestProjectIndex = findMatchingProject(m_context->projects, m_context->commonDirectory,
|
||||||
|
extraValues.value(QLatin1String(Constants::PREFERED_PROJECT_NODE)).toString());
|
||||||
m_context->page->setNoneLabel(tr("<None>"));
|
m_context->page->setNoneLabel(tr("<None>"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ public:
|
|||||||
void applyCodeStyle(Core::GeneratedFile *file) const;
|
void applyCodeStyle(Core::GeneratedFile *file) const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void firstExtensionPageShown(const QList<Core::GeneratedFile> &files);
|
void firstExtensionPageShown(const QList<Core::GeneratedFile> &files, const QVariantMap &extraValues);
|
||||||
void initializeVersionControlChoices();
|
void initializeVersionControlChoices();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
@@ -83,9 +83,15 @@ bool SubdirsProjectWizard::postGenerateFiles(const QWizard *w, const Core::Gener
|
|||||||
{
|
{
|
||||||
const SubdirsProjectWizardDialog *wizard = qobject_cast< const SubdirsProjectWizardDialog *>(w);
|
const SubdirsProjectWizardDialog *wizard = qobject_cast< const SubdirsProjectWizardDialog *>(w);
|
||||||
if (QtWizard::qt4ProjectPostGenerateFiles(wizard, files, errorMessage)) {
|
if (QtWizard::qt4ProjectPostGenerateFiles(wizard, files, errorMessage)) {
|
||||||
|
const QtProjectParameters params = wizard->parameters();
|
||||||
|
const QString projectPath = params.projectPath();
|
||||||
|
const QString profileName = Core::BaseFileWizard::buildFileName(projectPath, params.fileName, profileSuffix());
|
||||||
|
QVariantMap map;
|
||||||
|
map.insert(QLatin1String(ProjectExplorer::Constants::PREFERED_PROJECT_NODE), profileName);
|
||||||
Core::ICore::showNewItemDialog(tr("New Subproject", "Title of dialog"),
|
Core::ICore::showNewItemDialog(tr("New Subproject", "Title of dialog"),
|
||||||
Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard),
|
Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard),
|
||||||
wizard->parameters().projectPath());
|
wizard->parameters().projectPath(),
|
||||||
|
map);
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -129,8 +129,9 @@ void BaseCheckoutWizard::setId(const QString &id)
|
|||||||
d->id = id;
|
d->id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BaseCheckoutWizard::runWizard(const QString &path, QWidget *parent, const QString & /*platform*/)
|
void BaseCheckoutWizard::runWizard(const QString &path, QWidget *parent, const QString & /*platform*/, const QVariantMap &extraValues)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(extraValues)
|
||||||
// Create dialog and launch
|
// Create dialog and launch
|
||||||
d->parameterPages = createParameterPages(path);
|
d->parameterPages = createParameterPages(path);
|
||||||
Internal::CheckoutWizardDialog dialog(d->parameterPages, parent);
|
Internal::CheckoutWizardDialog dialog(d->parameterPages, parent);
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ public:
|
|||||||
|
|
||||||
virtual QString descriptionImage() const;
|
virtual QString descriptionImage() const;
|
||||||
|
|
||||||
virtual void runWizard(const QString &path, QWidget *parent, const QString &platform);
|
virtual void runWizard(const QString &path, QWidget *parent, const QString &platform, const QVariantMap &extraValues);
|
||||||
|
|
||||||
virtual Core::FeatureSet requiredFeatures() const;
|
virtual Core::FeatureSet requiredFeatures() const;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user