Add target selection wizard to Qt4 projects

This commit is contained in:
Tobias Hunger
2010-02-17 16:18:21 +01:00
parent efe3ac597a
commit 1ff0a7e03a
17 changed files with 357 additions and 44 deletions

View File

@@ -207,11 +207,17 @@ ProjectExplorer::Project* Qt4Manager::openProject(const QString &fileName)
QCoreApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
Qt4Project *pro = new Qt4Project(this, canonicalFilePath);
registerProject(pro);
messageManager->displayStatusBarMessage(tr("Done opening project"), 5000);
return pro;
}
Qt4Project * Qt4Manager::createEmptyProject(const QString &path)
{
return new Qt4Project(this, path);
}
ProjectExplorer::ProjectExplorerPlugin *Qt4Manager::projectExplorer() const
{
return ProjectExplorer::ProjectExplorerPlugin::instance();