aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-28 22:49:46 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-28 22:49:46 -0800
commitba4bb567019297e6073f4bcea9938b249e06da73 (patch)
tree5fab17a4bb09d639ec6dc81d5acc45c88d0fc77e
parent66b08f53f274e46e672354b8c8e8ab1ed446ddae (diff)
downloadsubsurface-ba4bb567019297e6073f4bcea9938b249e06da73.tar.gz
QML UI: better way to determine dive details edit width
Instead of passing magic values around, calculate the columnWidth as part of the SubsurfaceTheme object. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-mobile/qml/DiveDetails.qml1
-rw-r--r--qt-mobile/qml/DiveDetailsEdit.qml3
-rw-r--r--qt-mobile/qml/main.qml1
3 files changed, 2 insertions, 3 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml
index 2b530b660..7aabdfdbf 100644
--- a/qt-mobile/qml/DiveDetails.qml
+++ b/qt-mobile/qml/DiveDetails.qml
@@ -60,7 +60,6 @@ MobileComponents.Page {
detailsEdit.buddyText = diveDetailsListView.currentItem.modelData.dive.buddy
detailsEdit.divemasterText = diveDetailsListView.currentItem.modelData.dive.divemaster
detailsEdit.notesText = diveDetailsListView.currentItem.modelData.dive.notes
- detailsEdit.forcedWidth = diveDetailsPage.width
diveDetailsPage.state = "edit"
}
}
diff --git a/qt-mobile/qml/DiveDetailsEdit.qml b/qt-mobile/qml/DiveDetailsEdit.qml
index 1c6c4a0f5..0ae674681 100644
--- a/qt-mobile/qml/DiveDetailsEdit.qml
+++ b/qt-mobile/qml/DiveDetailsEdit.qml
@@ -22,13 +22,12 @@ Item {
property alias durationText: txtDuration.text
property alias depthText: txtDepth.text
property alias weightText: txtWeight.text
- property int forcedWidth
height: editArea.height
ColumnLayout {
id: editArea
spacing: MobileComponents.Units.smallSpacing
- width: forcedWidth
+ width: subsurfaceTheme.columnWidth - 2 * MobileComponents.Units.gridUnit
GridLayout {
id: editorDetails
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml
index 3b81c615e..9c4a36c43 100644
--- a/qt-mobile/qml/main.qml
+++ b/qt-mobile/qml/main.qml
@@ -209,6 +209,7 @@ MobileComponents.ApplicationWindow {
property color accentColor: "#2d5b9a"
property color shadedColor: "#132744"
property color accentTextColor: "#ececec"
+ property int columnWidth: Math.round(rootItem.width/(MobileComponents.Units.gridUnit*30)) > 0 ? Math.round(rootItem.width / Math.round(rootItem.width/(MobileComponents.Units.gridUnit*30))) : rootItem.width
}
toolBar: TopBar {