File indexing completed on 2025-01-19 03:52:57
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2015-08-07 0007 * Description : a dialog to create a new remote album for export tools 0008 * 0009 * SPDX-FileCopyrightText: 2013 by Pankaj Kumar <me at panks dot me> 0010 * SPDX-FileCopyrightText: 2015 by Shourya Singh Gupta <shouryasgupta at gmail dot com> 0011 * SPDX-FileCopyrightText: 2013-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_FLICKR_NEW_ALBUM_DLG_H 0018 #define DIGIKAM_FLICKR_NEW_ALBUM_DLG_H 0019 0020 // Local includes 0021 0022 #include "wsnewalbumdialog.h" 0023 0024 using namespace Digikam; 0025 0026 namespace DigikamGenericFlickrPlugin 0027 { 0028 0029 class FPhotoSet; 0030 0031 class FlickrNewAlbumDlg : public WSNewAlbumDialog 0032 { 0033 Q_OBJECT 0034 0035 public: 0036 0037 explicit FlickrNewAlbumDlg(QWidget* const parent, const QString& toolName); 0038 ~FlickrNewAlbumDlg() override; 0039 0040 void getFolderProperties(FPhotoSet& folder); 0041 }; 0042 0043 } // namespace DigikamGenericFlickrPlugin 0044 0045 #endif // DIGIKAM_FLICKR_NEW_ALBUM_DLG_H