mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Load vendor list and product list
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>
This commit is contained in:
parent
ec02737eda
commit
791fbee260
2 changed files with 142 additions and 2 deletions
|
@ -2,7 +2,8 @@
|
|||
#define CONFIGUREDIVECOMPUTERDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
#include <QStringListModel>
|
||||
#include "../libdivecomputer.h"
|
||||
namespace Ui {
|
||||
class ConfigureDiveComputerDialog;
|
||||
}
|
||||
|
@ -15,8 +16,22 @@ 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue