mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
f1f082d86a
Feels natural in a C++ code base. This removes a nullptr-check so some care has to be taken. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
35 lines
909 B
C++
35 lines
909 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "TabDiveExtraInfo.h"
|
|
#include "ui_TabDiveExtraInfo.h"
|
|
#include "core/dive.h"
|
|
#include "core/selection.h"
|
|
#include "qt-models/divecomputerextradatamodel.h"
|
|
|
|
TabDiveExtraInfo::TabDiveExtraInfo(MainTab *parent) :
|
|
TabBase(parent),
|
|
ui(new Ui::TabDiveExtraInfo()),
|
|
extraDataModel(new ExtraDataModel(this))
|
|
{
|
|
ui->setupUi(this);
|
|
ui->extraData->setModel(extraDataModel);
|
|
}
|
|
|
|
TabDiveExtraInfo::~TabDiveExtraInfo()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void TabDiveExtraInfo::updateData(const std::vector<dive *> &, dive *currentDive, int currentDC)
|
|
{
|
|
if (currentDive)
|
|
extraDataModel->updateDiveComputer(currentDive->get_dc(currentDC));
|
|
|
|
ui->extraData->setVisible(false); // This will cause the resize to include rows outside the current viewport
|
|
ui->extraData->resizeColumnsToContents();
|
|
ui->extraData->setVisible(true);
|
|
}
|
|
|
|
void TabDiveExtraInfo::clear()
|
|
{
|
|
extraDataModel->clear();
|
|
}
|