aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/downloadfromdivecomputer.h
blob: 26216c1e0d6db0d5ea66feab1c4c8d2925b398f2 (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
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
#ifndef DOWNLOADFROMDIVECOMPUTER_H
#define DOWNLOADFROMDIVECOMPUTER_H

#include <QDialog>
#include <QThread>
#include <QHash>
#include <QMap>
#include "../libdivecomputer.h"

namespace Ui{
	class DownloadFromDiveComputer;
}
struct device_data_t;

class DownloadThread : public QThread{
	Q_OBJECT
public:
	explicit DownloadThread(device_data_t* data);
	virtual void run();
private:
	device_data_t *data;
};

class InterfaceThread : public QThread{
	Q_OBJECT
public:
	InterfaceThread(QObject *parent, device_data_t *data);
	virtual void run();

signals:
	void updateInterface(int value);
private:
	device_data_t *data;
};

class QStringListModel;
class DownloadFromDCWidget : public QDialog{
	Q_OBJECT
public:
	explicit DownloadFromDCWidget(QWidget* parent = 0, Qt::WindowFlags f = 0);
	static DownloadFromDCWidget *instance();
	void reject();

public slots:
	void on_ok_clicked();
	void on_cancel_clicked();
	void runDialog();
	void stoppedDownloading();
	void on_vendor_currentIndexChanged(const QString& vendor);

private:
    void markChildrenAsDisabled();
    void markChildrenAsEnabled();

	Ui::DownloadFromDiveComputer *ui;
	InterfaceThread *thread;
	bool downloading;

	QStringList vendorList;
	QHash<QString, QStringList> productList;
	QMap<QString, dc_descriptor_t *> descriptorLookup;
	device_data_t data;

	QStringListModel *vendorModel;
	QStringListModel *productModel;
	void fill_computer_list();

public:
	bool preferDownloaded();
};

#endif