File indexing completed on 2025-01-19 03:53:22
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_DATE_TREE_VIEW_H 0018 #define DIGIKAM_DATE_TREE_VIEW_H 0019 0020 // Local includes 0021 0022 #include "abstractcheckablealbumtreeview.h" 0023 0024 namespace Digikam 0025 { 0026 0027 class DateTreeView : public AbstractCountingAlbumTreeView 0028 { 0029 Q_OBJECT 0030 0031 public: 0032 0033 explicit DateTreeView(QWidget* const parent = nullptr, Flags flags = DefaultFlags); 0034 0035 DateAlbumModel* albumModel() const; 0036 DAlbum* currentAlbum() const; 0037 DAlbum* albumForIndex(const QModelIndex& index) const; 0038 0039 void setAlbumModel(DateAlbumModel* const model); 0040 void setAlbumFilterModel(AlbumFilterModel* const filterModel); 0041 0042 public Q_SLOTS: 0043 0044 void setCurrentAlbums(const QList<Album*>& albums, bool selectInAlbumManager = true); 0045 void setCurrentAlbum(int dateId, bool selectInAlbumManager = true); 0046 }; 0047 0048 } // namespace Digikam 0049 0050 #endif // DIGIKAM_DATE_TREE_VIEW_H