mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
cc6c385f33
This patch implements the first step towards OSTC 3 firmware update. Its not much, just file selection, but I will build up on it from there. Implements a thread to initiate firmware updates. Currently, this is for the OSTC 3. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
#ifndef CONFIGUREDIVECOMPUTERDIALOG_H
|
|
#define CONFIGUREDIVECOMPUTERDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QStringListModel>
|
|
#include "../libdivecomputer.h"
|
|
#include "configuredivecomputer.h"
|
|
|
|
namespace Ui {
|
|
class ConfigureDiveComputerDialog;
|
|
}
|
|
|
|
class ConfigureDiveComputerDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDiveComputerDialog(QWidget *parent = 0);
|
|
~ConfigureDiveComputerDialog();
|
|
|
|
private slots:
|
|
void readSettings();
|
|
void configMessage(QString msg);
|
|
void configError(QString err);
|
|
void on_cancel_clicked();
|
|
void deviceReadFinished();
|
|
void on_saveSettingsPushButton_clicked();
|
|
void deviceDetailsReceived(DeviceDetails *newDeviceDetails);
|
|
void reloadValues();
|
|
void on_backupButton_clicked();
|
|
|
|
void on_restoreBackupButton_clicked();
|
|
|
|
void on_tabWidget_currentChanged(int index);
|
|
|
|
void on_updateFirmwareButton_clicked();
|
|
|
|
private:
|
|
Ui::ConfigureDiveComputerDialog *ui;
|
|
|
|
QStringList vendorList;
|
|
QHash<QString, QStringList> productList;
|
|
|
|
ConfigureDiveComputer *config;
|
|
device_data_t device_data;
|
|
void getDeviceData();
|
|
|
|
QHash<QString, dc_descriptor_t *> descriptorLookup;
|
|
void fill_device_list(int dc_type);
|
|
void fill_computer_list();
|
|
|
|
DeviceDetails *deviceDetails;
|
|
void populateDeviceDetails();
|
|
|
|
QString selected_vendor;
|
|
QString selected_product;
|
|
};
|
|
|
|
#endif // CONFIGUREDIVECOMPUTERDIALOG_H
|