mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
8ccf2e8f1d
Changes the dive computer configuration dialog to use a tabbed interface. This will make it easier to add new dive computer models to the interface. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
57 lines
1.3 KiB
C++
57 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);
|
|
|
|
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
|