1 /* ============================================================
2  *
3  * This file is a part of KDE project
4  *
5  *
6  * Date        : 2011-04-12
7  * Description : A KIPI Plugin to export albums to rajce.net
8  *
9  * Copyright (C) 2011 by Lukas Krejci <krejci.l at centrum dot cz>
10  *
11  * This program is free software; you can redistribute it
12  * and/or modify it under the terms of the GNU General
13  * Public License as published by the Free Software Foundation;
14  * either version 2, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * ============================================================ */
22 
23 #ifndef NEWALBUMDIALOG_H
24 #define NEWALBUMDIALOG_H
25 
26 // Local includes
27 
28 #include "kpnewalbumdialog.h"
29 
30 class QCheckBox;
31 
32 using namespace KIPIPlugins;
33 
34 namespace KIPIRajcePlugin
35 {
36 
37 class NewAlbumDialog : public KPNewAlbumDialog
38 {
39 public:
40 
41     explicit NewAlbumDialog(QWidget* const parent = nullptr);
42 
43     QString albumName()        const;
44     QString albumDescription() const;
45     bool    albumVisible()     const;
46 
47 private:
48 
49     QCheckBox* m_albumVisible;
50 };
51 
52 } // namespace KIPIRajcePlugin
53 
54 #endif // NEWALBUMDIALOG_H
55