File indexing completed on 2025-01-19 03:50:43

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2009-12-05
0007  * Description : Side Bar Widget for the folder view.
0008  *
0009  * SPDX-FileCopyrightText: 2009-2010 by Johannes Wienke <languitar at semipol dot de>
0010  * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0011  * SPDX-FileCopyrightText: 2014      by Mohamed_Anwer <m_dot_anwer at gmx dot com>
0012  * SPDX-FileCopyrightText: 2010      by Aditya Bhatt <adityabhatt1991 at gmail dot com>
0013  *
0014  * SPDX-License-Identifier: GPL-2.0-or-later
0015  *
0016  * ============================================================ */
0017 
0018 #ifndef DIGIKAM_ALBUM_FOLDER_VIEW_SIDE_BAR_WIDGET_H
0019 #define DIGIKAM_ALBUM_FOLDER_VIEW_SIDE_BAR_WIDGET_H
0020 
0021 // Local includes
0022 
0023 #include "albummodel.h"
0024 #include "albummodificationhelper.h"
0025 #include "sidebarwidget.h"
0026 
0027 namespace Digikam
0028 {
0029 
0030 template <class T>
0031 class AlbumPointer;
0032 
0033 class AlbumFolderViewSideBarWidget : public SidebarWidget
0034 {
0035     Q_OBJECT
0036 
0037 public:
0038 
0039     explicit AlbumFolderViewSideBarWidget(QWidget* const parent,
0040                                           AlbumModel* const model,
0041                                           AlbumModificationHelper* const albumModificationHelper);
0042     ~AlbumFolderViewSideBarWidget() override;
0043 
0044     void          setActive(bool active)                             override;
0045     void          doLoadState()                                      override;
0046     void          doSaveState()                                      override;
0047     void          applySettings()                                    override;
0048     void          changeAlbumFromHistory(const QList<Album*>& album) override;
0049     const QIcon   getIcon()                                          override;
0050     const QString getCaption()                                       override;
0051 
0052     AlbumPointer<PAlbum> currentAlbum() const;
0053 
0054 public Q_SLOTS:
0055 
0056     void setCurrentAlbum(PAlbum* album);
0057 
0058 Q_SIGNALS:
0059 
0060     void signalFindDuplicates(const QList<PAlbum*>& albums);
0061 
0062 private:
0063 
0064     class Private;
0065     Private* const d;
0066 };
0067 
0068 } // namespace Digikam
0069 
0070 #endif // DIGIKAM_ALBUM_FOLDER_VIEW_SIDE_BAR_WIDGET_H