File indexing completed on 2025-01-19 03:53:21
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2009-03-25 0007 * Description : Tree View for album models 0008 * 0009 * SPDX-FileCopyrightText: 2009-2010 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de> 0010 * SPDX-FileCopyrightText: 2010-2011 by Andi Clemens <andi dot clemens at gmail dot com> 0011 * SPDX-FileCopyrightText: 2009-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0012 * 0013 * SPDX-License-Identifier: GPL-2.0-or-later 0014 * 0015 * ============================================================ */ 0016 0017 #ifndef DIGIKAM_ABSTRACT_COUNTING_ALBUM_TREE_VIEW_H 0018 #define DIGIKAM_ABSTRACT_COUNTING_ALBUM_TREE_VIEW_H 0019 0020 // Local includes 0021 0022 #include "abstractalbumtreeview.h" 0023 0024 namespace Digikam 0025 { 0026 0027 class AbstractCountingAlbumTreeView : public AbstractAlbumTreeView 0028 { 0029 Q_OBJECT 0030 0031 public: 0032 0033 explicit AbstractCountingAlbumTreeView(QWidget* const parent, Flags flags); 0034 0035 protected: 0036 0037 void setAlbumModel(AbstractCountingAlbumModel* const model); 0038 void setAlbumFilterModel(AlbumFilterModel* const filterModel); 0039 0040 void rowsInserted(const QModelIndex& parent, int start, int end) override; 0041 0042 private Q_SLOTS: 0043 0044 void slotCollapsed(const QModelIndex& index); 0045 void slotExpanded(const QModelIndex& index); 0046 void setShowCountFromSettings(); 0047 void updateShowCountState(const QModelIndex& index, bool recurse); 0048 0049 private: 0050 0051 void init(); 0052 }; 0053 0054 } // namespace Digikam 0055 0056 #endif // DIGIKAM_ABSTRACT_COUNTING_ALBUM_TREE_VIEW_H