File indexing completed on 2023-10-03 07:22:42
0001 /* ============================================================ 0002 * 0003 * This file is a part of KDE project 0004 * 0005 * 0006 * Date : 2008-12-26 0007 * Description : a kipi plugin to export images to Facebook web service 0008 * 0009 * Copyright (C) 2008-2009 by Luka Renko <lure at kubuntu dot org> 0010 * 0011 * This program is free software; you can redistribute it 0012 * and/or modify it under the terms of the GNU General 0013 * Public License as published by the Free Software Foundation; 0014 * either version 2, or (at your option) any later version. 0015 * 0016 * This program is distributed in the hope that it will be useful, 0017 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0019 * GNU General Public License for more details. 0020 * 0021 * ============================================================ */ 0022 0023 #ifndef FBALBUM_H 0024 #define FBALBUM_H 0025 0026 // KDE includes 0027 0028 #include <QDialog> 0029 0030 //local includes 0031 0032 #include "kpnewalbumdialog.h" 0033 0034 class QComboBox; 0035 0036 using namespace KIPIPlugins; 0037 0038 namespace KIPIFacebookPlugin 0039 { 0040 0041 class FbAlbum; 0042 0043 class FbNewAlbum : public KPNewAlbumDialog 0044 { 0045 Q_OBJECT 0046 0047 public: 0048 0049 FbNewAlbum(QWidget* const parent, const QString& pluginName); 0050 ~FbNewAlbum(); 0051 0052 void getAlbumProperties(FbAlbum& album); 0053 0054 private: 0055 0056 QComboBox* m_privacyCoB; 0057 0058 friend class FbWindow; 0059 }; 0060 0061 } // namespace KIPIFacebookPlugin 0062 0063 #endif // FBALBUM_H