forked from qt-creator/qt-creator
Define the run type of the processor by its implementation instead of a enum value of the provider. The execution of a processor inside the assist now follows a unified procedure. Change-Id: Ibe9fab324c6072e77702c2663946d7a9f562a085 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "cppeditor_global.h"
|
|
|
|
#include <texteditor/codeassist/genericproposal.h>
|
|
#include <texteditor/codeassist/iassistprovider.h>
|
|
|
|
#include <cplusplus/CppDocument.h>
|
|
#include <cplusplus/Symbols.h>
|
|
#include <cplusplus/TypeOfExpression.h>
|
|
|
|
#include <QSharedPointer>
|
|
#include <QTextCursor>
|
|
|
|
namespace TextEditor {
|
|
class AssistProposalItemInterface;
|
|
class IAssistProposalWidget;
|
|
}
|
|
|
|
namespace CppEditor {
|
|
|
|
class CPPEDITOR_EXPORT VirtualFunctionProposal : public TextEditor::GenericProposal
|
|
{
|
|
public:
|
|
VirtualFunctionProposal(int cursorPos,
|
|
const QList<TextEditor::AssistProposalItemInterface *> &items,
|
|
bool openInSplit);
|
|
|
|
private:
|
|
TextEditor::IAssistProposalWidget *createWidget() const override;
|
|
|
|
bool m_openInSplit;
|
|
};
|
|
|
|
class CPPEDITOR_EXPORT VirtualFunctionAssistProvider : public TextEditor::IAssistProvider
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VirtualFunctionAssistProvider();
|
|
|
|
struct Parameters {
|
|
CPlusPlus::Function *function = nullptr;
|
|
CPlusPlus::Class *staticClass = nullptr;
|
|
QSharedPointer<CPlusPlus::TypeOfExpression> typeOfExpression; // Keeps instantiated symbols.
|
|
CPlusPlus::Snapshot snapshot;
|
|
int cursorPosition = -1;
|
|
bool openInNextSplit = false;
|
|
};
|
|
|
|
virtual bool configure(const Parameters ¶meters);
|
|
Parameters params() const { return m_params; }
|
|
void clearParams() { m_params = Parameters(); }
|
|
|
|
TextEditor::IAssistProcessor *createProcessor(const TextEditor::AssistInterface *) const override;
|
|
|
|
private:
|
|
Parameters m_params;
|
|
};
|
|
|
|
} // namespace CppEditor
|