2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-04-22 15:21:04 +02: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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
#ifndef QMLJSEDITORPLUGIN_H
|
|
|
|
|
#define QMLJSEDITORPLUGIN_H
|
2009-04-22 15:21:04 +02:00
|
|
|
|
|
|
|
|
#include <extensionsystem/iplugin.h>
|
2010-06-25 12:56:16 +02:00
|
|
|
#include <coreplugin/icontext.h>
|
2011-11-10 11:36:51 +01:00
|
|
|
#include <coreplugin/id.h>
|
2012-02-07 15:30:33 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QPointer>
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-04-23 13:19:28 +02:00
|
|
|
QT_FORWARD_DECLARE_CLASS(QAction)
|
|
|
|
|
|
2014-02-11 21:55:42 +02:00
|
|
|
namespace Utils { class JsonSchemaManager; }
|
2012-02-07 15:30:33 +01:00
|
|
|
|
2010-04-23 13:19:28 +02:00
|
|
|
namespace Core {
|
|
|
|
|
class Command;
|
|
|
|
|
class ActionContainer;
|
2010-12-14 15:04:46 +01:00
|
|
|
class IEditor;
|
2010-04-23 13:19:28 +02:00
|
|
|
}
|
|
|
|
|
|
2014-02-11 21:55:42 +02:00
|
|
|
namespace QmlJS { class ModelManagerInterface; }
|
2010-06-09 15:56:03 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
namespace QmlJSEditor {
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2014-02-07 13:45:51 +01:00
|
|
|
class QmlJSEditorDocument;
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2009-04-22 15:21:04 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
class QmlJSQuickFixAssistProvider;
|
2010-07-13 17:16:43 +02:00
|
|
|
class QmlTaskManager;
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
class QmlJSEditorPlugin : public ExtensionSystem::IPlugin
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2012-02-21 16:52:28 +01:00
|
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "QmlJSEditor.json")
|
2009-04-22 15:21:04 +02:00
|
|
|
|
|
|
|
|
public:
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSEditorPlugin();
|
|
|
|
|
virtual ~QmlJSEditorPlugin();
|
2009-04-22 15:21:04 +02:00
|
|
|
|
|
|
|
|
// IPlugin
|
|
|
|
|
bool initialize(const QStringList &arguments, QString *errorMessage = 0);
|
|
|
|
|
void extensionsInitialized();
|
2010-07-13 17:05:47 +02:00
|
|
|
ShutdownFlag aboutToShutdown();
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
static QmlJSEditorPlugin *instance()
|
2009-04-22 15:21:04 +02:00
|
|
|
{ return m_instance; }
|
|
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
QmlJSQuickFixAssistProvider *quickFixAssistProvider() const;
|
2010-06-03 15:49:29 +02:00
|
|
|
|
2012-02-07 15:30:33 +01:00
|
|
|
Utils::JsonSchemaManager *jsonManager() const;
|
|
|
|
|
|
2010-02-08 12:50:10 +01:00
|
|
|
public Q_SLOTS:
|
2010-09-24 14:05:34 +02:00
|
|
|
void findUsages();
|
2011-07-11 12:53:05 +02:00
|
|
|
void renameUsages();
|
2011-11-07 15:14:43 +01:00
|
|
|
void reformatFile();
|
2010-08-04 13:50:15 +02:00
|
|
|
void showContextPane();
|
2010-02-08 12:50:10 +01:00
|
|
|
|
2010-04-23 13:19:28 +02:00
|
|
|
private Q_SLOTS:
|
2010-12-14 15:04:46 +01:00
|
|
|
void currentEditorChanged(Core::IEditor *editor);
|
2011-08-09 14:40:04 +02:00
|
|
|
void runSemanticScan();
|
2011-11-07 15:14:43 +01:00
|
|
|
void checkCurrentEditorSemanticInfoUpToDate();
|
2010-04-23 13:19:28 +02:00
|
|
|
|
2009-04-22 15:21:04 +02:00
|
|
|
private:
|
2014-07-01 11:08:26 +02:00
|
|
|
Core::Command *addToolAction(QAction *a, Core::Context &context, Core::Id id,
|
2010-04-23 13:19:28 +02:00
|
|
|
Core::ActionContainer *c1, const QString &keySequence);
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
static QmlJSEditorPlugin *m_instance;
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-06-09 15:56:03 +02:00
|
|
|
QmlJS::ModelManagerInterface *m_modelManager;
|
2011-04-15 16:19:23 +02:00
|
|
|
QmlJSQuickFixAssistProvider *m_quickFixAssistProvider;
|
2010-07-13 17:16:43 +02:00
|
|
|
QmlTaskManager *m_qmlTaskManager;
|
2011-11-07 15:14:43 +01:00
|
|
|
|
|
|
|
|
QAction *m_reformatFileAction;
|
|
|
|
|
|
2014-01-24 16:53:16 +01:00
|
|
|
QPointer<QmlJSEditorDocument> m_currentDocument;
|
2012-02-07 15:30:33 +01:00
|
|
|
QScopedPointer<Utils::JsonSchemaManager> m_jsonManager;
|
2009-04-22 15:21:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2010-01-15 17:20:03 +01:00
|
|
|
} // namespace QmlJSEditor
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
#endif // QMLJSEDITORPLUGIN_H
|