File indexing completed on 2025-01-19 03:59:20
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2006-07-24 0007 * Description : a dialog to select a camera folders. 0008 * 0009 * SPDX-FileCopyrightText: 2006-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #ifndef DIGIKAM_CAMERA_FOLDER_DIALOG_H 0016 #define DIGIKAM_CAMERA_FOLDER_DIALOG_H 0017 0018 // Qt includes 0019 0020 #include <QString> 0021 #include <QDialog> 0022 0023 namespace Digikam 0024 { 0025 0026 class CameraFolderItem; 0027 0028 class CameraFolderDialog : public QDialog 0029 { 0030 Q_OBJECT 0031 0032 public: 0033 0034 CameraFolderDialog(QWidget* const parent, const QMap<QString, int>& map, 0035 const QString& cameraName, const QString& rootPath); 0036 ~CameraFolderDialog() override; 0037 0038 QString selectedFolderPath() const; 0039 0040 private Q_SLOTS: 0041 0042 void slotFolderPathSelectionChanged(CameraFolderItem* item); 0043 void slotHelp(); 0044 0045 private: 0046 0047 class Private; 0048 Private* const d; 0049 }; 0050 0051 } // namespace Digikam 0052 0053 #endif // DIGIKAM_CAMERA_FOLDER_DIALOG_H