1 /* ============================================================
2  *
3  * This file is a part of KDE project
4  *
5  *
6  * Date        : 2013-11-18
7  * Description : a kipi plugin to export images to Dropbox web service
8  *
9  * Copyright (C) 2013 by Pankaj Kumar <me at panks dot me>
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 DBALBUM_H
24 #define DBALBUM_H
25 
26 // Local includes
27 
28 #include "kpnewalbumdialog.h"
29 
30 using namespace KIPIPlugins;
31 
32 namespace KIPIDropboxPlugin
33 {
34 class DBFolder;
35 
36 class DBNewAlbum : public KPNewAlbumDialog
37 {
38     Q_OBJECT
39 
40 public:
41 
42     DBNewAlbum(QWidget* const parent, const QString& pluginName);
43     ~DBNewAlbum();
44 
45     void getFolderTitle(DBFolder& folder);
46 };
47 
48 } //namespace KIPIDropboxPlugin
49 
50 #endif /*DBALBUM_H*/
51