/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ****************************************************************************/ #pragma once #include "expanddata.h" #include "projectnodes.h" #include #include #include #include #include #include namespace ProjectExplorer { class Node; class FolderNode; class Project; class ProjectNode; namespace Internal { bool compareNodes(const Node *n1, const Node *n2); class WrapperNode : public Utils::TypedTreeItem { public: explicit WrapperNode(Node *node) : m_node(node) {} Node *m_node = nullptr; }; class FlatModel : public Utils::TreeModel { Q_OBJECT public: FlatModel(QObject *parent); // QAbstractItemModel QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; Qt::ItemFlags flags(const QModelIndex &index) const override; bool setData(const QModelIndex &index, const QVariant &value, int role) override; Qt::DropActions supportedDragActions() const override; QStringList mimeTypes() const override; QMimeData *mimeData(const QModelIndexList &indexes) const override; bool canDropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) const override; bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override; Node *nodeForIndex(const QModelIndex &index) const; WrapperNode *wrapperForNode(const Node *node) const; QModelIndex indexForNode(const Node *node) const; bool projectFilterEnabled(); bool generatedFilesFilterEnabled(); bool disabledFilesFilterEnabled() const { return m_filterDisabledFiles; } bool trimEmptyDirectoriesEnabled(); void setProjectFilterEnabled(bool filter); void setGeneratedFilesFilterEnabled(bool filter); void setDisabledFilesFilterEnabled(bool filter); void setTrimEmptyDirectories(bool filter); void onExpanded(const QModelIndex &idx); void onCollapsed(const QModelIndex &idx); signals: void renamed(const Utils::FilePath &oldName, const Utils::FilePath &newName); void requestExpansion(const QModelIndex &index); private: bool m_filterProjects = false; bool m_filterGeneratedFiles = true; bool m_filterDisabledFiles = false; bool m_trimEmptyDirectories = true; static const QLoggingCategory &logger(); void updateSubtree(FolderNode *node); void rebuildModel(); void addFolderNode(WrapperNode *parent, FolderNode *folderNode, QSet *seen); bool trimEmptyDirectories(WrapperNode *parent); ExpandData expandDataForNode(const Node *node) const; void loadExpandData(); void saveExpandData(); void handleProjectAdded(Project *project); void handleProjectRemoved(Project *project); WrapperNode *nodeForProject(const Project *project) const; void addOrRebuildProjectModel(Project *project); void parsingStateChanged(Project *project); QTimer m_timer; QSet m_toExpand; QColor m_enabledTextColor; QColor m_disabledTextColor; }; } // namespace Internal } // namespace ProjectExplorer