2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-01-07 12:14:35 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-01-07 12:14:35 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-01-07 12:14:35 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-01-07 12:14:35 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-01-07 12:14:35 +01:00
|
|
|
|
|
|
|
|
#include "qmldesignerplugin.h"
|
2013-03-12 11:49:56 +01:00
|
|
|
#include "exception.h"
|
2010-01-07 12:14:35 +01:00
|
|
|
#include "qmldesignerconstants.h"
|
2010-02-26 11:08:17 +01:00
|
|
|
#include "designmodewidget.h"
|
2010-02-09 16:01:47 +01:00
|
|
|
#include "settingspage.h"
|
2010-02-26 11:08:17 +01:00
|
|
|
#include "designmodecontext.h"
|
2010-01-07 12:14:35 +01:00
|
|
|
|
2010-02-25 16:54:42 +01:00
|
|
|
#include <qmljseditor/qmljseditorconstants.h>
|
|
|
|
|
|
2010-06-25 17:37:59 +02:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/designmode.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
2010-02-26 11:08:17 +01:00
|
|
|
#include <coreplugin/modemanager.h>
|
2013-07-04 15:44:58 +02:00
|
|
|
#include <extensionsystem/pluginspec.h>
|
2014-03-11 16:18:03 +01:00
|
|
|
#include <qmljs/qmljsmodelmanagerinterface.h>
|
2013-01-23 12:31:22 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
|
2012-08-23 15:53:58 +02:00
|
|
|
#include <utils/hostosinfo.h>
|
2014-03-26 14:34:30 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2010-01-07 12:14:35 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QAction>
|
2014-01-07 18:19:05 +01:00
|
|
|
#include <QTimer>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <qplugin.h>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QProcessEnvironment>
|
2010-01-07 12:14:35 +01:00
|
|
|
|
|
|
|
|
namespace QmlDesigner {
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
class QmlDesignerPluginData {
|
|
|
|
|
public:
|
|
|
|
|
ViewManager viewManager;
|
|
|
|
|
DocumentManager documentManager;
|
|
|
|
|
ShortCutManager shortCutManager;
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
Internal::DesignModeWidget *mainWidget;
|
|
|
|
|
|
|
|
|
|
QmlDesigner::PluginManager pluginManager;
|
|
|
|
|
DesignerSettings settings;
|
|
|
|
|
Internal::DesignModeContext *context;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QmlDesignerPlugin *QmlDesignerPlugin::m_instance = 0;
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
static bool isInDesignerMode()
|
|
|
|
|
{
|
|
|
|
|
return Core::ModeManager::currentMode() == Core::DesignMode::instance();
|
|
|
|
|
}
|
2010-02-09 11:09:11 +01:00
|
|
|
|
2010-03-24 12:55:10 +01:00
|
|
|
bool shouldAssertInException()
|
|
|
|
|
{
|
|
|
|
|
QProcessEnvironment processEnvironment = QProcessEnvironment::systemEnvironment();
|
|
|
|
|
return !processEnvironment.value("QMLDESIGNER_ASSERT_ON_EXCEPTION").isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
QmlDesignerPlugin::QmlDesignerPlugin()
|
|
|
|
|
: data(0)
|
2010-01-07 12:14:35 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
m_instance = this;
|
2010-01-07 15:13:01 +01:00
|
|
|
// Exceptions should never ever assert: they are handled in a number of
|
|
|
|
|
// places where it is actually VALID AND EXPECTED BEHAVIOUR to get an
|
|
|
|
|
// exception.
|
|
|
|
|
// If you still want to see exactly where the exception originally
|
|
|
|
|
// occurred, then you have various ways to do this:
|
|
|
|
|
// 1. set a breakpoint on the constructor of the exception
|
|
|
|
|
// 2. in gdb: "catch throw" or "catch throw Exception"
|
|
|
|
|
// 3. set a breakpoint on __raise_exception()
|
|
|
|
|
// And with gdb, you can even do this from your ~/.gdbinit file.
|
2010-03-24 12:55:10 +01:00
|
|
|
// DnD is not working with gdb so this is still needed to get a good stacktrace
|
|
|
|
|
|
|
|
|
|
Exception::setShouldAssert(shouldAssertInException());
|
2010-01-07 12:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
QmlDesignerPlugin::~QmlDesignerPlugin()
|
2010-01-07 12:14:35 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data) {
|
|
|
|
|
Core::DesignMode::instance()->unregisterDesignWidget(data->mainWidget);
|
|
|
|
|
Core::ICore::removeContextObject(data->context);
|
|
|
|
|
data->context = 0;
|
|
|
|
|
}
|
|
|
|
|
delete data;
|
2013-01-23 12:31:22 +01:00
|
|
|
m_instance = 0;
|
2010-01-07 12:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// INHERITED FROM ExtensionSystem::Plugin
|
|
|
|
|
//
|
|
|
|
|
////////////////////////////////////////////////////
|
2013-01-23 12:31:22 +01:00
|
|
|
bool QmlDesignerPlugin::initialize(const QStringList & /*arguments*/, QString *errorMessage/* = 0*/) // =0;
|
2010-01-07 12:14:35 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (errorMessage)
|
|
|
|
|
errorMessage->clear();
|
|
|
|
|
|
|
|
|
|
data = new QmlDesignerPluginData;
|
|
|
|
|
|
|
|
|
|
data->settings.fromSettings(Core::ICore::settings());
|
|
|
|
|
|
2010-11-17 12:59:08 +01:00
|
|
|
const Core::Context switchContext(QmlDesigner::Constants::C_QMLDESIGNER,
|
2010-06-28 10:07:05 +02:00
|
|
|
QmlJSEditor::Constants::C_QMLJSEDITOR_ID);
|
2010-02-25 16:54:42 +01:00
|
|
|
|
|
|
|
|
QAction *switchAction = new QAction(tr("Switch Text/Design"), this);
|
2012-05-24 13:49:06 +02:00
|
|
|
Core::Command *command = Core::ActionManager::registerAction(
|
|
|
|
|
switchAction, QmlDesigner::Constants::SWITCH_TEXT_DESIGN, switchContext);
|
2010-02-25 16:54:42 +01:00
|
|
|
command->setDefaultKeySequence(QKeySequence(Qt::Key_F4));
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
|
2010-02-09 11:09:11 +01:00
|
|
|
|
2012-08-23 15:53:58 +02:00
|
|
|
const QString pluginPath = Utils::HostOsInfo::isMacHost()
|
|
|
|
|
? QString(QCoreApplication::applicationDirPath() + "/../PlugIns/QmlDesigner")
|
|
|
|
|
: QString(QCoreApplication::applicationDirPath() + "/../"
|
|
|
|
|
+ QLatin1String(IDE_LIBRARY_BASENAME) + "/qtcreator/qmldesigner");
|
2014-03-26 14:34:30 +01:00
|
|
|
data->pluginManager.setPluginPaths(QStringList() << pluginPath);
|
2010-01-07 12:14:35 +01:00
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
createDesignModeWidget();
|
2010-03-08 14:54:24 +01:00
|
|
|
connect(switchAction, SIGNAL(triggered()), this, SLOT(switchTextDesign()));
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
addAutoReleasedObject(new Internal::SettingsPage);
|
2010-01-07 12:14:35 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
2010-03-17 14:14:00 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
void QmlDesignerPlugin::extensionsInitialized()
|
|
|
|
|
{
|
|
|
|
|
QStringList mimeTypes;
|
|
|
|
|
mimeTypes.append("application/x-qml");
|
2010-01-07 12:14:35 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
Core::DesignMode::instance()->registerDesignWidget(data->mainWidget, mimeTypes, data->context->context());
|
|
|
|
|
connect(Core::DesignMode::instance(),
|
|
|
|
|
SIGNAL(actionsUpdated(Core::IEditor*)),
|
|
|
|
|
&data->shortCutManager,
|
|
|
|
|
SLOT(updateActions(Core::IEditor*)));
|
2010-01-07 12:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::createDesignModeWidget()
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget = new Internal::DesignModeWidget;
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->context = new Internal::DesignModeContext(data->mainWidget);
|
|
|
|
|
Core::ICore::addContextObject(data->context);
|
2010-11-17 12:59:08 +01:00
|
|
|
Core::Context qmlDesignerMainContext(Constants::C_QMLDESIGNER);
|
|
|
|
|
Core::Context qmlDesignerFormEditorContext(Constants::C_QMLFORMEDITOR);
|
2011-04-28 17:15:27 +02:00
|
|
|
Core::Context qmlDesignerNavigatorContext(Constants::C_QMLNAVIGATOR);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->context->context().add(qmlDesignerMainContext);
|
|
|
|
|
data->context->context().add(qmlDesignerFormEditorContext);
|
|
|
|
|
data->context->context().add(qmlDesignerNavigatorContext);
|
|
|
|
|
data->context->context().add(ProjectExplorer::Constants::LANG_QMLJS);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.registerActions(qmlDesignerMainContext, qmlDesignerFormEditorContext, qmlDesignerNavigatorContext);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2013-08-29 17:17:24 +02:00
|
|
|
connect(Core::EditorManager::instance(),
|
2013-01-23 12:31:22 +01:00
|
|
|
SIGNAL(currentEditorChanged(Core::IEditor*)),
|
|
|
|
|
this,
|
|
|
|
|
SLOT(onCurrentEditorChanged(Core::IEditor*)));
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2013-08-29 17:17:24 +02:00
|
|
|
connect(Core::EditorManager::instance(),
|
2013-01-23 12:31:22 +01:00
|
|
|
SIGNAL(editorsClosed(QList<Core::IEditor*>)),
|
|
|
|
|
this,
|
|
|
|
|
SLOT(onTextEditorsClosed(QList<Core::IEditor*>)));
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
// connect(Core::ICore::editorManager(), SIGNAL(currentEditorChanged(Core::IEditor*)),
|
2014-03-26 14:34:30 +01:00
|
|
|
// &data->documentManager, SLOT(currentTextEditorChanged(Core::IEditor*)));
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
// connect(Core::ICore::instance(), SIGNAL(contextChanged(Core::IContext*,Core::Context)),
|
|
|
|
|
// this, SLOT(contextChanged(Core::IContext*,Core::Context)));
|
|
|
|
|
|
|
|
|
|
connect(Core::ModeManager::instance(),
|
|
|
|
|
SIGNAL(currentModeChanged(Core::IMode*,Core::IMode*)),
|
|
|
|
|
SLOT(onCurrentModeChanged(Core::IMode*,Core::IMode*)));
|
2010-03-26 12:39:26 +01:00
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::showDesigner()
|
2010-02-26 14:28:26 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
QTC_ASSERT(!data->documentManager.hasCurrentDesignDocument(), return);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.disconnectUndoActions(currentDesignDocument());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->documentManager.setCurrentDesignDocument(Core::EditorManager::currentEditor());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.connectUndoActions(currentDesignDocument());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget->initialize();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data->documentManager.hasCurrentDesignDocument()) {
|
2013-01-23 12:31:22 +01:00
|
|
|
activateAutoSynchronization();
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.updateActions(currentDesignDocument()->textEditor());
|
|
|
|
|
data->viewManager.pushFileOnCrumbleBar(data->documentManager.currentDesignDocument()->fileName());
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.updateUndoActions(currentDesignDocument());
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlDesignerPlugin::hideDesigner()
|
|
|
|
|
{
|
2013-08-29 12:37:29 +02:00
|
|
|
if (currentDesignDocument()
|
|
|
|
|
&& currentDesignDocument()->currentModel()
|
2013-01-23 12:31:22 +01:00
|
|
|
&& !currentDesignDocument()->hasQmlSyntaxErrors())
|
|
|
|
|
jumpTextCursorToSelectedModelNode();
|
|
|
|
|
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data->documentManager.hasCurrentDesignDocument()) {
|
2013-01-23 12:31:22 +01:00
|
|
|
deactivateAutoSynchronization();
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget->saveSettings();
|
2010-02-26 14:28:26 +01:00
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.disconnectUndoActions(currentDesignDocument());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->documentManager.setCurrentDesignDocument(0);
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.updateUndoActions(0);
|
2010-02-26 14:28:26 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::changeEditor()
|
2010-03-16 17:17:09 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data->documentManager.hasCurrentDesignDocument()) {
|
2013-01-23 12:31:22 +01:00
|
|
|
deactivateAutoSynchronization();
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget->saveSettings();
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.disconnectUndoActions(currentDesignDocument());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->documentManager.setCurrentDesignDocument(Core::EditorManager::currentEditor());
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget->initialize();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.connectUndoActions(currentDesignDocument());
|
2010-03-26 12:39:26 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data->documentManager.hasCurrentDesignDocument()) {
|
2013-01-23 12:31:22 +01:00
|
|
|
activateAutoSynchronization();
|
2014-03-26 14:34:30 +01:00
|
|
|
data->viewManager.pushFileOnCrumbleBar(data->documentManager.currentDesignDocument()->fileName());
|
|
|
|
|
data->viewManager.setComponentViewToMaster();
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.updateUndoActions(currentDesignDocument());
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlDesignerPlugin::jumpTextCursorToSelectedModelNode()
|
|
|
|
|
{
|
|
|
|
|
// visual editor -> text editor
|
|
|
|
|
ModelNode selectedNode;
|
2014-06-26 11:25:04 +02:00
|
|
|
if (!rewriterView()->selectedModelNodes().isEmpty())
|
|
|
|
|
selectedNode = rewriterView()->selectedModelNodes().first();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
if (selectedNode.isValid()) {
|
2014-06-26 11:25:04 +02:00
|
|
|
const int nodeOffset = rewriterView()->nodeOffset(selectedNode);
|
2013-01-23 12:31:22 +01:00
|
|
|
if (nodeOffset > 0) {
|
|
|
|
|
const ModelNode currentSelectedNode
|
2014-06-26 11:25:04 +02:00
|
|
|
= rewriterView()->nodeAtTextCursorPosition(currentDesignDocument()->plainTextEdit()->textCursor().position());
|
2013-01-23 12:31:22 +01:00
|
|
|
if (currentSelectedNode != selectedNode) {
|
|
|
|
|
int line, column;
|
|
|
|
|
currentDesignDocument()->textEditor()->convertPosition(nodeOffset, &line, &column);
|
|
|
|
|
currentDesignDocument()->textEditor()->gotoLine(line, column);
|
|
|
|
|
}
|
2010-03-16 17:17:09 +01:00
|
|
|
}
|
|
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
2010-03-26 12:39:26 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::selectModelNodeUnderTextCursor()
|
|
|
|
|
{
|
2014-05-06 12:41:51 +02:00
|
|
|
const int cursorPosition = currentDesignDocument()->plainTextEdit()->textCursor().position();
|
2014-06-26 11:25:04 +02:00
|
|
|
ModelNode modelNode = rewriterView()->nodeAtTextCursorPosition(cursorPosition);
|
2014-05-06 12:41:51 +02:00
|
|
|
if (modelNode.isValid())
|
2014-06-26 11:25:04 +02:00
|
|
|
rewriterView()->setSelectedModelNode(modelNode);
|
2010-03-16 17:17:09 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::activateAutoSynchronization()
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2013-01-23 12:31:22 +01:00
|
|
|
// text editor -> visual editor
|
2013-11-11 22:20:47 +02:00
|
|
|
if (!currentDesignDocument()->isDocumentLoaded())
|
2013-01-23 12:31:22 +01:00
|
|
|
currentDesignDocument()->loadDocument(currentDesignDocument()->plainTextEdit());
|
|
|
|
|
|
2014-03-05 15:20:12 +01:00
|
|
|
currentDesignDocument()->updateActiveQtVersion();
|
2013-08-01 11:48:36 +02:00
|
|
|
currentDesignDocument()->attachRewriterToModel();
|
2013-02-04 15:03:46 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
resetModelSelection();
|
|
|
|
|
|
2013-02-06 13:47:29 +01:00
|
|
|
viewManager().attachComponentView();
|
|
|
|
|
viewManager().attachViewsExceptRewriterAndComponetView();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
QList<RewriterView::Error> errors = currentDesignDocument()->qmlSyntaxErrors();
|
|
|
|
|
if (errors.isEmpty()) {
|
|
|
|
|
selectModelNodeUnderTextCursor();
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget->enableWidgets();
|
|
|
|
|
data->mainWidget->setupNavigatorHistory(currentDesignDocument()->textEditor());
|
2013-01-23 12:31:22 +01:00
|
|
|
} else {
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget->disableWidgets();
|
|
|
|
|
data->mainWidget->showErrorMessage(errors);
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-29 09:50:31 +01:00
|
|
|
currentDesignDocument()->updateSubcomponentManager();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-06-26 11:25:04 +02:00
|
|
|
connect(rewriterView(),
|
2013-01-23 12:31:22 +01:00
|
|
|
SIGNAL(errorsChanged(QList<RewriterView::Error>)),
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget,
|
2013-01-23 12:31:22 +01:00
|
|
|
SLOT(updateErrorStatus(QList<RewriterView::Error>)));
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::deactivateAutoSynchronization()
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2013-01-23 12:31:22 +01:00
|
|
|
viewManager().detachViewsExceptRewriterAndComponetView();
|
|
|
|
|
viewManager().detachComponentView();
|
2013-02-04 15:03:46 +01:00
|
|
|
viewManager().detachRewriterView();
|
|
|
|
|
documentManager().currentDesignDocument()->resetToDocumentModel();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-06-26 11:25:04 +02:00
|
|
|
disconnect(rewriterView(),
|
2013-01-23 12:31:22 +01:00
|
|
|
SIGNAL(errorsChanged(QList<RewriterView::Error>)),
|
2014-03-26 14:34:30 +01:00
|
|
|
data->mainWidget,
|
2013-01-23 12:31:22 +01:00
|
|
|
SLOT(updateErrorStatus(QList<RewriterView::Error>)));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlDesignerPlugin::resetModelSelection()
|
|
|
|
|
{
|
2014-06-26 11:25:04 +02:00
|
|
|
if (rewriterView() && currentDesignDocument()->currentModel())
|
|
|
|
|
rewriterView()->setSelectedModelNodes(QList<ModelNode>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RewriterView *QmlDesignerPlugin::rewriterView() const
|
|
|
|
|
{
|
|
|
|
|
return currentDesignDocument()->rewriterView();
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
static bool checkIfEditorIsQtQuick(Core::IEditor *editor)
|
|
|
|
|
{
|
2014-06-25 16:05:22 +02:00
|
|
|
if (editor)
|
2014-03-26 14:34:30 +01:00
|
|
|
if (editor && editor->document()->id() == QmlJSEditor::Constants::C_QMLJSEDITOR_ID) {
|
2014-06-26 13:52:36 +02:00
|
|
|
QmlJS::ModelManagerInterface *modelManager = QmlJS::ModelManagerInterface::instance();
|
|
|
|
|
QmlJS::Document::Ptr document = modelManager->ensuredGetDocumentForPath(editor->document()->filePath());
|
2014-03-26 14:34:30 +01:00
|
|
|
if (!document.isNull())
|
|
|
|
|
return document->language() == QmlJS::Language::QmlQtQuick1
|
|
|
|
|
|| document->language() == QmlJS::Language::QmlQtQuick2
|
|
|
|
|
|| document->language() == QmlJS::Language::Qml;
|
|
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
|
|
|
|
|
void QmlDesignerPlugin::onCurrentEditorChanged(Core::IEditor *editor)
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data
|
|
|
|
|
&& checkIfEditorIsQtQuick(editor)
|
|
|
|
|
&& isInDesignerMode())
|
2013-01-23 12:31:22 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
data->shortCutManager.updateActions(editor);
|
2013-01-23 12:31:22 +01:00
|
|
|
changeEditor();
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
static bool isDesignerMode(Core::IMode *mode)
|
|
|
|
|
{
|
|
|
|
|
return mode == Core::DesignMode::instance();
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-24 16:54:37 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-11 16:18:03 +01:00
|
|
|
static bool documentIsAlreadyOpen(DesignDocument *designDocument, Core::IEditor *editor, Core::IMode *newMode)
|
|
|
|
|
{
|
|
|
|
|
return designDocument
|
|
|
|
|
&& editor == designDocument->editor()
|
|
|
|
|
&& isDesignerMode(newMode);
|
|
|
|
|
}
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2014-03-11 16:18:03 +01:00
|
|
|
void QmlDesignerPlugin::onCurrentModeChanged(Core::IMode *newMode, Core::IMode *oldMode)
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data
|
|
|
|
|
&& Core::EditorManager::currentEditor()
|
2014-03-11 16:18:03 +01:00
|
|
|
&& checkIfEditorIsQtQuick(Core::EditorManager::currentEditor())
|
|
|
|
|
&& !documentIsAlreadyOpen(currentDesignDocument(), Core::EditorManager::currentEditor(), newMode)) {
|
|
|
|
|
|
|
|
|
|
if (!isDesignerMode(newMode) && isDesignerMode(oldMode))
|
|
|
|
|
hideDesigner();
|
|
|
|
|
else if (Core::EditorManager::currentEditor()
|
2014-03-26 14:34:30 +01:00
|
|
|
&& isDesignerMode(newMode))
|
2014-03-11 16:18:03 +01:00
|
|
|
showDesigner();
|
|
|
|
|
else if (currentDesignDocument())
|
|
|
|
|
hideDesigner();
|
|
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
DesignDocument *QmlDesignerPlugin::currentDesignDocument() const
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data)
|
|
|
|
|
return data->documentManager.currentDesignDocument();
|
|
|
|
|
|
|
|
|
|
return 0;
|
2010-01-07 12:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
Internal::DesignModeWidget *QmlDesignerPlugin::mainWidget() const
|
2010-02-09 11:09:11 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data)
|
|
|
|
|
return data->mainWidget;
|
|
|
|
|
|
|
|
|
|
return 0;
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|
|
|
|
|
|
2014-01-07 18:19:05 +01:00
|
|
|
void QmlDesignerPlugin::switchToTextModeDeferred()
|
|
|
|
|
{
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(switschToTextMode()));
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::onTextEditorsClosed(QList<Core::IEditor*> editors)
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (data) {
|
|
|
|
|
if (data->documentManager.hasCurrentDesignDocument()
|
|
|
|
|
&& editors.contains(data->documentManager.currentDesignDocument()->textEditor()))
|
|
|
|
|
hideDesigner();
|
2013-01-23 12:31:22 +01:00
|
|
|
|
2014-03-26 14:34:30 +01:00
|
|
|
data->documentManager.removeEditors(editors);
|
|
|
|
|
}
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QmlDesignerPlugin *QmlDesignerPlugin::instance()
|
|
|
|
|
{
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DocumentManager &QmlDesignerPlugin::documentManager()
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
return data->documentManager;
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const DocumentManager &QmlDesignerPlugin::documentManager() const
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
return data->documentManager;
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ViewManager &QmlDesignerPlugin::viewManager()
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
return data->viewManager;
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const ViewManager &QmlDesignerPlugin::viewManager() const
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
return data->viewManager;
|
2013-01-23 12:31:22 +01:00
|
|
|
}
|
|
|
|
|
|
2013-09-18 13:28:44 +02:00
|
|
|
DesignerActionManager &QmlDesignerPlugin::designerActionManager()
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
return data->viewManager.designerActionManager();
|
2013-09-18 13:28:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const DesignerActionManager &QmlDesignerPlugin::designerActionManager() const
|
|
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
return data->viewManager.designerActionManager();
|
2013-09-18 13:28:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::switchTextDesign()
|
2010-02-25 16:54:42 +01:00
|
|
|
{
|
2012-01-26 01:18:02 +01:00
|
|
|
if (Core::ModeManager::currentMode()->id() == Core::Constants::MODE_EDIT) {
|
2014-03-26 14:34:30 +01:00
|
|
|
Core::IEditor *editor = Core::EditorManager::currentEditor();
|
|
|
|
|
if (checkIfEditorIsQtQuick(editor))
|
2012-01-26 01:18:02 +01:00
|
|
|
Core::ModeManager::activateMode(Core::Constants::MODE_DESIGN);
|
|
|
|
|
} else if (Core::ModeManager::currentMode()->id() == Core::Constants::MODE_DESIGN) {
|
|
|
|
|
Core::ModeManager::activateMode(Core::Constants::MODE_EDIT);
|
2010-02-25 16:54:42 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-07 18:19:05 +01:00
|
|
|
void QmlDesignerPlugin::switschToTextMode()
|
|
|
|
|
{
|
|
|
|
|
Core::ModeManager::activateMode(Core::Constants::MODE_EDIT);
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
DesignerSettings QmlDesignerPlugin::settings()
|
2010-02-09 11:09:11 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
data->settings.fromSettings(Core::ICore::settings());
|
|
|
|
|
return data->settings;
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
void QmlDesignerPlugin::setSettings(const DesignerSettings &s)
|
2010-02-09 11:09:11 +01:00
|
|
|
{
|
2014-03-26 14:34:30 +01:00
|
|
|
if (s != data->settings) {
|
|
|
|
|
data->settings = s;
|
|
|
|
|
data->settings.toSettings(Core::ICore::settings());
|
2010-02-09 11:09:11 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-07 12:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
2013-01-23 12:31:22 +01:00
|
|
|
Q_EXPORT_PLUGIN(QmlDesigner::QmlDesignerPlugin)
|