File indexing completed on 2025-01-05 03:53:42

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2008-12-07
0007  * Description : a tool to export images to Smugmug web service
0008  *
0009  * SPDX-FileCopyrightText: 2008-2009 by Luka Renko <lure at kubuntu dot org>
0010  * SPDX-FileCopyrightText: 2008-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0011  * SPDX-FileCopyrightText: 2018      by Thanh Trung Dinh <dinhthanhtrung1996 at gmail dot com>
0012  *
0013  * SPDX-License-Identifier: GPL-2.0-or-later
0014  *
0015  * ============================================================ */
0016 
0017 #ifndef DIGIKAM_SMUG_NEW_ALBUM_DLG_H
0018 #define DIGIKAM_SMUG_NEW_ALBUM_DLG_H
0019 
0020 // Qt includes
0021 
0022 #include <QDialog>
0023 #include <QGroupBox>
0024 #include <QComboBox>
0025 
0026 namespace DigikamGenericSmugPlugin
0027 {
0028 
0029 class SmugAlbum;
0030 
0031 class SmugNewAlbumDlg : public QDialog
0032 {
0033     Q_OBJECT
0034 
0035 public:
0036 
0037     explicit SmugNewAlbumDlg(QWidget* const parent);
0038     ~SmugNewAlbumDlg() override;
0039 
0040     void getAlbumProperties(SmugAlbum& album);
0041 
0042 /*
0043     Categories are deprecated
0044     QComboBox* categoryCombo()    const;
0045     QComboBox* subCategoryCombo() const;
0046 */
0047 
0048     QComboBox* templateCombo()    const;
0049     QGroupBox* privateGroupBox()  const;
0050 
0051 private:
0052 
0053     class Private;
0054     Private* const d;
0055 };
0056 
0057 } // namespace DigikamGenericSmugPlugin
0058 
0059 #endif // DIGIKAM_SMUG_NEW_ALBUM_DLG_H