2009-04-22 15:21:04 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
#include "qmljseditorplugin.h"
|
2010-02-15 12:27:25 +01:00
|
|
|
#include "qmljshighlighter.h"
|
2010-01-15 17:20:03 +01:00
|
|
|
#include "qmljseditor.h"
|
|
|
|
|
#include "qmljseditorconstants.h"
|
|
|
|
|
#include "qmljseditorfactory.h"
|
2010-02-15 13:41:51 +01:00
|
|
|
#include "qmljshoverhandler.h"
|
2009-09-24 12:54:53 +02:00
|
|
|
#include "qmlfilewizard.h"
|
2010-11-15 14:02:15 +01:00
|
|
|
#include "jsfilewizard.h"
|
2010-07-08 11:32:45 +02:00
|
|
|
#include "qmljsoutline.h"
|
2010-04-23 13:19:28 +02:00
|
|
|
#include "qmljspreviewrunner.h"
|
2010-12-02 17:02:23 +01:00
|
|
|
#include "qmljssnippetprovider.h"
|
2010-07-13 17:16:43 +02:00
|
|
|
#include "qmltaskmanager.h"
|
2010-08-12 15:48:24 +02:00
|
|
|
#include "quicktoolbar.h"
|
|
|
|
|
#include "quicktoolbarsettingspage.h"
|
2011-04-15 16:19:23 +02:00
|
|
|
#include "qmljscompletionassist.h"
|
|
|
|
|
#include "qmljsquickfixassist.h"
|
2010-04-23 13:19:28 +02:00
|
|
|
|
2010-11-11 10:05:05 +01:00
|
|
|
#include <qmljs/qmljsicons.h>
|
|
|
|
|
#include <qmljs/qmljsmodelmanagerinterface.h>
|
2011-11-07 15:14:43 +01:00
|
|
|
#include <qmljs/qmljsreformatter.h>
|
2011-02-03 15:48:14 +01:00
|
|
|
#include <qmljstools/qmljstoolsconstants.h>
|
2010-11-11 10:05:05 +01:00
|
|
|
|
2010-04-23 13:19:28 +02:00
|
|
|
#include <qmldesigner/qmldesignerconstants.h>
|
2009-04-22 15:21:04 +02:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/mimedatabase.h>
|
2011-09-05 16:10:37 +02:00
|
|
|
#include <coreplugin/id.h>
|
2010-04-01 17:21:18 +02:00
|
|
|
#include <coreplugin/fileiconprovider.h>
|
2009-04-22 15:21:04 +02:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
2010-03-18 10:59:06 +01:00
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
|
|
|
|
#include <coreplugin/actionmanager/command.h>
|
2010-02-08 12:50:10 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2010-07-13 17:16:43 +02:00
|
|
|
#include <projectexplorer/taskhub.h>
|
2012-03-07 16:40:03 +01:00
|
|
|
#include <projectexplorer/projectexplorer.h>
|
2009-04-22 15:21:04 +02:00
|
|
|
#include <texteditor/texteditorconstants.h>
|
|
|
|
|
#include <texteditor/texteditorsettings.h>
|
|
|
|
|
#include <texteditor/textfilewizard.h>
|
|
|
|
|
#include <texteditor/texteditoractionhandler.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
2012-02-07 15:30:33 +01:00
|
|
|
#include <utils/json.h>
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtPlugin>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QSettings>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QTimer>
|
|
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QAction>
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
using namespace QmlJSEditor;
|
|
|
|
|
using namespace QmlJSEditor::Internal;
|
|
|
|
|
using namespace QmlJSEditor::Constants;
|
2012-03-07 16:40:03 +01:00
|
|
|
using namespace ProjectExplorer;
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-06-03 15:49:29 +02:00
|
|
|
enum {
|
|
|
|
|
QUICKFIX_INTERVAL = 20
|
|
|
|
|
};
|
|
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
void registerQuickFixes(ExtensionSystem::IPlugin *plugIn);
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSEditorPlugin *QmlJSEditorPlugin::m_instance = 0;
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSEditorPlugin::QmlJSEditorPlugin() :
|
2009-09-04 16:51:11 +02:00
|
|
|
m_modelManager(0),
|
2009-04-22 15:21:04 +02:00
|
|
|
m_editor(0),
|
2011-04-15 16:19:23 +02:00
|
|
|
m_actionHandler(0),
|
2011-11-07 15:14:43 +01:00
|
|
|
m_quickFixAssistProvider(0),
|
|
|
|
|
m_reformatFileAction(0),
|
2012-02-07 15:30:33 +01:00
|
|
|
m_currentEditor(0),
|
|
|
|
|
m_jsonManager(new Utils::JsonSchemaManager(
|
|
|
|
|
QStringList() << Core::ICore::instance()->userResourcePath() + QLatin1String("/json/")
|
|
|
|
|
<< Core::ICore::instance()->resourcePath() + QLatin1String("/json/")))
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
|
|
|
|
m_instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSEditorPlugin::~QmlJSEditorPlugin()
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
|
|
|
|
removeObject(m_editor);
|
|
|
|
|
delete m_actionHandler;
|
|
|
|
|
m_instance = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-16 12:57:07 +02:00
|
|
|
/*! Copied from cppplugin.cpp */
|
|
|
|
|
static inline
|
|
|
|
|
Core::Command *createSeparator(Core::ActionManager *am,
|
|
|
|
|
QObject *parent,
|
|
|
|
|
Core::Context &context,
|
|
|
|
|
const char *id)
|
|
|
|
|
{
|
|
|
|
|
QAction *separator = new QAction(parent);
|
|
|
|
|
separator->setSeparator(true);
|
|
|
|
|
return am->registerAction(separator, Core::Id(id), context);
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-21 13:05:15 +02:00
|
|
|
bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *errorMessage)
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2012-01-24 15:36:40 +01:00
|
|
|
if (!Core::ICore::mimeDatabase()->addMimeTypes(QLatin1String(":/qmljseditor/QmlJSEditor.mimetypes.xml"), errorMessage))
|
2009-04-22 15:21:04 +02:00
|
|
|
return false;
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-11-11 10:05:05 +01:00
|
|
|
m_modelManager = QmlJS::ModelManagerInterface::instance();
|
2010-12-02 17:02:23 +01:00
|
|
|
addAutoReleasedObject(new QmlJSSnippetProvider);
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2011-08-09 14:40:04 +02:00
|
|
|
// QML task updating manager
|
|
|
|
|
m_qmlTaskManager = new QmlTaskManager;
|
|
|
|
|
addAutoReleasedObject(m_qmlTaskManager);
|
|
|
|
|
connect(m_modelManager, SIGNAL(documentChangedOnDisk(QmlJS::Document::Ptr)),
|
|
|
|
|
m_qmlTaskManager, SLOT(updateMessages()));
|
|
|
|
|
// recompute messages when information about libraries changes
|
|
|
|
|
connect(m_modelManager, SIGNAL(libraryInfoUpdated(QString,QmlJS::LibraryInfo)),
|
|
|
|
|
m_qmlTaskManager, SLOT(updateMessages()));
|
|
|
|
|
// recompute messages when project data changes (files added or removed)
|
|
|
|
|
connect(m_modelManager, SIGNAL(projectInfoUpdated(ProjectInfo)),
|
|
|
|
|
m_qmlTaskManager, SLOT(updateMessages()));
|
|
|
|
|
connect(m_modelManager, SIGNAL(aboutToRemoveFiles(QStringList)),
|
|
|
|
|
m_qmlTaskManager, SLOT(documentsRemoved(QStringList)));
|
|
|
|
|
|
2010-08-23 16:00:24 +02:00
|
|
|
Core::Context context(QmlJSEditor::Constants::C_QMLJSEDITOR_ID);
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
m_editor = new QmlJSEditorFactory(this);
|
2009-04-22 15:21:04 +02:00
|
|
|
addObject(m_editor);
|
|
|
|
|
|
2012-01-24 15:36:40 +01:00
|
|
|
QObject *core = Core::ICore::instance();
|
2010-11-15 14:02:15 +01:00
|
|
|
Core::BaseFileWizardParameters qmlWizardParameters(Core::IWizard::FileWizard);
|
2012-02-08 17:25:35 +01:00
|
|
|
qmlWizardParameters.setCategory(QLatin1String(Core::Constants::WIZARD_CATEGORY_QT));
|
|
|
|
|
qmlWizardParameters.setDisplayCategory(QCoreApplication::translate("QmlJsEditor", Core::Constants::WIZARD_TR_CATEGORY_QT));
|
2010-11-15 14:02:15 +01:00
|
|
|
qmlWizardParameters.setDescription(tr("Creates a QML file."));
|
|
|
|
|
qmlWizardParameters.setDisplayName(tr("QML File"));
|
|
|
|
|
qmlWizardParameters.setId(QLatin1String("Q.Qml"));
|
|
|
|
|
addAutoReleasedObject(new QmlFileWizard(qmlWizardParameters, core));
|
|
|
|
|
|
|
|
|
|
Core::BaseFileWizardParameters jsWizardParameters(Core::IWizard::FileWizard);
|
2012-02-08 17:25:35 +01:00
|
|
|
jsWizardParameters.setCategory(QLatin1String(Core::Constants::WIZARD_CATEGORY_QT));
|
|
|
|
|
jsWizardParameters.setDisplayCategory(QCoreApplication::translate("QmlJsEditor", Core::Constants::WIZARD_TR_CATEGORY_QT));
|
2010-11-15 14:02:15 +01:00
|
|
|
jsWizardParameters.setDescription(tr("Creates a JavaScript file."));
|
|
|
|
|
jsWizardParameters.setDisplayName(tr("JS File"));
|
|
|
|
|
jsWizardParameters.setId(QLatin1String("Z.Js"));
|
|
|
|
|
addAutoReleasedObject(new JsFileWizard(jsWizardParameters, core));
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
m_actionHandler = new TextEditor::TextEditorActionHandler(QmlJSEditor::Constants::C_QMLJSEDITOR_ID,
|
2009-04-22 15:21:04 +02:00
|
|
|
TextEditor::TextEditorActionHandler::Format
|
|
|
|
|
| TextEditor::TextEditorActionHandler::UnCommentSelection
|
|
|
|
|
| TextEditor::TextEditorActionHandler::UnCollapseAll);
|
2009-09-11 14:42:50 +02:00
|
|
|
m_actionHandler->initializeActions();
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2012-01-24 15:36:40 +01:00
|
|
|
Core::ActionManager *am = Core::ICore::actionManager();
|
2010-02-08 12:50:10 +01:00
|
|
|
Core::ActionContainer *contextMenu = am->createMenu(QmlJSEditor::Constants::M_CONTEXT);
|
2011-06-29 12:03:53 +02:00
|
|
|
Core::ActionContainer *qmlToolsMenu = am->actionContainer(Core::Id(QmlJSTools::Constants::M_TOOLS_QMLJS));
|
|
|
|
|
|
|
|
|
|
Core::Context globalContext(Core::Constants::C_GLOBAL);
|
|
|
|
|
qmlToolsMenu->addAction(createSeparator(am, this, globalContext, QmlJSEditor::Constants::SEPARATOR3));
|
2010-02-08 12:50:10 +01:00
|
|
|
|
2010-08-19 15:53:29 +02:00
|
|
|
Core::Command *cmd;
|
2010-02-08 12:50:10 +01:00
|
|
|
QAction *followSymbolUnderCursorAction = new QAction(tr("Follow Symbol Under Cursor"), this);
|
|
|
|
|
cmd = am->registerAction(followSymbolUnderCursorAction, Constants::FOLLOW_SYMBOL_UNDER_CURSOR, context);
|
|
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Qt::Key_F2));
|
|
|
|
|
connect(followSymbolUnderCursorAction, SIGNAL(triggered()), this, SLOT(followSymbolUnderCursor()));
|
2009-11-09 17:35:20 +01:00
|
|
|
contextMenu->addAction(cmd);
|
2010-09-16 12:57:07 +02:00
|
|
|
qmlToolsMenu->addAction(cmd);
|
2010-02-08 12:50:10 +01:00
|
|
|
|
2010-09-24 14:05:34 +02:00
|
|
|
QAction *findUsagesAction = new QAction(tr("Find Usages"), this);
|
|
|
|
|
cmd = am->registerAction(findUsagesAction, Constants::FIND_USAGES, context);
|
|
|
|
|
cmd->setDefaultKeySequence(QKeySequence(tr("Ctrl+Shift+U")));
|
|
|
|
|
connect(findUsagesAction, SIGNAL(triggered()), this, SLOT(findUsages()));
|
|
|
|
|
contextMenu->addAction(cmd);
|
|
|
|
|
qmlToolsMenu->addAction(cmd);
|
|
|
|
|
|
2011-07-11 14:53:10 +02:00
|
|
|
QAction *renameUsagesAction = new QAction(tr("Rename Symbol Under Cursor"), this);
|
2011-07-11 12:53:05 +02:00
|
|
|
cmd = am->registerAction(renameUsagesAction, Constants::RENAME_USAGES, context);
|
|
|
|
|
cmd->setDefaultKeySequence(QKeySequence(tr("Ctrl+Shift+R")));
|
|
|
|
|
connect(renameUsagesAction, SIGNAL(triggered()), this, SLOT(renameUsages()));
|
|
|
|
|
contextMenu->addAction(cmd);
|
|
|
|
|
qmlToolsMenu->addAction(cmd);
|
|
|
|
|
|
2011-08-09 14:40:04 +02:00
|
|
|
QAction *semanticScan = new QAction(tr("Run Checks"), this);
|
|
|
|
|
cmd = am->registerAction(semanticScan, Core::Id(Constants::RUN_SEMANTIC_SCAN), globalContext);
|
|
|
|
|
cmd->setDefaultKeySequence(QKeySequence(tr("Ctrl+Shift+C")));
|
|
|
|
|
connect(semanticScan, SIGNAL(triggered()), this, SLOT(runSemanticScan()));
|
|
|
|
|
qmlToolsMenu->addAction(cmd);
|
|
|
|
|
|
2011-11-07 15:14:43 +01:00
|
|
|
m_reformatFileAction = new QAction(tr("Reformat File"), this);
|
2012-01-20 17:38:31 +01:00
|
|
|
cmd = am->registerAction(m_reformatFileAction, Core::Id(Constants::REFORMAT_FILE), context);
|
2011-11-07 15:14:43 +01:00
|
|
|
connect(m_reformatFileAction, SIGNAL(triggered()), this, SLOT(reformatFile()));
|
|
|
|
|
qmlToolsMenu->addAction(cmd);
|
|
|
|
|
|
2010-09-01 11:54:00 +02:00
|
|
|
QAction *showQuickToolbar = new QAction(tr("Show Qt Quick Toolbar"), this);
|
2010-08-04 13:50:15 +02:00
|
|
|
cmd = am->registerAction(showQuickToolbar, Constants::SHOW_QT_QUICK_HELPER, context);
|
2012-01-25 10:25:05 +01:00
|
|
|
#ifdef Q_OS_MACX
|
2010-10-12 11:19:01 +02:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Qt::META + Qt::ALT + Qt::Key_Space));
|
|
|
|
|
#else
|
2010-08-04 13:50:15 +02:00
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Qt::CTRL + Qt::ALT + Qt::Key_Space));
|
2010-10-12 11:19:01 +02:00
|
|
|
#endif
|
2010-08-04 13:50:15 +02:00
|
|
|
connect(showQuickToolbar, SIGNAL(triggered()), this, SLOT(showContextPane()));
|
|
|
|
|
contextMenu->addAction(cmd);
|
2010-09-16 12:57:07 +02:00
|
|
|
qmlToolsMenu->addAction(cmd);
|
|
|
|
|
|
|
|
|
|
// Insert marker for "Refactoring" menu:
|
|
|
|
|
Core::Command *sep = createSeparator(am, this, globalContext,
|
|
|
|
|
Constants::SEPARATOR1);
|
|
|
|
|
sep->action()->setObjectName(Constants::M_REFACTORING_MENU_INSERTION_POINT);
|
|
|
|
|
contextMenu->addAction(sep);
|
|
|
|
|
contextMenu->addAction(createSeparator(am, this, globalContext,
|
|
|
|
|
Constants::SEPARATOR2));
|
2010-08-04 13:50:15 +02:00
|
|
|
|
2010-02-08 12:50:10 +01:00
|
|
|
cmd = am->command(TextEditor::Constants::AUTO_INDENT_SELECTION);
|
|
|
|
|
contextMenu->addAction(cmd);
|
|
|
|
|
|
2009-11-09 17:35:20 +01:00
|
|
|
cmd = am->command(TextEditor::Constants::UN_COMMENT_SELECTION);
|
|
|
|
|
contextMenu->addAction(cmd);
|
|
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
m_quickFixAssistProvider = new QmlJSQuickFixAssistProvider;
|
|
|
|
|
addAutoReleasedObject(m_quickFixAssistProvider);
|
|
|
|
|
addAutoReleasedObject(new QmlJSCompletionAssistProvider);
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-05-10 18:30:09 +02:00
|
|
|
addAutoReleasedObject(new HoverHandler);
|
2009-05-06 15:45:19 +02:00
|
|
|
|
2011-09-21 13:05:15 +02:00
|
|
|
errorMessage->clear();
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-04-01 17:21:18 +02:00
|
|
|
Core::FileIconProvider *iconProvider = Core::FileIconProvider::instance();
|
2010-07-30 22:16:59 +02:00
|
|
|
iconProvider->registerIconOverlayForSuffix(QIcon(QLatin1String(":/qmljseditor/images/qmlfile.png")), "qml");
|
2010-04-01 17:21:18 +02:00
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
registerQuickFixes(this);
|
2010-06-03 15:49:29 +02:00
|
|
|
|
2010-07-08 11:32:45 +02:00
|
|
|
addAutoReleasedObject(new QmlJSOutlineWidgetFactory);
|
|
|
|
|
|
2010-08-12 15:48:24 +02:00
|
|
|
addAutoReleasedObject(new QuickToolBar);
|
|
|
|
|
addAutoReleasedObject(new Internal::QuickToolBarSettingsPage);
|
|
|
|
|
|
2012-01-24 15:36:40 +01:00
|
|
|
connect(Core::ICore::editorManager(), SIGNAL(currentEditorChanged(Core::IEditor*)), SLOT(currentEditorChanged(Core::IEditor*)));
|
2010-12-14 15:04:46 +01:00
|
|
|
|
2009-04-22 15:21:04 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
void QmlJSEditorPlugin::extensionsInitialized()
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2012-03-07 16:40:03 +01:00
|
|
|
TaskHub *taskHub = ProjectExplorerPlugin::instance()->taskHub();
|
2010-07-13 17:16:43 +02:00
|
|
|
taskHub->addCategory(Constants::TASK_CATEGORY_QML, tr("QML"));
|
2011-08-09 14:40:04 +02:00
|
|
|
taskHub->addCategory(Constants::TASK_CATEGORY_QML_ANALYSIS, tr("QML Analysis"), false);
|
2009-04-22 15:21:04 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-13 17:05:47 +02:00
|
|
|
ExtensionSystem::IPlugin::ShutdownFlag QmlJSEditorPlugin::aboutToShutdown()
|
|
|
|
|
{
|
|
|
|
|
delete QmlJS::Icons::instance(); // delete object held by singleton
|
|
|
|
|
|
|
|
|
|
return IPlugin::aboutToShutdown();
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
void QmlJSEditorPlugin::initializeEditor(QmlJSEditor::QmlJSTextEditorWidget *editor)
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2011-07-29 12:00:11 +02:00
|
|
|
QTC_CHECK(m_instance);
|
2009-04-22 15:21:04 +02:00
|
|
|
|
|
|
|
|
m_actionHandler->setupActions(editor);
|
|
|
|
|
|
2011-02-03 15:48:14 +01:00
|
|
|
editor->setLanguageSettingsId(QmlJSTools::Constants::QML_JS_SETTINGS_ID);
|
2009-04-22 15:21:04 +02:00
|
|
|
TextEditor::TextEditorSettings::instance()->initializeEditor(editor);
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-07 15:30:33 +01:00
|
|
|
Utils::JsonSchemaManager *QmlJSEditorPlugin::jsonManager() const
|
|
|
|
|
{
|
|
|
|
|
return m_jsonManager.data();
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 12:50:10 +01:00
|
|
|
void QmlJSEditorPlugin::followSymbolUnderCursor()
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
if (QmlJSTextEditorWidget *editor = qobject_cast<QmlJSTextEditorWidget*>(em->currentEditor()->widget()))
|
2010-02-08 12:50:10 +01:00
|
|
|
editor->followSymbolUnderCursor();
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-24 14:05:34 +02:00
|
|
|
void QmlJSEditorPlugin::findUsages()
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
2011-02-21 16:02:26 +01:00
|
|
|
if (QmlJSTextEditorWidget *editor = qobject_cast<QmlJSTextEditorWidget*>(em->currentEditor()->widget()))
|
2010-09-24 14:05:34 +02:00
|
|
|
editor->findUsages();
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-11 12:53:05 +02:00
|
|
|
void QmlJSEditorPlugin::renameUsages()
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
|
|
|
|
if (QmlJSTextEditorWidget *editor = qobject_cast<QmlJSTextEditorWidget*>(em->currentEditor()->widget()))
|
|
|
|
|
editor->renameUsages();
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-07 15:14:43 +01:00
|
|
|
void QmlJSEditorPlugin::reformatFile()
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
|
|
|
|
if (QmlJSTextEditorWidget *editor = qobject_cast<QmlJSTextEditorWidget*>(em->currentEditor()->widget())) {
|
2011-11-18 13:25:09 +01:00
|
|
|
QTC_ASSERT(!editor->isSemanticInfoOutdated(), return);
|
2011-11-07 15:14:43 +01:00
|
|
|
|
|
|
|
|
const QString &newText = QmlJS::reformat(editor->semanticInfo().document);
|
|
|
|
|
QTextCursor tc(editor->textCursor());
|
|
|
|
|
tc.movePosition(QTextCursor::Start);
|
|
|
|
|
tc.movePosition(QTextCursor::End, QTextCursor::KeepAnchor);
|
|
|
|
|
tc.insertText(newText);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-04 13:50:15 +02:00
|
|
|
void QmlJSEditorPlugin::showContextPane()
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager *em = Core::EditorManager::instance();
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
if (QmlJSTextEditorWidget *editor = qobject_cast<QmlJSTextEditorWidget*>(em->currentEditor()->widget()))
|
2010-08-04 13:50:15 +02:00
|
|
|
editor->showContextPane();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-23 13:19:28 +02:00
|
|
|
Core::Command *QmlJSEditorPlugin::addToolAction(QAction *a, Core::ActionManager *am,
|
2011-11-10 11:36:51 +01:00
|
|
|
Core::Context &context, const Core::Id &id,
|
2010-04-23 13:19:28 +02:00
|
|
|
Core::ActionContainer *c1, const QString &keySequence)
|
|
|
|
|
{
|
2011-11-10 11:36:51 +01:00
|
|
|
Core::Command *command = am->registerAction(a, id, context);
|
2010-04-23 13:19:28 +02:00
|
|
|
if (!keySequence.isEmpty())
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence(keySequence));
|
|
|
|
|
c1->addAction(command);
|
|
|
|
|
return command;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
QmlJSQuickFixAssistProvider *QmlJSEditorPlugin::quickFixAssistProvider() const
|
2010-06-03 15:49:29 +02:00
|
|
|
{
|
2011-04-15 16:19:23 +02:00
|
|
|
return m_quickFixAssistProvider;
|
2010-06-03 15:49:29 +02:00
|
|
|
}
|
2010-04-23 13:19:28 +02:00
|
|
|
|
2010-12-14 15:04:46 +01:00
|
|
|
void QmlJSEditorPlugin::currentEditorChanged(Core::IEditor *editor)
|
|
|
|
|
{
|
2011-11-07 15:14:43 +01:00
|
|
|
QmlJSTextEditorWidget *newTextEditor = 0;
|
|
|
|
|
if (editor)
|
|
|
|
|
newTextEditor = qobject_cast<QmlJSTextEditorWidget *>(editor->widget());
|
|
|
|
|
|
|
|
|
|
if (m_currentEditor) {
|
|
|
|
|
disconnect(m_currentEditor.data(), SIGNAL(contentsChanged()),
|
|
|
|
|
this, SLOT(checkCurrentEditorSemanticInfoUpToDate()));
|
|
|
|
|
disconnect(m_currentEditor.data(), SIGNAL(semanticInfoUpdated()),
|
|
|
|
|
this, SLOT(checkCurrentEditorSemanticInfoUpToDate()));
|
|
|
|
|
}
|
|
|
|
|
m_currentEditor = newTextEditor;
|
|
|
|
|
if (newTextEditor) {
|
|
|
|
|
connect(newTextEditor, SIGNAL(contentsChanged()),
|
|
|
|
|
this, SLOT(checkCurrentEditorSemanticInfoUpToDate()));
|
|
|
|
|
connect(newTextEditor, SIGNAL(semanticInfoUpdated()),
|
|
|
|
|
this, SLOT(checkCurrentEditorSemanticInfoUpToDate()));
|
2011-11-18 13:25:09 +01:00
|
|
|
newTextEditor->reparseDocumentNow();
|
2010-12-14 15:04:46 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-09 14:40:04 +02:00
|
|
|
void QmlJSEditorPlugin::runSemanticScan()
|
|
|
|
|
{
|
|
|
|
|
m_qmlTaskManager->updateSemanticMessagesNow();
|
2012-03-07 16:40:03 +01:00
|
|
|
TaskHub *hub = ProjectExplorerPlugin::instance()->taskHub();
|
2011-08-09 14:40:04 +02:00
|
|
|
hub->setCategoryVisibility(Constants::TASK_CATEGORY_QML_ANALYSIS, true);
|
|
|
|
|
hub->popup(false);
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-07 15:14:43 +01:00
|
|
|
void QmlJSEditorPlugin::checkCurrentEditorSemanticInfoUpToDate()
|
|
|
|
|
{
|
2011-11-18 13:25:09 +01:00
|
|
|
const bool semanticInfoUpToDate = m_currentEditor && !m_currentEditor->isSemanticInfoOutdated();
|
2011-11-07 15:14:43 +01:00
|
|
|
m_reformatFileAction->setEnabled(semanticInfoUpToDate);
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
Q_EXPORT_PLUGIN(QmlJSEditorPlugin)
|