File indexing completed on 2025-01-19 03:53:14
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2018-06-29 0007 * Description : a tool to export images to Twitter social network 0008 * 0009 * SPDX-FileCopyrightText: 2018 by Tarek Talaat <tarektalaat93 at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #ifndef DIGIKAM_TWITTER_NEW_ALBUM_DLG_H 0016 #define DIGIKAM_TWITTER_NEW_ALBUM_DLG_H 0017 0018 // Qt includes 0019 0020 #include <QDialog> 0021 0022 // Local includes 0023 0024 #include "wsnewalbumdialog.h" 0025 0026 using namespace Digikam; 0027 0028 class QComboBox; 0029 0030 namespace DigikamGenericTwitterPlugin 0031 { 0032 0033 class TwAlbum; 0034 0035 class TwNewAlbumDlg : public WSNewAlbumDialog 0036 { 0037 Q_OBJECT 0038 0039 public: 0040 0041 explicit TwNewAlbumDlg(QWidget* const parent, const QString& toolName); 0042 ~TwNewAlbumDlg() override; 0043 0044 void getAlbumProperties(TwAlbum& album); 0045 0046 private: 0047 0048 friend class TwWindow; 0049 }; 0050 0051 } // namespace DigikamGenericTwitterPlugin 0052 0053 #endif // DIGIKAM_TWITTER_NEW_ALBUM_DLG_H