forked from qt-creator/qt-creator
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
// 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)
|