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>
|
|
|
|
#include "../libdivecomputer.h"
|
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:
|
|
|
|
void on_vendor_currentIndexChanged(const QString &vendor);
|
|
|
|
|
|
|
|
void on_product_currentIndexChanged(const QString &product);
|
|
|
|
|
2014-05-29 15:54:19 +00:00
|
|
|
private:
|
|
|
|
Ui::ConfigureDiveComputerDialog *ui;
|
2014-05-29 16:16:34 +00:00
|
|
|
|
|
|
|
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);
|
2014-05-29 15:54:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CONFIGUREDIVECOMPUTERDIALOG_H
|