summaryrefslogtreecommitdiffstats
path: root/qt-ui/subsurfacewebservices.h
blob: 9e85db1559228ddb2c4747877a1fe2d359bb215c (plain) (blame)
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
#ifndef SUBSURFACEWEBSERVICES_H
#define SUBSURFACEWEBSERVICES_H

#include <QDialog>
#include <QNetworkReply>
#include <libxml/tree.h>

namespace Ui{
	class SubsurfaceWebServices;
};
class QAbstractButton;
class QNetworkReply;

class SubsurfaceWebServices : public QDialog {
	Q_OBJECT
public:
	static SubsurfaceWebServices* instance();
	void runDialog();
	
private slots:
	void startDownload();
	void buttonClicked(QAbstractButton* button);
	void downloadFinished();
	void downloadError(QNetworkReply::NetworkError error);
	
private:
	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