2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-04-15 16:19:23 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2011-04-15 16:19:23 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-04-15 16:19:23 +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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2011-04-15 16:19:23 +02: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
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2011-04-15 16:19:23 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-04-15 16:19:23 +02:00
|
|
|
|
|
|
|
|
#ifndef QMLJSCOMPLETIONASSIST_H
|
|
|
|
|
#define QMLJSCOMPLETIONASSIST_H
|
|
|
|
|
|
|
|
|
|
#include "qmljseditor.h"
|
|
|
|
|
|
2014-09-04 00:04:18 +02:00
|
|
|
#include <texteditor/codeassist/assistproposalitem.h>
|
|
|
|
|
#include <texteditor/codeassist/genericproposalmodel.h>
|
2011-04-15 16:19:23 +02:00
|
|
|
#include <texteditor/codeassist/completionassistprovider.h>
|
|
|
|
|
#include <texteditor/codeassist/iassistprocessor.h>
|
|
|
|
|
#include <texteditor/snippets/snippetassistcollector.h>
|
2014-09-04 00:04:18 +02:00
|
|
|
#include <texteditor/codeassist/assistinterface.h>
|
2011-04-15 16:19:23 +02:00
|
|
|
|
2014-02-17 19:23:20 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QScopedPointer>
|
|
|
|
|
#include <QVariant>
|
|
|
|
|
#include <QIcon>
|
2011-04-15 16:19:23 +02:00
|
|
|
|
2014-02-11 21:55:42 +02:00
|
|
|
namespace QmlJS { class Value; }
|
2011-04-15 16:19:23 +02:00
|
|
|
|
|
|
|
|
namespace QmlJSEditor {
|
|
|
|
|
|
|
|
|
|
class QmlJSCompletionAssistInterface;
|
|
|
|
|
|
2015-03-06 09:35:06 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2014-09-04 00:04:18 +02:00
|
|
|
class QmlJSAssistProposalItem : public TextEditor::AssistProposalItem
|
2011-04-15 16:19:23 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2015-06-03 15:32:02 +02:00
|
|
|
bool prematurelyApplies(const QChar &c) const override;
|
2014-09-26 11:37:54 +02:00
|
|
|
void applyContextualContent(TextEditor::TextEditorWidget *editorWidget,
|
2015-06-03 15:32:02 +02:00
|
|
|
int basePosition) const override;
|
2011-04-15 16:19:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2014-09-04 00:04:18 +02:00
|
|
|
class QmlJSAssistProposalModel : public TextEditor::GenericProposalModel
|
2011-04-15 16:19:23 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2014-09-04 00:04:18 +02:00
|
|
|
QmlJSAssistProposalModel(const QList<TextEditor::AssistProposalItem *> &items)
|
2014-09-13 02:22:24 +02:00
|
|
|
{
|
|
|
|
|
loadContent(items);
|
|
|
|
|
}
|
2011-04-15 16:19:23 +02:00
|
|
|
|
2015-06-03 15:32:02 +02:00
|
|
|
void filter(const QString &prefix) override;
|
|
|
|
|
void sort(const QString &prefix) override;
|
|
|
|
|
bool keepPerfectMatch(TextEditor::AssistReason reason) const override;
|
2011-04-15 16:19:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QmlJSCompletionAssistProvider : public TextEditor::CompletionAssistProvider
|
|
|
|
|
{
|
2013-08-30 12:55:06 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2011-04-15 16:19:23 +02:00
|
|
|
public:
|
2015-06-03 15:32:02 +02:00
|
|
|
bool supportsEditor(Core::Id editorId) const override;
|
|
|
|
|
TextEditor::IAssistProcessor *createProcessor() const override;
|
2011-04-15 16:19:23 +02:00
|
|
|
|
2015-06-03 15:32:02 +02:00
|
|
|
int activationCharSequenceLength() const override;
|
|
|
|
|
bool isActivationCharSequence(const QString &sequence) const override;
|
|
|
|
|
bool isContinuationChar(const QChar &c) const override;
|
2011-04-15 16:19:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QmlJSCompletionAssistProcessor : public TextEditor::IAssistProcessor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
QmlJSCompletionAssistProcessor();
|
2014-02-17 19:23:20 +02:00
|
|
|
~QmlJSCompletionAssistProcessor();
|
2011-04-15 16:19:23 +02:00
|
|
|
|
2015-06-03 15:32:02 +02:00
|
|
|
TextEditor::IAssistProposal *perform(const TextEditor::AssistInterface *interface) override;
|
2011-04-15 16:19:23 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TextEditor::IAssistProposal *createContentProposal() const;
|
2011-11-16 09:56:53 +01:00
|
|
|
TextEditor::IAssistProposal *createHintProposal(
|
|
|
|
|
const QString &functionName, const QStringList &namedArguments,
|
|
|
|
|
int optionalNamedArguments, bool isVariadic) const;
|
2011-04-15 16:19:23 +02:00
|
|
|
|
|
|
|
|
bool acceptsIdleEditor() const;
|
|
|
|
|
|
|
|
|
|
bool completeUrl(const QString &relativeBasePath, const QString &urlString);
|
|
|
|
|
bool completeFileName(const QString &relativeBasePath,
|
|
|
|
|
const QString &fileName,
|
|
|
|
|
const QStringList &patterns = QStringList());
|
|
|
|
|
|
|
|
|
|
int m_startPosition;
|
|
|
|
|
QScopedPointer<const QmlJSCompletionAssistInterface> m_interface;
|
2014-09-04 00:04:18 +02:00
|
|
|
QList<TextEditor::AssistProposalItem *> m_completions;
|
2011-04-15 16:19:23 +02:00
|
|
|
TextEditor::SnippetAssistCollector m_snippetCollector;
|
|
|
|
|
};
|
|
|
|
|
|
2015-03-06 09:35:06 +02:00
|
|
|
} // Internal
|
2011-04-15 16:19:23 +02:00
|
|
|
|
2015-03-06 09:35:06 +02:00
|
|
|
class QMLJSEDITOR_EXPORT QmlJSCompletionAssistInterface : public TextEditor::AssistInterface
|
2011-04-15 16:19:23 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2012-02-14 16:43:51 +01:00
|
|
|
QmlJSCompletionAssistInterface(QTextDocument *textDocument,
|
2011-04-15 16:19:23 +02:00
|
|
|
int position,
|
2013-03-18 14:58:46 +01:00
|
|
|
const QString &fileName,
|
2011-04-15 16:19:23 +02:00
|
|
|
TextEditor::AssistReason reason,
|
2012-04-12 15:51:56 +02:00
|
|
|
const QmlJSTools::SemanticInfo &info);
|
|
|
|
|
const QmlJSTools::SemanticInfo &semanticInfo() const;
|
2011-04-15 16:19:23 +02:00
|
|
|
const QIcon &fileNameIcon() const { return m_darkBlueIcon; }
|
|
|
|
|
const QIcon &keywordIcon() const { return m_darkYellowIcon; }
|
|
|
|
|
const QIcon &symbolIcon() const { return m_darkCyanIcon; }
|
|
|
|
|
|
|
|
|
|
private:
|
2012-04-12 15:51:56 +02:00
|
|
|
QmlJSTools::SemanticInfo m_semanticInfo;
|
2011-04-15 16:19:23 +02:00
|
|
|
QIcon m_darkBlueIcon;
|
|
|
|
|
QIcon m_darkYellowIcon;
|
|
|
|
|
QIcon m_darkCyanIcon;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // QmlJSEditor
|
|
|
|
|
|
|
|
|
|
#endif // QMLJSCOMPLETIONASSIST_H
|