Created a 'WebService' dialog that will handle download and upload.

Created a WebService dialog that will handle download and upload
from all child based webservices. Also, ported the currently - only
- one webservice to use the new dialog.

Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
Tomaz Canabrava 2013-10-24 22:30:21 -02:00
parent 695f64a23a
commit 5eb2cc4594
5 changed files with 103 additions and 55 deletions

View file

@ -5,16 +5,35 @@
#include <QNetworkReply>
#include <libxml/tree.h>
#include "ui_subsurfacewebservices.h"
#include "ui_webservices.h"
class QAbstractButton;
class QNetworkReply;
class SubsurfaceWebServices : public QDialog {
class WebServices : public QDialog{
Q_OBJECT
public:
explicit WebServices(QWidget* parent = 0, Qt::WindowFlags f = 0);
void hidePassword();
void hideUpload();
private slots:
virtual void startDownload() = 0;
virtual void buttonClicked(QAbstractButton* button) = 0;
virtual void downloadFinished() = 0;
virtual void downloadError(QNetworkReply::NetworkError error) = 0;
protected:
Ui::WebServices ui;
QNetworkReply *reply;
QNetworkAccessManager *manager;
QByteArray downloadedData;
};
class SubsurfaceWebServices : public WebServices {
Q_OBJECT
public:
static SubsurfaceWebServices* instance();
void runDialog();
private slots:
void startDownload();
@ -23,15 +42,10 @@ private slots:
void downloadError(QNetworkReply::NetworkError error);
private:
explicit SubsurfaceWebServices(QWidget* parent = 0, Qt::WindowFlags f = 0);
void setStatusText(int status);
void download_dialog_traverse_xml(xmlNodePtr node, unsigned int *download_status);
unsigned int download_dialog_parse_response(const QByteArray& length);
explicit SubsurfaceWebServices(QWidget* parent = 0, Qt::WindowFlags f = 0);
Ui::SubsurfaceWebServices ui;
QNetworkReply *reply;
QNetworkAccessManager *manager;
QByteArray downloadedData;
};
#endif