subsurface/mobile-widgets/qml/DiveSummary.qml
jan Iversen a65ec77263 mobile-widgets/qml/divesummary.qml: detect change in units
When either length or volume unit is changed, the text needs to be
changed.

Let signal lengthChanged and volumeChanged cause a recalcation and therefore
new text.

Signed-off-by: jan Iversen <jan@casacondor.com>
2020-01-30 19:51:50 +02:00

230 lines
4.7 KiB
QML

// SPDX-License-Identifier: GPL-2.0
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.12
import QtQuick.Dialogs 1.3
import org.subsurfacedivelog.mobile 1.0
import org.kde.kirigami 2.4 as Kirigami
Kirigami.ScrollablePage {
background: Rectangle { color: subsurfaceTheme.backgroundColor }
title: qsTr("Dive summary")
onVisibleChanged: {
if (visible)
Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex)
}
Connections {
target: Backend
onLengthChanged: {
Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex)
}
onVolumeChanged: {
Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex)
}
}
GridLayout {
columns: 3
width: parent.width
columnSpacing: Kirigami.Units.smallSpacing
rowSpacing: Kirigami.Units.smallSpacing
ListModel {
id: monthModel
ListElement {text: qsTr("Total")}
ListElement {text: qsTr(" 1 month [ 30 days]")}
ListElement {text: qsTr(" 2 month [ 60 days]")}
ListElement {text: qsTr(" 3 month [ 90 days]")}
ListElement {text: qsTr(" 4 month [120 days]")}
ListElement {text: qsTr(" 5 month [150 days]")}
ListElement {text: qsTr(" 6 month [180 days]")}
ListElement {text: qsTr(" 7 month [210 days]")}
ListElement {text: qsTr(" 8 month [240 days]")}
ListElement {text: qsTr(" 9 month [270 days]")}
ListElement {text: qsTr("10 month [300 days]")}
ListElement {text: qsTr("11 month [330 days]")}
ListElement {text: qsTr("12 month [360 days]")}
}
TemplateLabel {
text: qsTr("oldest/newest dive")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[0]
}
TemplateLabel {
text: Backend.diveSummaryText[1]
}
TemplateLabel {
Layout.columnSpan: 3
}
TemplateLabel {
text: ""
}
TemplateComboBox {
id: selectionPrimary
editable: false
currentIndex: 0
model: monthModel
onActivated: {
Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex)
}
}
TemplateComboBox {
id: selectionSecondary
editable: false
currentIndex: 3
model: monthModel
onActivated: {
Backend.summaryCalculation(selectionPrimary.currentIndex, selectionSecondary.currentIndex)
}
}
TemplateLabel {
text: qsTr("dives")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[2]
}
TemplateLabel {
text: Backend.diveSummaryText[3]
}
TemplateLabel {
text: qsTr("- EANx")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[4]
}
TemplateLabel {
text: Backend.diveSummaryText[5]
}
TemplateLabel {
text: qsTr("- depth > 39m")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[6]
}
TemplateLabel {
text: Backend.diveSummaryText[7]
}
TemplateLabel {
Layout.columnSpan: 3
}
TemplateLabel {
text: qsTr("dive time")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[8]
}
TemplateLabel {
text: Backend.diveSummaryText[9]
}
TemplateLabel {
text: qsTr("max dive time")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[10]
}
TemplateLabel {
text: Backend.diveSummaryText[11]
}
TemplateLabel {
text: qsTr("avg. dive time")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[12]
}
TemplateLabel {
text: Backend.diveSummaryText[13]
}
TemplateLabel {
Layout.columnSpan: 3
}
TemplateLabel {
text: qsTr("max depth")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[14]
}
TemplateLabel {
text: Backend.diveSummaryText[15]
}
TemplateLabel {
text: qsTr("avg. max depth")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[16]
}
TemplateLabel {
text: Backend.diveSummaryText[17]
}
TemplateLabel {
Layout.columnSpan: 3
}
TemplateLabel {
text: qsTr("min. SAC")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[18]
}
TemplateLabel {
text: Backend.diveSummaryText[19]
}
TemplateLabel {
text: qsTr("max. SAC")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[20]
}
TemplateLabel {
text: Backend.diveSummaryText[21]
}
TemplateLabel {
text: qsTr("avg. SAC")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[22]
}
TemplateLabel {
text: Backend.diveSummaryText[23]
}
TemplateLabel {
Layout.columnSpan: 3
}
TemplateLabel {
text: qsTr("dive plan(s)")
font.bold: true
}
TemplateLabel {
text: Backend.diveSummaryText[24]
}
TemplateLabel {
text: Backend.diveSummaryText[25]
}
}
}