File indexing completed on 2023-09-24 08:19:52
0001 /* ============================================================ 0002 * 0003 * This file is a part of KDE project 0004 * 0005 * 0006 * Date : 2015-08-07 0007 * Description : a kipi plugin to export images to Flickr web service 0008 * 0009 * Copyright (C) 2013 by Pankaj Kumar <me at panks dot me> 0010 * Copyright (C) 2015 by Shourya Singh Gupta <shouryasgupta at gmail dot com> 0011 * 0012 * This program is free software; you can redistribute it 0013 * and/or modify it under the terms of the GNU General 0014 * Public License as published by the Free Software Foundation; 0015 * either version 2, or (at your option) any later version. 0016 * 0017 * This program is distributed in the hope that it will be useful, 0018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0020 * GNU General Public License for more details. 0021 * 0022 * ============================================================ */ 0023 0024 #ifndef NEWALBUM_H 0025 #define NEWALBUM_H 0026 0027 // Local includes 0028 0029 #include "kpnewalbumdialog.h" 0030 0031 using namespace KIPIPlugins; 0032 0033 namespace KIPIFlickrPlugin 0034 { 0035 class FPhotoSet; 0036 0037 class NewAlbum : public KPNewAlbumDialog 0038 { 0039 Q_OBJECT 0040 0041 public: 0042 0043 NewAlbum(QWidget* const parent, const QString& pluginName); 0044 ~NewAlbum(); 0045 0046 void getFolderProperties(FPhotoSet& folder); 0047 }; 0048 0049 } //namespace KIPIFlickrPlugin 0050 0051 #endif /*NEWALBUM_H*/