Skip to content
Snippets Groups Projects
Commit daea8e66 authored by dt's avatar dt
Browse files

Fixes: Changing the build config should update the run config.

Task:     242465
Details:  connect quite a few signals. It doesn't work 100%, since it
really depends on to many things.
parent 460c7c9a
No related branches found
No related tags found
No related merge requests found
...@@ -104,6 +104,7 @@ bool QMakeStep::init(const QString &name) ...@@ -104,6 +104,7 @@ bool QMakeStep::init(const QString &name)
m_buildConfiguration = name; m_buildConfiguration = name;
const QtVersion *qtVersion = m_pro->qtVersion(name); const QtVersion *qtVersion = m_pro->qtVersion(name);
if (!qtVersion->isValid()) { if (!qtVersion->isValid()) {
#if defined(Q_OS_MAC) #if defined(Q_OS_MAC)
emit addToOutputWindow(tr("\n<font color=\"#ff0000\"><b>No valid Qt version set. Set one in Preferences </b></font>\n")); emit addToOutputWindow(tr("\n<font color=\"#ff0000\"><b>No valid Qt version set. Set one in Preferences </b></font>\n"));
......
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
#include <QtGui/QFormLayout> #include <QtGui/QFormLayout>
#include <QtGui/QInputDialog> #include <QtGui/QInputDialog>
#include <QtGui/QLabel>
using namespace Qt4ProjectManager::Internal; using namespace Qt4ProjectManager::Internal;
using namespace Qt4ProjectManager; using namespace Qt4ProjectManager;
...@@ -54,17 +55,27 @@ using ProjectExplorer::PersistentSettingsReader; ...@@ -54,17 +55,27 @@ using ProjectExplorer::PersistentSettingsReader;
using ProjectExplorer::PersistentSettingsWriter; using ProjectExplorer::PersistentSettingsWriter;
Qt4RunConfiguration::Qt4RunConfiguration(Qt4Project *pro, QString proFilePath) Qt4RunConfiguration::Qt4RunConfiguration(Qt4Project *pro, QString proFilePath)
: ApplicationRunConfiguration(pro), m_proFilePath(proFilePath), m_userSetName(false) : ApplicationRunConfiguration(pro),
m_proFilePath(proFilePath),
m_userSetName(false),
m_configWidget(0),
m_executableLabel(0),
m_workingDirectoryLabel(0)
{ {
setName(tr("Qt4RunConfiguration")); setName(tr("Qt4RunConfiguration"));
if (!m_proFilePath.isEmpty()) { if (!m_proFilePath.isEmpty()) {
updateCachedValues(); updateCachedValues();
setName(QFileInfo(m_proFilePath).baseName()); setName(QFileInfo(m_proFilePath).baseName());
} }
connect(pro, SIGNAL(activeBuildConfigurationChanged()),
this, SIGNAL(effectiveExecutableChanged()));
connect(pro, SIGNAL(activeBuildConfigurationChanged()),
this, SIGNAL(effectiveWorkingDirectoryChanged()));
} }
Qt4RunConfiguration::~Qt4RunConfiguration() Qt4RunConfiguration::~Qt4RunConfiguration()
{ {
} }
QString Qt4RunConfiguration::type() const QString Qt4RunConfiguration::type() const
...@@ -72,37 +83,92 @@ QString Qt4RunConfiguration::type() const ...@@ -72,37 +83,92 @@ QString Qt4RunConfiguration::type() const
return "Qt4ProjectManager.Qt4RunConfiguration"; return "Qt4ProjectManager.Qt4RunConfiguration";
} }
QWidget *Qt4RunConfiguration::configurationWidget()
//////
/// Qt4RunConfigurationWidget
/////
Qt4RunConfigurationWidget::Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4RunConfiguration, QWidget *parent)
: QWidget(parent), m_qt4RunConfiguration(qt4RunConfiguration), m_ignoreChange(false)
{ {
QWidget *configWidget = new QWidget; QFormLayout *toplayout = new QFormLayout(this);
QFormLayout *toplayout = new QFormLayout(configWidget);
toplayout->setMargin(0); toplayout->setMargin(0);
QLabel *nameLabel = new QLabel(tr("Name:")); QLabel *nameLabel = new QLabel(tr("Name:"));
QLineEdit *nameLineEdit = new QLineEdit(name()); m_nameLineEdit = new QLineEdit(m_qt4RunConfiguration->name());
nameLabel->setBuddy(nameLineEdit); nameLabel->setBuddy(m_nameLineEdit);
toplayout->addRow(nameLabel, nameLineEdit); toplayout->addRow(nameLabel, m_nameLineEdit);
QLabel *executableLabel = new QLabel(tr("Executable:")); m_executableLabel = new QLabel(m_qt4RunConfiguration->executable());
QLabel *executableLabel2 = new QLabel(executable()); toplayout->addRow(tr("Executable:"), m_executableLabel);
toplayout->addRow(executableLabel, executableLabel2);
QLabel *workingDirectoryLabel = new QLabel(tr("Working Directory:")); m_workingDirectoryLabel = new QLabel(m_qt4RunConfiguration->workingDirectory());
QLabel *workingDirectoryLabel2 = new QLabel(workingDirectory()); toplayout->addRow(tr("Working Directory:"), m_workingDirectoryLabel);
toplayout->addRow(workingDirectoryLabel, workingDirectoryLabel2);
QLabel *argumentsLabel = new QLabel(tr("&Arguments:")); QLabel *argumentsLabel = new QLabel(tr("&Arguments:"));
QLineEdit *argumentsLineEdit = new QLineEdit(ProjectExplorer::Environment::joinArgumentList(commandLineArguments())); m_argumentsLineEdit = new QLineEdit(ProjectExplorer::Environment::joinArgumentList(qt4RunConfiguration->commandLineArguments()));
argumentsLabel->setBuddy(argumentsLineEdit); argumentsLabel->setBuddy(m_argumentsLineEdit);
toplayout->addRow(argumentsLabel, argumentsLineEdit); toplayout->addRow(argumentsLabel, m_argumentsLineEdit);
connect(argumentsLineEdit, SIGNAL(textEdited(const QString&)), connect(m_argumentsLineEdit, SIGNAL(textEdited(const QString&)),
this, SLOT(setCommandLineArguments(const QString&))); this, SLOT(setCommandLineArguments(const QString&)));
connect(nameLineEdit, SIGNAL(textEdited(const QString&)), connect(m_nameLineEdit, SIGNAL(textEdited(const QString&)),
this, SLOT(nameEdited(const QString&))); this, SLOT(nameEdited(const QString&)));
return configWidget; connect(qt4RunConfiguration, SIGNAL(commandLineArgumentsChanged(QString)),
this, SLOT(commandLineArgumentsChanged(QString)));
connect(qt4RunConfiguration, SIGNAL(nameChanged(QString)),
this, SLOT(nameChanged(QString)));
connect(qt4RunConfiguration, SIGNAL(effectiveExecutableChanged()),
this, SLOT(effectiveExecutableChanged()));
connect(qt4RunConfiguration, SIGNAL(effectiveWorkingDirectoryChanged()),
this, SLOT(effectiveWorkingDirectoryChanged()));
}
void Qt4RunConfigurationWidget::setCommandLineArguments(const QString &args)
{
m_ignoreChange = true;
m_qt4RunConfiguration->setCommandLineArguments(args);
m_ignoreChange = false;
}
void Qt4RunConfigurationWidget::nameEdited(const QString &name)
{
m_ignoreChange = true;
m_qt4RunConfiguration->nameEdited(name);
m_ignoreChange = false;
}
void Qt4RunConfigurationWidget::commandLineArgumentsChanged(const QString &args)
{
if (!m_ignoreChange)
m_argumentsLineEdit->setText(args);
}
void Qt4RunConfigurationWidget::nameChanged(const QString &name)
{
if (!m_ignoreChange)
m_nameLineEdit->setText(name);
}
void Qt4RunConfigurationWidget::effectiveExecutableChanged()
{
m_executableLabel->setText(m_qt4RunConfiguration->executable());
}
void Qt4RunConfigurationWidget::effectiveWorkingDirectoryChanged()
{
m_workingDirectoryLabel->setText(m_qt4RunConfiguration->workingDirectory());
}
////// TODO c&p above
QWidget *Qt4RunConfiguration::configurationWidget()
{
return new Qt4RunConfigurationWidget(this, 0);
} }
void Qt4RunConfiguration::save(PersistentSettingsWriter &writer) const void Qt4RunConfiguration::save(PersistentSettingsWriter &writer) const
...@@ -156,6 +222,7 @@ ProjectExplorer::Environment Qt4RunConfiguration::environment() const ...@@ -156,6 +222,7 @@ ProjectExplorer::Environment Qt4RunConfiguration::environment() const
void Qt4RunConfiguration::setCommandLineArguments(const QString &argumentsString) void Qt4RunConfiguration::setCommandLineArguments(const QString &argumentsString)
{ {
m_commandLineArguments = ProjectExplorer::Environment::parseCombinedArgString(argumentsString); m_commandLineArguments = ProjectExplorer::Environment::parseCombinedArgString(argumentsString);
emit commandLineArgumentsChanged(argumentsString);
} }
void Qt4RunConfiguration::nameEdited(const QString &name) void Qt4RunConfiguration::nameEdited(const QString &name)
...@@ -167,6 +234,7 @@ void Qt4RunConfiguration::nameEdited(const QString &name) ...@@ -167,6 +234,7 @@ void Qt4RunConfiguration::nameEdited(const QString &name)
setName(name); setName(name);
m_userSetName = true; m_userSetName = true;
} }
emit nameChanged(name);
} }
QString Qt4RunConfiguration::proFilePath() const QString Qt4RunConfiguration::proFilePath() const
...@@ -222,6 +290,9 @@ void Qt4RunConfiguration::updateCachedValues() ...@@ -222,6 +290,9 @@ void Qt4RunConfiguration::updateCachedValues()
m_runMode = ProjectExplorer::ApplicationRunConfiguration::Gui; m_runMode = ProjectExplorer::ApplicationRunConfiguration::Gui;
delete reader; delete reader;
emit effectiveExecutableChanged();
emit effectiveWorkingDirectoryChanged();
} }
QString Qt4RunConfiguration::resolveVariables(const QString &buildConfiguration, const QString& in) const QString Qt4RunConfiguration::resolveVariables(const QString &buildConfiguration, const QString& in) const
...@@ -310,7 +381,7 @@ QString Qt4RunConfiguration::qmakeBuildConfigFromBuildConfiguration(const QStrin ...@@ -310,7 +381,7 @@ QString Qt4RunConfiguration::qmakeBuildConfigFromBuildConfiguration(const QStrin
else else
return "release"; return "release";
} else { } else {
// Old sytle always CONFIG+=debug_and_release // Old style always CONFIG+=debug_and_release
if (qobject_cast<Qt4Project *>(project())->qtVersion(buildConfigurationName)->defaultBuildConfig() & QtVersion::DebugBuild) if (qobject_cast<Qt4Project *>(project())->qtVersion(buildConfigurationName)->defaultBuildConfig() & QtVersion::DebugBuild)
return "debug"; return "debug";
else else
......
...@@ -36,6 +36,11 @@ ...@@ -36,6 +36,11 @@
#include <projectexplorer/applicationrunconfiguration.h> #include <projectexplorer/applicationrunconfiguration.h>
#include <QtCore/QStringList> #include <QtCore/QStringList>
#include <QtGui/QWidget>
class QWidget;
class QLabel;
class QLineEdit;
namespace Qt4ProjectManager { namespace Qt4ProjectManager {
...@@ -45,9 +50,13 @@ namespace Internal { ...@@ -45,9 +50,13 @@ namespace Internal {
class Qt4ProFileNode; class Qt4ProFileNode;
class Qt4RunConfiguration : public ProjectExplorer::ApplicationRunConfiguration class Qt4RunConfiguration : public ProjectExplorer::ApplicationRunConfiguration
{ {
Q_OBJECT Q_OBJECT
// to change the name and arguments
friend class Qt4RunConfigurationWidget;
public: public:
Qt4RunConfiguration(Qt4Project *pro, QString proFilePath); Qt4RunConfiguration(Qt4Project *pro, QString proFilePath);
virtual ~Qt4RunConfiguration(); virtual ~Qt4RunConfiguration();
...@@ -68,6 +77,14 @@ public: ...@@ -68,6 +77,14 @@ public:
// Should just be called from qt4project, since that knows that the file changed on disc // Should just be called from qt4project, since that knows that the file changed on disc
void updateCachedValues(); void updateCachedValues();
signals:
void nameChanged(const QString&);
void commandLineArgumentsChanged(const QString&);
// note those signals might not emited for every change
void effectiveExecutableChanged();
void effectiveWorkingDirectoryChanged();
private slots: private slots:
void setCommandLineArguments(const QString &argumentsString); void setCommandLineArguments(const QString &argumentsString);
void nameEdited(const QString&); void nameEdited(const QString&);
...@@ -88,6 +105,31 @@ private: ...@@ -88,6 +105,31 @@ private:
QString m_workingDir; QString m_workingDir;
ProjectExplorer::ApplicationRunConfiguration::RunMode m_runMode; ProjectExplorer::ApplicationRunConfiguration::RunMode m_runMode;
bool m_userSetName; bool m_userSetName;
QWidget *m_configWidget;
QLabel *m_executableLabel;
QLabel *m_workingDirectoryLabel;
};
class Qt4RunConfigurationWidget : public QWidget
{
Q_OBJECT
public:
Qt4RunConfigurationWidget(Qt4RunConfiguration *qt4runconfigration, QWidget *parent);
private slots:
void setCommandLineArguments(const QString &arguments);
void nameEdited(const QString &name);
// TODO connect to signals from qt4runconfiguration for changed arguments and names
void commandLineArgumentsChanged(const QString &args);
void nameChanged(const QString &name);
void effectiveExecutableChanged();
void effectiveWorkingDirectoryChanged();
private:
Qt4RunConfiguration *m_qt4RunConfiguration;
bool m_ignoreChange;
QLabel *m_executableLabel;
QLabel *m_workingDirectoryLabel;
QLineEdit *m_nameLineEdit;
QLineEdit *m_argumentsLineEdit;
}; };
class Qt4RunConfigurationFactory : public ProjectExplorer::IRunConfigurationFactory class Qt4RunConfigurationFactory : public ProjectExplorer::IRunConfigurationFactory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment