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 : Labels sidebar widgets 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_LABELS_SIDE_BAR_WIDGET_H 0019 #define DIGIKAM_LABELS_SIDE_BAR_WIDGET_H 0020 0021 // Local includes 0022 0023 #include "album.h" 0024 #include "sidebarwidget.h" 0025 #include "labelstreeview.h" 0026 0027 namespace Digikam 0028 { 0029 0030 class LabelsSideBarWidget : public SidebarWidget 0031 { 0032 Q_OBJECT 0033 0034 public: 0035 0036 explicit LabelsSideBarWidget(QWidget* const parent); 0037 ~LabelsSideBarWidget() override; 0038 0039 LabelsTreeView* labelsTree(); 0040 0041 void setActive(bool active) override; 0042 void applySettings() override; 0043 void changeAlbumFromHistory(const QList<Album*>& album) override; 0044 void doLoadState() override; 0045 void doSaveState() override; 0046 const QIcon getIcon() override; 0047 const QString getCaption() override; 0048 0049 QHash<LabelsTreeView::Labels, QList<int> > selectedLabels(); 0050 0051 private: 0052 0053 class Private; 0054 Private* const d; 0055 }; 0056 0057 } // namespace Digikam 0058 0059 #endif // DIGIKAM_LABELS_SIDE_BAR_WIDGET_H