1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/* ============================================================
*
* This file is a part of KDE project
*
*
* Date : 2013-11-18
* Description : a kipi plugin to export images to Dropbox web service
*
* Copyright (C) 2013 by Pankaj Kumar <me at panks dot me>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundation;
* either version 2, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* ============================================================ */
#ifndef DBWINDOW_H
#define DBWINDOW_H
// Qt includes
#include <QList>
#include <QPair>
// Libkipi includes
#include <KIPI/Interface>
// Local includes
#include "kptooldialog.h"
class QCloseEvent;
class QUrl;
namespace KIPI
{
class Interface;
}
namespace KIPIPlugins
{
class KPAboutData;
}
using namespace KIPI;
using namespace KIPIPlugins;
namespace KIPIDropboxPlugin
{
class DropboxWidget;
class DBTalker;
class DBPhoto;
class DBFolder;
class DBNewAlbum;
class DBWindow : public KPToolDialog
{
Q_OBJECT
public:
DBWindow(const QString& tmpFolder, QWidget* const parent);
~DBWindow();
void reactivate();
private:
void readSettings();
void writeSettings();
void uploadNextPhoto();
void buttonStateChange(bool state);
void closeEvent(QCloseEvent*) override;
private Q_SLOTS:
void slotImageListChanged();
void slotUserChangeRequest();
void slotNewAlbumRequest();
void slotReloadAlbumsRequest();
void slotStartTransfer();
void slotBusy(bool);
void slotSignalLinkingFailed();
void slotSignalLinkingSucceeded();
void slotSetUserName(const QString& msg);
void slotListAlbumsFailed(const QString& msg);
void slotListAlbumsDone(const QList<QPair<QString, QString> >& list);
void slotCreateFolderFailed(const QString& msg);
void slotCreateFolderSucceeded();
void slotAddPhotoFailed(const QString& msg);
void slotAddPhotoSucceeded();
void slotTransferCancel();
void slotFinished();
private:
unsigned int m_imagesCount;
unsigned int m_imagesTotal;
QString m_tmp;
DropboxWidget* m_widget;
DBNewAlbum* m_albumDlg;
DBTalker* m_talker;
QString m_currentAlbumName;
QList<QUrl> m_transferQueue;
};
} // namespace KIPIDropboxPlugin
#endif /* GDWINDOW_H */
|