Files
qt-creator/src/plugins/qmljseditor/qmljsquickfix.cpp

159 lines
4.5 KiB
C++
Raw Normal View History

/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#include "qmljsquickfix.h"
#include "qmljscomponentfromobjectdef.h"
#include "qmljseditor.h"
#include "qmljsrefactoringchanges.h"
2010-06-07 12:12:07 +02:00
#include "qmljs/parser/qmljsast_p.h"
2010-07-26 13:06:33 +02:00
#include <extensionsystem/iplugin.h>
#include <extensionsystem/pluginmanager.h>
#include <qmljs/qmljsmodelmanagerinterface.h>
#include <QtCore/QDebug>
2010-07-26 13:06:33 +02:00
using namespace QmlJS;
using namespace QmlJS::AST;
using namespace QmlJSEditor;
using namespace QmlJSEditor::Internal;
2010-07-26 13:06:33 +02:00
using namespace TextEditor;
using TextEditor::RefactoringChanges;
2010-07-26 13:06:33 +02:00
QmlJSQuickFixState::QmlJSQuickFixState(TextEditor::BaseTextEditor *editor)
: QuickFixState(editor)
{
}
2010-06-07 12:12:07 +02:00
2010-07-26 13:06:33 +02:00
SemanticInfo QmlJSQuickFixState::semanticInfo() const
{
2010-07-26 13:06:33 +02:00
return _semanticInfo;
}
2010-07-26 13:06:33 +02:00
Snapshot QmlJSQuickFixState::snapshot() const
{
2010-07-26 13:06:33 +02:00
return _semanticInfo.snapshot;
}
2010-07-26 13:06:33 +02:00
Document::Ptr QmlJSQuickFixState::document() const
2010-06-07 12:12:07 +02:00
{
return _semanticInfo.document;
}
2010-07-26 13:06:33 +02:00
unsigned QmlJSQuickFixState::startPosition(const QmlJS::AST::SourceLocation &loc) const
2010-06-07 12:12:07 +02:00
{
2010-07-26 13:06:33 +02:00
return position(loc.startLine, loc.startColumn);
2010-06-07 12:12:07 +02:00
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixOperation::QmlJSQuickFixOperation(const QmlJSQuickFixState &state, int priority)
: QuickFixOperation(priority)
, _state(state)
, _refactoringChanges(new QmlJSRefactoringChanges(ExtensionSystem::PluginManager::instance()->getObject<QmlJS::ModelManagerInterface>(),
state.snapshot()))
2010-06-07 12:12:07 +02:00
{
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixOperation::~QmlJSQuickFixOperation()
2010-06-07 12:12:07 +02:00
{
2010-07-26 13:06:33 +02:00
}
const QmlJSQuickFixState &QmlJSQuickFixOperation::state() const
{
return _state;
2010-06-07 12:12:07 +02:00
}
QString QmlJSQuickFixOperation::fileName() const
{
2010-07-26 13:06:33 +02:00
return state().document()->fileName();
}
2010-07-26 13:06:33 +02:00
QmlJSRefactoringChanges *QmlJSQuickFixOperation::refactoringChanges() const
{
2010-07-26 13:06:33 +02:00
return _refactoringChanges.data();
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixFactory::QmlJSQuickFixFactory()
{
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixFactory::~QmlJSQuickFixFactory()
{
}
2010-07-26 13:06:33 +02:00
QList<QuickFixOperation::Ptr> QmlJSQuickFixFactory::matchingOperations(QuickFixState *state)
2010-06-07 12:12:07 +02:00
{
2010-07-26 13:06:33 +02:00
if (QmlJSQuickFixState *qmljsState = static_cast<QmlJSQuickFixState *>(state))
return match(*qmljsState);
else
return QList<TextEditor::QuickFixOperation::Ptr>();
2010-06-07 12:12:07 +02:00
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixCollector::QmlJSQuickFixCollector()
{
}
QmlJSQuickFixCollector::~QmlJSQuickFixCollector()
{
}
2010-06-07 12:12:07 +02:00
bool QmlJSQuickFixCollector::supportsEditor(TextEditor::ITextEditable *editable)
{
2010-07-26 13:06:33 +02:00
return qobject_cast<QmlJSTextEditor *>(editable->widget()) != 0;
2010-06-07 12:12:07 +02:00
}
2010-07-26 13:06:33 +02:00
TextEditor::QuickFixState *QmlJSQuickFixCollector::initializeCompletion(TextEditor::BaseTextEditor *editor)
{
2010-07-26 13:06:33 +02:00
if (QmlJSTextEditor *qmljsEditor = qobject_cast<QmlJSTextEditor *>(editor)) {
const SemanticInfo info = qmljsEditor->semanticInfo();
2010-07-26 13:06:33 +02:00
if (qmljsEditor->isOutdated()) {
// outdated
qWarning() << "TODO: outdated semantic info, force a reparse.";
return 0;
}
2010-07-26 13:06:33 +02:00
QmlJSQuickFixState *state = new QmlJSQuickFixState(editor);
state->_semanticInfo = info;
2010-06-07 12:12:07 +02:00
return state;
}
return 0;
}
2010-07-26 13:06:33 +02:00
QList<TextEditor::QuickFixFactory *> QmlJSQuickFixCollector::quickFixFactories() const
{
QList<TextEditor::QuickFixFactory *> results;
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
foreach (QmlJSQuickFixFactory *f, pm->getObjects<QmlJSEditor::QmlJSQuickFixFactory>())
results.append(f);
return results;
}