blob: 18d016bce79d4db8bdb851fa5484b2e74b25bceb (
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
|
// 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/semantichighlighter.h>
#include <cplusplus/CppDocument.h>
#include <QHash>
namespace CppEditor {
class CPPEDITOR_EXPORT SemanticInfo
{
public:
struct Source
{
const QString fileName;
const QByteArray code;
const unsigned revision = 0;
CPlusPlus::Snapshot snapshot;
const bool force = false;
Source(const QString &fileName,
const QByteArray &code,
unsigned revision,
const CPlusPlus::Snapshot &snapshot,
bool force)
: fileName(fileName)
, code(code)
, revision(revision)
, snapshot(snapshot)
, force(force)
{}
};
public:
using Use = TextEditor::HighlightingResult;
using LocalUseMap = QHash<CPlusPlus::Symbol *, QList<Use>>;
// Document specific
unsigned revision = 0;
bool complete = true;
CPlusPlus::Snapshot snapshot;
CPlusPlus::Document::Ptr doc;
// Widget specific (e.g. related to cursor position)
bool localUsesUpdated = false;
LocalUseMap localUses;
};
} // namespace CppEditor
|