mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
ac207ee5ff
The successful message was emitted in a some what older way then the other messages so it was always emitted, even on error. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
61 lines
1.5 KiB
C++
61 lines
1.5 KiB
C++
#ifndef CONFIGUREDIVECOMPUTER_H
|
|
#define CONFIGUREDIVECOMPUTER_H
|
|
|
|
#include <QObject>
|
|
#include <QThread>
|
|
#include <QVariant>
|
|
#include "libdivecomputer.h"
|
|
#include "configuredivecomputerthreads.h"
|
|
#include <QDateTime>
|
|
|
|
#include "libxml/xmlreader.h"
|
|
|
|
class ConfigureDiveComputer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ConfigureDiveComputer(QObject *parent = 0);
|
|
void readSettings(device_data_t *data);
|
|
|
|
enum states {
|
|
INITIAL,
|
|
READING,
|
|
WRITING,
|
|
RESETTING,
|
|
FWUPDATE,
|
|
CANCELLING,
|
|
CANCELLED,
|
|
ERROR,
|
|
DONE,
|
|
};
|
|
|
|
QString lastError;
|
|
states currentState;
|
|
device_data_t *m_data;
|
|
void saveDeviceDetails(DeviceDetails *details, device_data_t *data);
|
|
void fetchDeviceDetails();
|
|
bool saveXMLBackup(QString fileName, DeviceDetails *details, device_data_t *data);
|
|
bool restoreXMLBackup(QString fileName, DeviceDetails *details);
|
|
void startFirmwareUpdate(QString fileName, device_data_t *data);
|
|
void resetSettings(device_data_t *data);
|
|
signals:
|
|
void message(QString msg);
|
|
void error(QString err);
|
|
void stateChanged(states newState);
|
|
void deviceDetailsChanged(DeviceDetails *newDetails);
|
|
|
|
private:
|
|
ReadSettingsThread *readThread;
|
|
WriteSettingsThread *writeThread;
|
|
ResetSettingsThread *resetThread;
|
|
FirmwareUpdateThread *firmwareThread;
|
|
void setState(states newState);
|
|
private slots:
|
|
void readThreadFinished();
|
|
void writeThreadFinished();
|
|
void resetThreadFinished();
|
|
void firmwareThreadFinished();
|
|
void setError(QString err);
|
|
};
|
|
|
|
#endif // CONFIGUREDIVECOMPUTER_H
|