2014-05-29 15:54:19 +00:00
|
|
|
#ifndef CONFIGUREDIVECOMPUTERDIALOG_H
|
|
|
|
#define CONFIGUREDIVECOMPUTERDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2014-05-29 16:16:34 +00:00
|
|
|
#include <QStringListModel>
|
2014-10-15 23:13:53 +00:00
|
|
|
#include "ui_configuredivecomputerdialog.h"
|
2014-05-29 16:16:34 +00:00
|
|
|
#include "../libdivecomputer.h"
|
2014-06-10 12:03:26 +00:00
|
|
|
#include "configuredivecomputer.h"
|
2014-05-30 06:56:27 +00:00
|
|
|
|
2014-05-29 15:54:19 +00:00
|
|
|
namespace Ui {
|
|
|
|
class ConfigureDiveComputerDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ConfigureDiveComputerDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ConfigureDiveComputerDialog(QWidget *parent = 0);
|
|
|
|
~ConfigureDiveComputerDialog();
|
|
|
|
|
2014-05-29 16:16:34 +00:00
|
|
|
private slots:
|
2014-05-30 06:56:27 +00:00
|
|
|
void readSettings();
|
|
|
|
void configMessage(QString msg);
|
|
|
|
void configError(QString err);
|
|
|
|
void on_cancel_clicked();
|
2014-06-10 12:03:26 +00:00
|
|
|
void deviceReadFinished();
|
|
|
|
void on_saveSettingsPushButton_clicked();
|
2014-06-10 15:25:25 +00:00
|
|
|
void deviceDetailsReceived(DeviceDetails *newDeviceDetails);
|
|
|
|
void reloadValues();
|
2014-06-10 16:19:28 +00:00
|
|
|
void on_backupButton_clicked();
|
|
|
|
|
2014-06-11 06:37:27 +00:00
|
|
|
void on_restoreBackupButton_clicked();
|
|
|
|
|
2014-06-11 08:47:25 +00:00
|
|
|
|
2014-06-23 15:16:27 +00:00
|
|
|
void on_updateFirmwareButton_clicked();
|
|
|
|
|
2014-07-16 09:04:54 +00:00
|
|
|
void on_DiveComputerList_currentRowChanged(int currentRow);
|
|
|
|
|
2014-05-29 15:54:19 +00:00
|
|
|
private:
|
2014-10-15 23:13:53 +00:00
|
|
|
Ui::ConfigureDiveComputerDialog ui;
|
2014-05-29 16:16:34 +00:00
|
|
|
|
2014-06-11 08:47:25 +00:00
|
|
|
QStringList vendorList;
|
|
|
|
QHash<QString, QStringList> productList;
|
|
|
|
|
2014-05-30 06:56:27 +00:00
|
|
|
ConfigureDiveComputer *config;
|
|
|
|
device_data_t device_data;
|
|
|
|
void getDeviceData();
|
|
|
|
|
2014-05-29 16:16:34 +00:00
|
|
|
QHash<QString, dc_descriptor_t *> descriptorLookup;
|
|
|
|
void fill_device_list(int dc_type);
|
2014-06-11 08:47:25 +00:00
|
|
|
void fill_computer_list();
|
2014-06-10 12:03:26 +00:00
|
|
|
|
|
|
|
DeviceDetails *deviceDetails;
|
2014-06-10 16:19:28 +00:00
|
|
|
void populateDeviceDetails();
|
2014-10-12 14:51:30 +00:00
|
|
|
void populateDeviceDetailsOSTC3();
|
|
|
|
void populateDeviceDetailsSuuntoVyper();
|
|
|
|
void reloadValuesOSTC3();
|
|
|
|
void reloadValuesSuuntoVyper();
|
2014-06-11 08:47:25 +00:00
|
|
|
|
|
|
|
QString selected_vendor;
|
|
|
|
QString selected_product;
|
2014-05-29 15:54:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CONFIGUREDIVECOMPUTERDIALOG_H
|