mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
2432350064
Adds a setting to control the device's brightness. Currently I have only the OSTC 3. Will add more afterwards. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
#ifndef CONFIGUREDIVECOMPUTERDIALOG_H
|
|
#define CONFIGUREDIVECOMPUTERDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QStringListModel>
|
|
#include "../libdivecomputer.h"
|
|
|
|
class ConfigureDiveComputer;
|
|
|
|
namespace Ui {
|
|
class ConfigureDiveComputerDialog;
|
|
}
|
|
|
|
class ConfigureDiveComputerDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDiveComputerDialog(QWidget *parent = 0);
|
|
~ConfigureDiveComputerDialog();
|
|
|
|
private slots:
|
|
void on_vendor_currentIndexChanged(const QString &vendor);
|
|
|
|
void on_product_currentIndexChanged(const QString &product);
|
|
|
|
void readSettings();
|
|
void configMessage(QString msg);
|
|
void configError(QString err);
|
|
void on_cancel_clicked();
|
|
void on_setDeviceName_clicked();
|
|
|
|
void on_setDateAndTime_clicked();
|
|
|
|
void on_setBrightnessButton_clicked();
|
|
|
|
private:
|
|
Ui::ConfigureDiveComputerDialog *ui;
|
|
|
|
ConfigureDiveComputer *config;
|
|
device_data_t device_data;
|
|
void getDeviceData();
|
|
|
|
QStringList vendorList;
|
|
QHash<QString, QStringList> productList;
|
|
QHash<QString, dc_descriptor_t *> descriptorLookup;
|
|
|
|
QStringListModel *vendorModel;
|
|
QStringListModel *productModel;
|
|
void fill_computer_list();
|
|
void fill_device_list(int dc_type);
|
|
};
|
|
|
|
#endif // CONFIGUREDIVECOMPUTERDIALOG_H
|