mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
64419f2b19
Instead of accessing a global variable, pass the filename from the MainWindow to the dialog. This is supposed to cut down on the global variable mess. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
142 lines
3.6 KiB
C++
142 lines
3.6 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef CONFIGUREDIVECOMPUTERDIALOG_H
|
|
#define CONFIGUREDIVECOMPUTERDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QStringListModel>
|
|
#include "ui_configuredivecomputerdialog.h"
|
|
#include "core/libdivecomputer.h"
|
|
#include "core/configuredivecomputer.h"
|
|
#include <QStyledItemDelegate>
|
|
#include <QNetworkAccessManager>
|
|
#ifdef BT_SUPPORT
|
|
#include "desktop-widgets/btdeviceselectiondialog.h"
|
|
#endif
|
|
|
|
class GasSpinBoxItemDelegate : public QStyledItemDelegate {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum column_type {
|
|
PERCENT,
|
|
DEPTH,
|
|
SETPOINT,
|
|
};
|
|
|
|
GasSpinBoxItemDelegate(QObject *parent = 0, column_type type = PERCENT);
|
|
~GasSpinBoxItemDelegate();
|
|
|
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
|
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
|
|
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;
|
|
|
|
private:
|
|
column_type type;
|
|
};
|
|
|
|
class GasTypeComboBoxItemDelegate : public QStyledItemDelegate {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum computer_type {
|
|
OSTC3,
|
|
OSTC,
|
|
};
|
|
|
|
GasTypeComboBoxItemDelegate(QObject *parent = 0, computer_type type = OSTC3);
|
|
~GasTypeComboBoxItemDelegate();
|
|
|
|
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
|
|
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
|
|
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;
|
|
|
|
private:
|
|
computer_type type;
|
|
};
|
|
|
|
class ConfigureDiveComputerDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureDiveComputerDialog(const QString &filename, QWidget *parent = 0);
|
|
~ConfigureDiveComputerDialog();
|
|
|
|
private
|
|
slots:
|
|
void checkLogFile(int state);
|
|
void pickLogFile();
|
|
void readSettings();
|
|
void resetSettings();
|
|
void configMessage(QString msg);
|
|
void configError(QString err);
|
|
void on_close_clicked();
|
|
void on_saveSettingsPushButton_clicked();
|
|
void deviceDetailsReceived(DeviceDetails newDeviceDetails);
|
|
void reloadValues();
|
|
void on_backupButton_clicked();
|
|
|
|
void on_restoreBackupButton_clicked();
|
|
|
|
void on_updateFirmwareButton_clicked();
|
|
|
|
void on_DiveComputerList_currentRowChanged(int currentRow);
|
|
|
|
void dc_open();
|
|
void dc_close();
|
|
|
|
#ifdef BT_SUPPORT
|
|
void bluetoothSelectionDialogIsFinished(int result);
|
|
void selectRemoteBluetoothDevice();
|
|
#endif
|
|
|
|
private:
|
|
Ui::ConfigureDiveComputerDialog ui;
|
|
|
|
QString logFile;
|
|
QString filename;
|
|
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
ConfigureDiveComputer *config;
|
|
device_data_t device_data;
|
|
void getDeviceData();
|
|
|
|
void fill_device_list(unsigned int transport);
|
|
|
|
DeviceDetails deviceDetails;
|
|
void populateDeviceDetails();
|
|
void populateDeviceDetailsOSTC3();
|
|
void populateDeviceDetailsOSTC();
|
|
void populateDeviceDetailsSuuntoVyper();
|
|
void populateDeviceDetailsOSTC4();
|
|
void reloadValuesOSTC3();
|
|
void reloadValuesOSTC();
|
|
void reloadValuesSuuntoVyper();
|
|
void reloadValuesOSTC4();
|
|
|
|
#ifdef BT_SUPPORT
|
|
BtDeviceSelectionDialog *btDeviceSelectionDialog;
|
|
#endif
|
|
};
|
|
|
|
class OstcFirmwareCheck : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
explicit OstcFirmwareCheck(const QString &product);
|
|
void checkLatest(QWidget *parent, device_data_t *data, const QString &filename);
|
|
public
|
|
slots:
|
|
void parseOstcFwVersion(QNetworkReply *reply);
|
|
void saveOstcFirmware(QNetworkReply *reply);
|
|
|
|
private:
|
|
void upgradeFirmware(const QString &filename);
|
|
device_data_t devData;
|
|
QString latestFirmwareAvailable;
|
|
QString latestFirmwareHexFile;
|
|
QString storeFirmware;
|
|
QWidget *parent;
|
|
QNetworkAccessManager manager;
|
|
};
|
|
|
|
#endif // CONFIGUREDIVECOMPUTERDIALOG_H
|