This splits the code in configuredivecomputer.cpp into multiple files. The read and write threads are moved to configuredivecomputerthreads.h/cpp, and the device details class is moved to devicedetails.h/.cpp Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
43 lines
958 B
C++
43 lines
958 B
C++
#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, DeviceDetails *deviceDetails, device_data_t *data);
|
|
virtual void run();
|
|
QString result;
|
|
QString lastError;
|
|
signals:
|
|
void error(QString err);
|
|
private:
|
|
DeviceDetails *m_deviceDetails;
|
|
device_data_t *m_data;
|
|
};
|
|
|
|
class WriteSettingsThread : public QThread {
|
|
Q_OBJECT
|
|
public:
|
|
WriteSettingsThread(QObject *parent, DeviceDetails *deviceDetails, QString settingName, QVariant settingValue);
|
|
virtual void run();
|
|
QString result;
|
|
QString lastError;
|
|
signals:
|
|
void error(QString err);
|
|
private:
|
|
device_data_t *data;
|
|
QString m_settingName;
|
|
QVariant m_settingValue;
|
|
|
|
DeviceDetails *m_deviceDetails;
|
|
};
|
|
|
|
#endif // CONFIGUREDIVECOMPUTERTHREADS_H
|