diff --git a/src/plugins/debugger/debuggeruiswitcher.cpp b/src/plugins/debugger/debuggeruiswitcher.cpp index a7db1101a7ac0215d623d899ee6527340d21e160..2c9b2237e26fdf3ea30a98c35666c437d7d13c63 100644 --- a/src/plugins/debugger/debuggeruiswitcher.cpp +++ b/src/plugins/debugger/debuggeruiswitcher.cpp @@ -153,6 +153,11 @@ DebuggerUISwitcher::~DebuggerUISwitcher() delete d; } +QStringList DebuggerUISwitcher::supportedLanguages() const +{ + return d->m_languages; +} + void DebuggerUISwitcher::addMenuAction(Core::Command *command, const QString &langName, const QString &group) { diff --git a/src/plugins/debugger/debuggeruiswitcher.h b/src/plugins/debugger/debuggeruiswitcher.h index 52a4e1cb3a533522cf4a82c54ef2895cf06dbc1f..522d5fd61ab338c36ab6b6e4932a1e0d0ccb4cc7 100644 --- a/src/plugins/debugger/debuggeruiswitcher.h +++ b/src/plugins/debugger/debuggeruiswitcher.h @@ -77,6 +77,8 @@ public: void addMenuAction(Core::Command *command, const QString &langName, const QString &group = QString()); + QStringList supportedLanguages() const; + // Changes the active language UI to the one specified by langName. // Does nothing if automatic switching is toggled off from settings. void setActiveLanguage(const QString &langName); diff --git a/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp b/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp index de6e9bba3008dc74126dd82b453754bf44468e52..3307df5b4c807186f05e6fd3f469572cc410c53a 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp @@ -37,7 +37,6 @@ #include <projectexplorer/projectexplorerconstants.h> #include <projectexplorer/applicationlauncher.h> #include <utils/qtcassert.h> -#include <debugger/debuggerconstants.h> #include <debugger/debuggerconstants.h> #include <debugger/debuggeruiswitcher.h> @@ -147,8 +146,12 @@ QmlRunControlFactory::~QmlRunControlFactory() bool QmlRunControlFactory::canRun(RunConfiguration *runConfiguration, const QString &mode) const { - Q_UNUSED(mode); - return (qobject_cast<QmlProjectRunConfiguration*>(runConfiguration) != 0); + QmlProjectRunConfiguration *config = qobject_cast<QmlProjectRunConfiguration*>(runConfiguration); + if (mode == ProjectExplorer::Constants::RUNMODE) { + return config != 0; + } else { + return (config != 0) && Debugger::DebuggerUISwitcher::instance()->supportedLanguages().contains(Qml::Constants::LANG_QML); + } } RunControl *QmlRunControlFactory::create(RunConfiguration *runConfiguration,