// Copyright (C) 2016 Denis Mingulov // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 #pragma once #include "classviewsymbolinformation.h" #include "classviewsymbollocation.h" #include #include QT_BEGIN_NAMESPACE template class QHash; class QStandardItem; QT_END_NAMESPACE namespace ClassView { namespace Internal { class ParserTreeItemPrivate; class ParserTreeItem { public: using ConstPtr = QSharedPointer; public: ParserTreeItem(); ParserTreeItem(const Utils::FilePath &projectFilePath); ParserTreeItem(const QHash &children); ~ParserTreeItem(); static ConstPtr parseDocument(const CPlusPlus::Document::Ptr &doc); static ConstPtr mergeTrees(const Utils::FilePath &projectFilePath, const QList &docTrees); Utils::FilePath projectFilePath() const; QSet 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)