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 gps search. 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_GPS_SEARCH_SIDE_BAR_WIDGET_H 0019 #define DIGIKAM_GPS_SEARCH_SIDE_BAR_WIDGET_H 0020 0021 // Local includes 0022 0023 #include "digikam_config.h" 0024 #include "albummodel.h" 0025 #include "searchmodificationhelper.h" 0026 #include "sidebarwidget.h" 0027 #include "itemfiltermodel.h" 0028 #include "gpssearchview.h" 0029 0030 namespace Digikam 0031 { 0032 0033 class GPSSearchSideBarWidget : public SidebarWidget 0034 { 0035 Q_OBJECT 0036 0037 public: 0038 0039 explicit GPSSearchSideBarWidget(QWidget* const parent, 0040 SearchModel* const searchModel, 0041 SearchModificationHelper* const searchModificationHelper, 0042 ItemFilterModel* const imageFilterModel, 0043 QItemSelectionModel* const itemSelectionModel); 0044 ~GPSSearchSideBarWidget() override; 0045 0046 void setActive(bool active) override; 0047 void doLoadState() override; 0048 void doSaveState() override; 0049 void applySettings() override; 0050 void changeAlbumFromHistory(const QList<Album*>& album) override; 0051 const QIcon getIcon() override; 0052 const QString getCaption() override; 0053 0054 Q_SIGNALS: 0055 0056 void signalMapSoloItems(const QList<qlonglong>&, const QString&); 0057 0058 private: 0059 0060 class Private; 0061 Private* const d; 0062 }; 0063 0064 } // namespace Digikam 0065 0066 #endif // DIGIKAM_GPS_SEARCH_SIDE_BAR_WIDGET_H