diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-08-18 20:25:06 -0500 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-18 20:25:06 -0500 |
commit | 150676ce3df0f60bd99204886c3a4e458253c093 (patch) | |
tree | d722dafb6487d2dc56e78f8e39965fb1b7bed362 /configuredivecomputerthreads.h | |
parent | 48fe5254dc9540f6b9fc13ab17029e6c7b8de975 (diff) | |
parent | 7264ec2fa877eeffa99745ac4d7af91b93217aa5 (diff) | |
download | subsurface-150676ce3df0f60bd99204886c3a4e458253c093.tar.gz |
Merge branch 'joshua-gsoc' of git://github.com/thiagomacieira/subsurface into josh
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Conflicts:
subsurface.pro
Diffstat (limited to 'configuredivecomputerthreads.h')
-rw-r--r-- | configuredivecomputerthreads.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/configuredivecomputerthreads.h b/configuredivecomputerthreads.h new file mode 100644 index 000000000..66df7a93b --- /dev/null +++ b/configuredivecomputerthreads.h @@ -0,0 +1,58 @@ +#ifndef CONFIGUREDIVECOMPUTERTHREADS_H +#define CONFIGUREDIVECOMPUTERTHREADS_H + +#include <QObject> +#include <QThread> +#include <QVariant> +#include "libdivecomputer.h" +#include <QDateTime> +#include "devicedetails.h" + +class ReadSettingsThread : public QThread +{ + Q_OBJECT +public: + ReadSettingsThread(QObject *parent, device_data_t *data); + virtual void run(); + QString result; + QString lastError; +signals: + void error(QString err); + void devicedetails(DeviceDetails *newDeviceDetails); +private: + device_data_t *m_data; +}; + +class WriteSettingsThread : public QThread +{ + Q_OBJECT +public: + WriteSettingsThread(QObject *parent, device_data_t *data); + void setDeviceDetails(DeviceDetails *details); + virtual void run(); + QString result; + QString lastError; +signals: + void error(QString err); +private: + device_data_t *m_data; + DeviceDetails *m_deviceDetails; +}; + +class FirmwareUpdateThread : public QThread +{ + Q_OBJECT +public: + FirmwareUpdateThread(QObject *parent, device_data_t *data, QString fileName); + virtual void run(); + QString lastError; +signals: + void progress(int percent); + void message(QString msg); + void error(QString err); +private: + device_data_t *m_data; + QString m_fileName; +}; + +#endif // CONFIGUREDIVECOMPUTERTHREADS_H |