2017-04-27 20:26:05 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2017-04-04 19:21:30 +02:00
|
|
|
#include "TabDiveExtraInfo.h"
|
|
|
|
#include "ui_TabDiveExtraInfo.h"
|
2020-05-06 22:25:48 +02:00
|
|
|
#include "core/dive.h"
|
2022-04-04 18:57:28 +02:00
|
|
|
#include "core/selection.h"
|
2019-11-02 22:52:27 +01:00
|
|
|
#include "qt-models/divecomputerextradatamodel.h"
|
2017-04-04 19:21:30 +02:00
|
|
|
|
2022-09-09 18:12:31 +02:00
|
|
|
TabDiveExtraInfo::TabDiveExtraInfo(MainTab *parent) :
|
2017-04-04 19:21:30 +02:00
|
|
|
TabBase(parent),
|
|
|
|
ui(new Ui::TabDiveExtraInfo()),
|
2020-05-06 22:25:48 +02:00
|
|
|
extraDataModel(new ExtraDataModel(this))
|
2017-04-04 19:21:30 +02:00
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
ui->extraData->setModel(extraDataModel);
|
|
|
|
}
|
|
|
|
|
|
|
|
TabDiveExtraInfo::~TabDiveExtraInfo()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2022-09-04 11:04:01 +02:00
|
|
|
void TabDiveExtraInfo::updateData(const std::vector<dive *> &, dive *currentDive, int currentDC)
|
2017-04-04 19:21:30 +02:00
|
|
|
{
|
2022-09-04 11:04:01 +02:00
|
|
|
const struct divecomputer *currentdc = get_dive_dc(currentDive, currentDC);
|
2022-03-11 23:26:36 +01:00
|
|
|
if (currentdc)
|
|
|
|
extraDataModel->updateDiveComputer(currentdc);
|
2017-04-04 19:21:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TabDiveExtraInfo::clear()
|
|
|
|
{
|
2020-05-06 22:25:48 +02:00
|
|
|
extraDataModel->clear();
|
2017-04-04 19:21:30 +02:00
|
|
|
}
|