Files
qt-creator/src/plugins/classview/classviewparsertreeitem.h

58 lines
1.5 KiB
C
Raw Normal View History

// 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>
#include <QSharedPointer>
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 = QSharedPointer<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)