mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Feature to show or hide heart rate graph
Adds new push button "HR" to the button bar on the dive profile to toggle display of heart rate. TODO: New icon for the heart rate button is needed. Fixes #485 Signed-off-by: Lakshman Anumolu <acrlakshman@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
20bde81023
commit
6a8d929876
10 changed files with 70 additions and 9 deletions
|
|
@ -193,6 +193,8 @@ void ProfileWidget2::setupItemOnScene()
|
|||
setupItem(gasPressureItem, timeAxis, cylinderPressureAxis, dataModel, DivePlotDataModel::TEMPERATURE, DivePlotDataModel::TIME, 1);
|
||||
setupItem(temperatureItem, timeAxis, temperatureAxis, dataModel, DivePlotDataModel::TEMPERATURE, DivePlotDataModel::TIME, 1);
|
||||
setupItem(heartBeatItem, timeAxis, heartBeatAxis, dataModel, DivePlotDataModel::HEARTBEAT, DivePlotDataModel::TIME, 1);
|
||||
heartBeatItem->setVisibilitySettingsKey("hrgraph");
|
||||
heartBeatItem->preferencesChanged();
|
||||
setupItem(diveProfileItem, timeAxis, profileYAxis, dataModel, DivePlotDataModel::DEPTH, DivePlotDataModel::TIME, 0);
|
||||
|
||||
#define CREATE_PP_GAS(ITEM, VERTICAL_COLUMN, COLOR, COLOR_ALERT, THRESHOULD_SETTINGS, VISIBILITY_SETTINGS) \
|
||||
|
|
@ -400,11 +402,15 @@ void ProfileWidget2::plotDives(QList<dive *> dives)
|
|||
temperatureAxis->setMinimum(pInfo.mintemp);
|
||||
temperatureAxis->setMaximum(pInfo.maxtemp);
|
||||
|
||||
if (pInfo.maxhr) {
|
||||
heartBeatAxis->setMinimum(pInfo.minhr);
|
||||
heartBeatAxis->setMaximum(pInfo.maxhr);
|
||||
heartBeatAxis->updateTicks(); // this shows the ticks
|
||||
heartBeatAxis->setVisible(true);
|
||||
if (heartBeatItem->isVisible()) {
|
||||
if (pInfo.maxhr) {
|
||||
heartBeatAxis->setMinimum(pInfo.minhr);
|
||||
heartBeatAxis->setMaximum(pInfo.maxhr);
|
||||
heartBeatAxis->updateTicks(); // this shows the ticks
|
||||
heartBeatAxis->setVisible(true);
|
||||
} else {
|
||||
heartBeatAxis->setVisible(false);
|
||||
}
|
||||
} else {
|
||||
heartBeatAxis->setVisible(false);
|
||||
}
|
||||
|
|
@ -656,6 +662,7 @@ void ProfileWidget2::setProfileState()
|
|||
temperatureAxis->setPos(itemPos.temperature.pos.on);
|
||||
heartBeatAxis->setPos(itemPos.heartBeat.pos.on);
|
||||
heartBeatAxis->setLine(itemPos.heartBeat.expanded);
|
||||
heartBeatItem->setVisible(s.value("hrgraph").toBool());
|
||||
meanDepth->setVisible(true);
|
||||
|
||||
diveComputerText->setVisible(true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue