blob: 7fa725405804584961a762a074e9153a87b186af (
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 Denis Mingulov
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "classviewsymbolinformation.h"
#include "classviewsymbollocation.h"
#include <cplusplus/CppDocument.h>
QT_BEGIN_NAMESPACE
template <typename K, typename T>
class QHash;
class QStandardItem;
QT_END_NAMESPACE
namespace ClassView {
namespace Internal {
class ParserTreeItemPrivate;
class ParserTreeItem
{
public:
using ConstPtr = std::shared_ptr<const ParserTreeItem>;
public:
ParserTreeItem();
ParserTreeItem(const Utils::FilePath &projectFilePath);
ParserTreeItem(const QHash<SymbolInformation, ConstPtr> &children);
~ParserTreeItem();
static ConstPtr parseDocument(const CPlusPlus::Document::Ptr &doc);
static ConstPtr mergeTrees(const Utils::FilePath &projectFilePath, const QList<ConstPtr> &docTrees);
Utils::FilePath projectFilePath() const;
QSet<SymbolLocation> symbolLocations() const;
ConstPtr child(const SymbolInformation &inf) const;
int childCount() const;
// Make sure that below two methods are called only from the GUI thread
bool canFetchMore(QStandardItem *item) const;
void fetchMore(QStandardItem *item) const;
void debugDump(int indent = 0) const;
private:
friend class ParserTreeItemPrivate;
ParserTreeItemPrivate *d;
};
} // namespace Internal
} // namespace ClassView
Q_DECLARE_METATYPE(ClassView::Internal::ParserTreeItem::ConstPtr)
|