mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
791fbee260
Using code from 'downloadfromdivecomputer' class, this code loads the vendors and products to the respective comboboxes. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
37 lines
857 B
C++
37 lines
857 B
C++
#ifndef CONFIGUREDIVECOMPUTERDIALOG_H
|
|
#define CONFIGUREDIVECOMPUTERDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QStringListModel>
|
|
#include "../libdivecomputer.h"
|
|
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);
|
|
|
|
private:
|
|
Ui::ConfigureDiveComputerDialog *ui;
|
|
|
|
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
|