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

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2010-02-01
0007  * Description : a tool to export items to ImageShack web service
0008  *
0009  * SPDX-FileCopyrightText: 2010      by Jens Mueller <tschenser at gmx dot de>
0010  * SPDX-FileCopyrightText: 2013-2018 by Caulier Gilles <caulier dot gilles at gmail dot com>
0011  *
0012  * SPDX-License-Identifier: GPL-2.0-or-later
0013  *
0014  * ============================================================ */
0015 
0016 #ifndef DIGIKAM_IMAGE_SHACK_NEWALBUMDLG_H
0017 #define DIGIKAM_IMAGE_SHACK_NEWALBUMDLG_H
0018 
0019 // Qt includes
0020 
0021 #include <QRadioButton>
0022 #include <QDateTimeEdit>
0023 #include <QDialog>
0024 #include <QComboBox>
0025 #include <QCloseEvent>
0026 
0027 // Local includes
0028 
0029 #include "wsnewalbumdialog.h"
0030 
0031 using namespace Digikam;
0032 
0033 namespace DigikamGenericImageShackPlugin
0034 {
0035 
0036 class ImageShackNewAlbumDlg : public WSNewAlbumDialog
0037 {
0038     Q_OBJECT
0039 
0040 public:
0041 
0042     explicit ImageShackNewAlbumDlg(QWidget* const parent, const QString& toolName);
0043     ~ImageShackNewAlbumDlg() override;
0044 
0045     QString getAlbumTitle();
0046 };
0047 
0048 } // namespace DigikamGenericImageShackPlugin
0049 
0050 #endif // DIGIKAM_IMAGE_SHACK_NEWALBUMDLG_H