blob: 2923ed1ba64d004615756cfdf6156dde7480b577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "cppeditor_global.h"
#include "cppsemanticinfo.h"
#include <cplusplus/CppDocument.h>
#include <texteditor/refactoroverlay.h>
#include <texteditor/textdocument.h>
#include <QTextEdit>
namespace ProjectExplorer { class Node; }
namespace CppEditor {
namespace Internal {
class OutlineModel;
class ParseContextModel;
}
class CursorInfo;
class CursorInfoParams;
class CPPEDITOR_EXPORT CppEditorDocument : public TextEditor::TextDocument
{
Q_OBJECT
friend class CppEditorDocumentHandleImpl;
public:
explicit CppEditorDocument();
~CppEditorDocument() override;
bool isObjCEnabled() const;
void setCompletionAssistProvider(TextEditor::CompletionAssistProvider *provider) override;
TextEditor::CompletionAssistProvider *completionAssistProvider() const override;
TextEditor::IAssistProvider *quickFixAssistProvider() const override;
void recalculateSemanticInfoDetached();
SemanticInfo recalculateSemanticInfo(); // TODO: Remove me
void setPreferredParseContext(const QString &parseContextId);
void updateSoftPreferredParseContext(const ProjectExplorer::Node *currentNode);
void setExtraPreprocessorDirectives(const QByteArray &directives);
// the blocks list must be sorted
void setIfdefedOutBlocks(const QList<TextEditor::BlockRange> &blocks);
void scheduleProcessDocument();
Internal::ParseContextModel &parseContextModel();
Internal::OutlineModel &outlineModel();
void updateOutline();
QFuture<CursorInfo> cursorInfo(const CursorInfoParams ¶ms);
TextEditor::TabSettings tabSettings() const override;
bool usesClangd() const;
#ifdef WITH_TESTS
QList<TextEditor::BlockRange> ifdefedOutBlocks() const;
#endif
signals:
void codeWarningsUpdated(unsigned contentsRevision,
const QList<QTextEdit::ExtraSelection> selections,
const QList<TextEditor::RefactorMarker> &refactorMarkers);
void cppDocumentUpdated(const CPlusPlus::Document::Ptr document); // TODO: Remove me
void semanticInfoUpdated(const SemanticInfo semanticInfo); // TODO: Remove me
void preprocessorSettingsChanged(bool customSettings);
#ifdef WITH_TESTS
void ifdefedOutBlocksApplied();
#endif
protected:
void applyFontSettings() override;
Utils::Result<> saveImpl(const Utils::FilePath &filePath, SaveOption option) override;
void slotCodeStyleSettingsChanged() override;
void removeTrailingWhitespace(const QTextBlock &block) override;
private:
void processDocument();
class Private;
Private * const d;
};
} // namespace CppEditor
|