mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
cleanup: generalize ExtraDataModel to display data of any dc
The goal here is to remove a dependency on displayed_dive. While doing so, make the model more general and display any dc. Pass in the dc of the current dive instead of displayed dive, since all other tabs are already converted to show data of the current dive. The QStrings are cached since we generate them anyway, so we may just keep them. Thus, there is no danger of the dc becoming invalid. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
2ff459c356
commit
7a443423bc
3 changed files with 23 additions and 21 deletions
|
@ -1,12 +1,13 @@
|
|||
// SPDX-License-Identifier: GPL-2.0
|
||||
#include "TabDiveExtraInfo.h"
|
||||
#include "ui_TabDiveExtraInfo.h"
|
||||
#include "core/dive.h"
|
||||
#include "qt-models/divecomputerextradatamodel.h"
|
||||
|
||||
TabDiveExtraInfo::TabDiveExtraInfo(QWidget *parent) :
|
||||
TabBase(parent),
|
||||
ui(new Ui::TabDiveExtraInfo()),
|
||||
extraDataModel(new ExtraDataModel())
|
||||
extraDataModel(new ExtraDataModel(this))
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->extraData->setModel(extraDataModel);
|
||||
|
@ -19,11 +20,10 @@ TabDiveExtraInfo::~TabDiveExtraInfo()
|
|||
|
||||
void TabDiveExtraInfo::updateData()
|
||||
{
|
||||
extraDataModel->updateDive();
|
||||
extraDataModel->updateDiveComputer(current_dc);
|
||||
}
|
||||
|
||||
void TabDiveExtraInfo::clear()
|
||||
{
|
||||
extraDataModel->updateDive();
|
||||
extraDataModel->clear();
|
||||
}
|
||||
|
||||
|
|
|
@ -4,8 +4,7 @@
|
|||
#include "core/metrics.h"
|
||||
|
||||
|
||||
ExtraDataModel::ExtraDataModel(QObject *parent) : CleanerTableModel(parent),
|
||||
rows(0)
|
||||
ExtraDataModel::ExtraDataModel(QObject *parent) : CleanerTableModel(parent)
|
||||
{
|
||||
//enum Column {KEY, VALUE};
|
||||
setHeaderDataStrings(QStringList() << tr("Key") << tr("Value"));
|
||||
|
@ -14,18 +13,15 @@ ExtraDataModel::ExtraDataModel(QObject *parent) : CleanerTableModel(parent),
|
|||
void ExtraDataModel::clear()
|
||||
{
|
||||
beginResetModel();
|
||||
rows = 0;
|
||||
items.clear();
|
||||
endResetModel();
|
||||
}
|
||||
|
||||
QVariant ExtraDataModel::data(const QModelIndex &index, int role) const
|
||||
{
|
||||
struct extra_data *ed = get_dive_dc(&displayed_dive, dc_number)->extra_data;
|
||||
int i = -1;
|
||||
while (ed && ++i < index.row())
|
||||
ed = ed->next;
|
||||
if (!ed)
|
||||
if (!index.isValid() || index.row() > (int)items.size())
|
||||
return QVariant();
|
||||
const Item &item = items[index.row()];
|
||||
|
||||
switch (role) {
|
||||
case Qt::FontRole:
|
||||
|
@ -35,9 +31,9 @@ QVariant ExtraDataModel::data(const QModelIndex &index, int role) const
|
|||
case Qt::DisplayRole:
|
||||
switch (index.column()) {
|
||||
case KEY:
|
||||
return ed->key;
|
||||
return item.key;
|
||||
case VALUE:
|
||||
return ed->value;
|
||||
return item.value;
|
||||
}
|
||||
return QVariant();
|
||||
}
|
||||
|
@ -46,16 +42,16 @@ QVariant ExtraDataModel::data(const QModelIndex &index, int role) const
|
|||
|
||||
int ExtraDataModel::rowCount(const QModelIndex&) const
|
||||
{
|
||||
return rows;
|
||||
return (int)items.size();
|
||||
}
|
||||
|
||||
void ExtraDataModel::updateDive()
|
||||
void ExtraDataModel::updateDiveComputer(const struct divecomputer *dc)
|
||||
{
|
||||
beginResetModel();
|
||||
rows = 0;
|
||||
struct extra_data *ed = get_dive_dc(&displayed_dive, dc_number)->extra_data;
|
||||
struct extra_data *ed = dc ? dc->extra_data : nullptr;
|
||||
items.clear();
|
||||
while (ed) {
|
||||
rows++;
|
||||
items.push_back({ ed->key, ed->value });
|
||||
ed = ed->next;
|
||||
}
|
||||
endResetModel();
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
|
||||
#include "cleanertablemodel.h"
|
||||
|
||||
struct divecomputer;
|
||||
|
||||
/* extra data model for additional dive computer data */
|
||||
class ExtraDataModel : public CleanerTableModel {
|
||||
Q_OBJECT
|
||||
|
@ -17,10 +19,14 @@ public:
|
|||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||
|
||||
void clear();
|
||||
void updateDive();
|
||||
void updateDiveComputer(const struct divecomputer *dc);
|
||||
|
||||
private:
|
||||
int rows;
|
||||
struct Item {
|
||||
QString key;
|
||||
QString value;
|
||||
};
|
||||
std::vector<Item> items;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue