summaryrefslogtreecommitdiff
path: root/src/plugins/qt4projectmanager/projectloadwizard.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make Open Project wizard skippableDaniel Teske2012-02-031-92/+0
| | | | | | | | Task-Nr: QTCREATORBUG-6063 Change-Id: Ieace3e9e68b4e0342c35ac7c279f4b0b61076419 Reviewed-by: Eike Ziller <eike.ziller@nokia.com> Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
* Long live the king!hjk2012-01-261-1/+1
| | | | | Change-Id: I2b72b34c0cfeafc8bdbaf49b83ff723544f2b6e2 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
* Merge remote-tracking branch 'origin/2.4'Eike Ziller2011-11-111-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/libs/qmljs/qmljsinterpreter.cpp src/libs/qmljs/qmljsinterpreter.h src/plugins/debugger/qml/scriptconsole.cpp src/plugins/git/gitplugin.cpp src/plugins/qmlprofiler/canvas/qdeclarativetiledcanvas.cpp src/plugins/qmlprofiler/canvas/qdeclarativetiledcanvas_p.h Change-Id: Iad59c8d87c72a21c79c047e374c0ab689998af39
| * all: s/info@qt.nokia.com/qt-info@nokia.com/hjk2011-11-031-2/+2
| | | | | | | | | | Change-Id: If18afb5d4665924e7d9250dccbc60a65e6daa75e Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
* | Simplfy code in ProjectLoadWizardDaniel Teske2011-10-251-27/+6
|/ | | | | Change-Id: Id77ff7681c31ccca5778bbe1eed5a341523c03c1 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
* Move wizards' cancel button to the left on Mac.Eike Ziller2011-09-221-1/+11
| | | | | | | | | | | It is too far to the left now, but that can't be helped (it's a Qt limitation). Task-number: QTCREATORBUG-6156 Change-Id: I0201356234abb618dc3b573673d512c0a97c4839 Reviewed-on: http://codereview.qt-project.org/5406 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
* Header cleanup in Qt4ProjectManager.Friedemann Kleint2011-08-181-0/+2
| | | | | | | | | | Disentangle the covariant returns and introduce convenience accessors. Move internal classes away from Qt4Project. Change-Id: I6c3158988824d2a159b1b3f8ecdf8432c32be2bc Reviewed-on: http://codereview.qt.nokia.com/3216 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
* Fix/add copyright headersTobias Hunger2011-05-061-1/+1
| | | | Change-Id: I8b73d583be1ee7183f4074bce49d5390e38631a2
* Do not override mouse cursor needlesslyTobias Hunger2011-05-041-5/+2
| | | | Task-number: QTCREATORBUG-3822
* Show wizard's cancel button even on Mac.con2011-04-261-1/+2
| | | | Task-number: QTCREATORBUG-4655
* Update license.hjk2011-04-131-14/+13
|
* UI text: fix capitalizationLeena Miettinen2011-03-221-1/+1
| | | | Reviewed-by: Friedemann Kleint
* Qt4ProjectManager: New TargetSetupPagedt2011-02-221-6/+1
| | | | | | | | | | | | | | | | | | | | | | | | Rewrite the target setup page to look and baheve better. Noteable better at: - Disabling shadow building - Deselecting whole targets - Adding import directories Api-wise, Targets derived from Qt4BaseTarget have two ways to customize the targetsetuppage. a) Reimplement availableBuildConfigurations b) Leave createTargetSetupWidget and create(... Qt4TargetSetupWidget) in their default implementation. (Or only slightly customize like the desktop target does.) Or: a) Make a dummy implementation for availableBuildConfiguration b) Replace createTargetSetupWidget and return your own widget (It should match the look and feel from the other widgets.) It needs to be derived from Qt4TargetSetupWidget c) Also replace the create create(... Qt4TargetSetupWidget) function and set up the target anyway you want.
* Qt4projectManager: Refactor Qt4Target, split up in per target classesdt2011-01-171-10/+2
| | | | | | | | | | | | | | | Almost(*) all of the symbian and maemo specific code is now theoretically moveable to a separate plugin. Thus making it possible to implement new targets in a plugin. (*) Noteable missing is the qtversion, which needs to be split up per target too. Also fixes Task-Nr: QTCREATORBUG-2440 Reviewed-By: hunger Reviewed-By: ck
* It's 2011 now.con2011-01-121-1/+1
| | | | Reviewed-by: hjk
* License headers.con2010-12-171-7/+11
|
* Make wizards containing the targetsetuppage biggerTobias Hunger2010-08-181-0/+1
| | | | Task-number: QTCREATORBUG-2003
* Yet another include purging spree.Friedemann Kleint2010-07-131-0/+1
|
* Removed unneeded reimplementation of virtual function.Robert Loehning2010-07-061-6/+0
|
* Fix scanning for directories in projectloadwizardTobias Hunger2010-07-051-5/+1
|
* Show proper cursor when displaying projectloadwizardTobias Hunger2010-06-081-2/+6
| | | | Task-number: QTCREATORBUG-1597
* Fix targetsetuppage's shadowbuild dirsTobias Hunger2010-06-081-1/+1
| | | | | | | | * Fix displayed shadow build location * Fix shadow build location used by newly set up shadow builds Task-number: QTCREATORBUG-1599 Reviewed-by: dt
* Remove the side widget of the ProjectLoadWizardTobias Hunger2010-04-231-3/+2
| | | | | We only have one page there, so there is no need for the side widget.
* Add cancel button to project import wizardTobias Hunger2010-04-141-1/+1
| | | | Tasknumber: QTCREATORBUG-1149
* Only offer to import directories building the sourcesTobias Hunger2010-04-131-2/+6
| | | | Reviewed-by: dt
* Always show import wizardTobias Hunger2010-04-081-3/+0
| | | | | | | | | Show the import wizard on all imports. This eases import of shadow builds at non-default locations. Task-number: QTCREATORBUG-1069 Task-number: QTCREATORBUG-1068 Reviewed-by: dt
* Fix possible crash on project importTobias Hunger2010-04-011-9/+9
| | | | | | | | Fix possible crash on import of projects into creator with only one valid Qt version set up. Reviewed-by: dt Task-number: QTCREATORBUG-1017
* Replace QWizard with Utils::WizardJarek Kobus2010-03-311-2/+3
|
* Update projectloadwizardTobias Hunger2010-03-291-137/+28
| | | | | | | * Handle shadowbuild directories * Refactor the code Reviewed-by: dt
* Add method to retreive valid Qt versions onlyTobias Hunger2010-03-261-6/+1
|
* Introduce method to access the project directoryTobias Hunger2010-03-251-1/+1
| | | | | | ... use it. Reviewed-by: dt
* Start on a build step for creating symbian package.con2010-03-161-2/+2
|
* Show TargetSelectionPage when opening .pro filesTobias Hunger2010-03-101-29/+52
| | | | Do this as part of the ProjectLoadWizard
* Long live the king!hjk2010-03-051-1/+1
|
* Fix possible core dumpTobias Hunger2010-03-041-1/+1
| | | | | ... when creating a new project without any Qt version being available
* qWarning when failing to create default target settingsTobias Hunger2010-02-191-3/+7
|
* Clean up qt4 projectloadwizardTobias Hunger2010-02-181-27/+3
|
* Rename QMake to qmake since that's the official spelling.dt2010-02-171-1/+1
|
* Integrate target supportTobias Hunger2010-02-091-21/+44
| | | | | | | | | | * Ease cross device development by introducing 'targets' which group build- and runsettings that are valid for this one target Most of the kudos for the code review go to dt. Con, thorbjorn, ckandler and others did also review parts of this patch. Reviewed-by: dt
* Fix some code scanning issues.Friedemann Kleint2010-02-011-2/+4
| | | | QString: Use QChar where appropriate.
* Make method naming more consistent.Tobias Hunger2010-01-071-1/+1
| | | | | | | | | | | | * Use id() for methods returning a string used to represent some type of object. * Use displayName() for strings that are meant to be user visible. * Quieten some warnings while touching the files anyway. * Move Factories to their products in the plugins where that was not done before. Reviewed-by: dt
* Move extractSpec and removeSpec to Qt4BuildConfigurationdt2009-11-301-2/+3
|
* Use QFlags<> for QmakeBuildConfig that removes a few casts.dt2009-11-191-6/+6
|
* Fix -spec handlingdt2009-11-101-0/+11
|
* Merge commit '2be0845c7492ad991f23ce5c90c322df788b62b5'con2009-10-291-1/+2
|\ | | | | | | | | | | | | | | Conflicts: src/plugins/projectexplorer/projectexplorer.h src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp src/plugins/qt4projectmanager/qt4runconfiguration.cpp src/plugins/qt4projectmanager/qtversionmanager.cpp
| * Add a window title to the Import existing build settings dialogdt2009-10-271-1/+2
| |
* | The qtversions's toolchain now depends on the actual compiler not mkspecdt2009-10-221-18/+1
|/ | | | | | | | | | | That is we actually parse the mkspec and evaluate QMAKE_CXX (and a few other variables) to figure out the correct mkspec. This makes using custom mkspecs easier and is also cleaner. I also changed mkspec() and mkspecPath() to behave a little diffrent, essentialy mkspec() will return only the name (the actual dir name) of the mkspec. That is in general not sufficient for passing on to qmake. mkspecPath() only returns the correct path to mkspecs/default. Hopefully I haven't broken WinCE/Maemo/MinGW.
* Add both "debug" and "release" build configurations, not only "release".con2009-10-091-33/+6
| | | | Reviewed-by: dt
* Remove unused variable.dt2009-10-061-1/+0
|
* Changing string based api to BuildConfiguration based api.con2009-10-011-15/+10
| | | | Builds, but I'm pretty sure it doesn't *work* :)