forked from qt-creator/qt-creator
Make the QmlJSEditor work when Qml support is disabled.
- Enable qmlprojectplugin even if Qml support is disabled. - But disable its wizards in that case. - Disable the Qml file wizard if the support is off. Reviewed-by: Kai Koehne
This commit is contained in:
@@ -117,3 +117,9 @@ win32-msvc* {
|
||||
# Handle S60 support: default on Windows, conditionally built on other platforms.
|
||||
macx:SUPPORT_QT_S60 = $$(QTCREATOR_WITH_S60)
|
||||
else:SUPPORT_QT_S60=1
|
||||
|
||||
# Define QTCREATOR_WITH_QML if building with Qml support
|
||||
SUPPORT_QT_QML = $$(QTCREATOR_WITH_QML)
|
||||
!isEmpty(SUPPORT_QT_QML) {
|
||||
DEFINES += QTCREATOR_WITH_QML
|
||||
}
|
||||
|
||||
@@ -37,13 +37,11 @@ SUBDIRS = plugin_coreplugin \
|
||||
|
||||
SUPPORT_QT_QML = $$(QTCREATOR_WITH_QML)
|
||||
|
||||
!isEmpty(SUPPORT_QT_QML) {
|
||||
message("Adding support for Qt/QML projects.")
|
||||
DEFINES += QTCREATOR_WITH_QML
|
||||
contains(QT_CONFIG, declarative) {
|
||||
SUBDIRS += plugin_qmlprojectmanager
|
||||
|
||||
contains(QT_CONFIG, declarative) {
|
||||
|
||||
SUBDIRS += plugin_qmlprojectmanager
|
||||
!isEmpty(SUPPORT_QT_QML) {
|
||||
message("Adding support for QmlDesigner, QmlInspector and Qml wizards.")
|
||||
|
||||
include(private_headers.pri)
|
||||
exists($${QT_PRIVATE_HEADERS}/QtDeclarative/private/qdeclarativecontext_p.h) {
|
||||
@@ -55,8 +53,8 @@ SUPPORT_QT_QML = $$(QTCREATOR_WITH_QML)
|
||||
warning("The plugins depend on on private headers from QtDeclarative module.")
|
||||
warning("To enable them, pass 'QT_PRIVATE_HEADERS=$QTDIR/include' to qmake, where $QTDIR is the source directory of qt.")
|
||||
warning()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
plugin_coreplugin.subdir = coreplugin
|
||||
|
||||
@@ -105,6 +105,7 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e
|
||||
m_editor = new QmlJSEditorFactory(this);
|
||||
addObject(m_editor);
|
||||
|
||||
#ifdef QTCREATOR_WITH_QML
|
||||
Core::BaseFileWizardParameters wizardParameters(Core::IWizard::FileWizard);
|
||||
wizardParameters.setCategory(QLatin1String(Core::Constants::WIZARD_CATEGORY_QT));
|
||||
wizardParameters.setDisplayCategory(QCoreApplication::translate("Core", Core::Constants::WIZARD_TR_CATEGORY_QT));
|
||||
@@ -112,6 +113,7 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e
|
||||
wizardParameters.setDisplayName(tr("Qt QML File"));
|
||||
wizardParameters.setId(QLatin1String("Q.Qml"));
|
||||
addAutoReleasedObject(new QmlFileWizard(wizardParameters, core));
|
||||
#endif
|
||||
|
||||
m_actionHandler = new TextEditor::TextEditorActionHandler(QmlJSEditor::Constants::C_QMLJSEDITOR_ID,
|
||||
TextEditor::TextEditorActionHandler::Format
|
||||
|
||||
@@ -82,8 +82,10 @@ bool QmlProjectPlugin::initialize(const QStringList &, QString *errorMessage)
|
||||
addAutoReleasedObject(manager);
|
||||
addAutoReleasedObject(new Internal::QmlProjectRunConfigurationFactory);
|
||||
addAutoReleasedObject(new Internal::QmlRunControlFactory);
|
||||
#ifdef QTCREATOR_WITH_QML
|
||||
addAutoReleasedObject(new QmlProjectApplicationWizard);
|
||||
addAutoReleasedObject(new QmlProjectImportWizard);
|
||||
#endif
|
||||
|
||||
QmlProjectFileFormat::registerDeclarativeTypes();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user