// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include #include #include QT_BEGIN_NAMESPACE class QToolButton; class QTreeView; QT_END_NAMESPACE namespace ProjectExplorer { class Node; namespace Internal { class FlatModel; class ProjectTreeWidget final : public QWidget { Q_OBJECT public: ProjectTreeWidget(); ~ProjectTreeWidget() final; bool autoSynchronization() const; void setAutoSynchronization(bool sync); bool projectFilter(); bool generatedFilesFilter(); bool disabledFilesFilter(); bool trimEmptyDirectoriesFilter(); bool hideSourceGroups(); Node *currentNode(); void sync(ProjectExplorer::Node *node); void showMessage(ProjectExplorer::Node *node, const QString &message); static Node *nodeForFile(const Utils::FilePath &fileName, const Node *currentNode = nullptr); void toggleAutoSynchronization(); void editCurrentItem(); void expandCurrentNodeRecursively(); void collapseAll(); void expandAll(); QList createToolButtons(); private: void setProjectFilter(bool filter); void setGeneratedFilesFilter(bool filter); void setDisabledFilesFilter(bool filter); void setTrimEmptyDirectories(bool filter); void setHideSourceGroups(bool filter); void handleCurrentItemChange(const QModelIndex ¤t); void showContextMenu(const QPoint &pos); void openItem(const QModelIndex &mainIndex); void setCurrentItem(ProjectExplorer::Node *node); static int expandedCount(Node *node); void rowsInserted(const QModelIndex &parent, int start, int end); void renamed(const Utils::FilePath &oldPath, const Utils::FilePath &newPath); void syncFromDocumentManager(); void expandNodeRecursively(const QModelIndex &index); QTreeView *m_view = nullptr; FlatModel *m_model = nullptr; QAction *m_filterProjectsAction = nullptr; QAction *m_filterGeneratedFilesAction = nullptr; QAction *m_filterDisabledFilesAction = nullptr; QAction *m_trimEmptyDirectoriesAction = nullptr; QAction *m_toggleSync = nullptr; QAction *m_hideSourceGroupsAction = nullptr; QString m_modelId; bool m_autoSync = true; Utils::FilePaths m_delayedRename; static QList m_projectTreeWidgets; friend class ProjectTreeWidgetFactory; }; void setupProjectTreeWidgetFactory(); } // namespace Internal } // namespace ProjectExplorer