diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-02-11 06:16:10 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-02-11 10:04:44 -0800 |
commit | 672b11d80452b7aa5ac8dba89caf32dc39580522 (patch) | |
tree | 928302536a090d768b2f6544f60fe4c39e894d25 /qt-mobile/qml/About.qml | |
parent | 839cda7e4c88ab6e95f3a691b652684c720189df (diff) | |
download | subsurface-672b11d80452b7aa5ac8dba89caf32dc39580522.tar.gz |
QML UI: redesign the About page
Make things centered, lay them out correctly, make sure the image fits.
This includes the re-indentation of the previous commit - but the changes
are so massive that it seemed pointless to do this as its own commit.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/About.qml')
-rw-r--r-- | qt-mobile/qml/About.qml | 87 |
1 files changed, 50 insertions, 37 deletions
diff --git a/qt-mobile/qml/About.qml b/qt-mobile/qml/About.qml index 22f62449d..fb389ca86 100644 --- a/qt-mobile/qml/About.qml +++ b/qt-mobile/qml/About.qml @@ -5,48 +5,61 @@ import org.kde.plasma.mobilecomponents 0.2 as MobileComponents import org.subsurfacedivelog.mobile 1.0 MobileComponents.Page { + id: aboutPage + property int pageWidth: subsurfaceTheme.columnWidth - MobileComponents.Units.gridUnit -GridLayout { - columns: 2 - width: parent.width - MobileComponents.Units.gridUnit - anchors { - fill: parent - margins: MobileComponents.Units.gridUnit / 2 - } - - MobileComponents.Heading { - text: "About" - Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2 - Layout.columnSpan: 2 - Layout.alignment: Qt.AlignLeft - } + ScrollView { + anchors.fill: parent - Image { - source:"qrc:/qml/subsurface-mobile-icon.png" - } + ColumnLayout { + spacing: MobileComponents.Units.largeSpacing + width: aboutPage.width + Layout.margins: MobileComponents.Units.gridUnit / 2 - MobileComponents.Heading { - text: "A mobile version of Subsurface divelog software.\nView your dive logs while on the go." - level: 3 - Layout.topMargin: MobileComponents.Units.largeSpacing - Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2 - Layout.columnSpan: 2 - } + MobileComponents.Heading { + text: "About Subsurface-mobile" + Layout.margins: MobileComponents.Units.largeSpacing / 2 + Layout.alignment: Qt.AlignHCenter + Layout.maximumWidth: pageWidth + wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere + } - MobileComponents.Label { - text: "Version: " + manager.getVersion() - } + Rectangle { + color: "transparent" + Layout.margins: MobileComponents.Units.largeSpacing + Layout.fillWidth: true + height: childrenRect.height + Image { + id: image + source: "qrc:/qml/subsurface-mobile-icon.png" + width: parent.width - MobileComponents.Units.largeSpacing + fillMode: Image.PreserveAspectFit + horizontalAlignment: Image.AlignHCenter + } + } - MobileComponents.Heading { - text: "\n\n© Subsurface developer team, 2016" - level: 3 - Layout.topMargin: MobileComponents.Units.largeSpacing - Layout.bottomMargin: MobileComponents.Units.largeSpacing / 2 - Layout.columnSpan: 2 - } + MobileComponents.Heading { + text: "A mobile version of the free Subsurface divelog software.\n" + + "View your dive logs while on the go." + level: 3 + Layout.alignment: Qt.AlignHCenter + Layout.topMargin: MobileComponents.Units.largeSpacing * 3 + Layout.maximumWidth: pageWidth + wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere + anchors.horizontalCenter: parent.Center + horizontalAlignment: Text.AlignHCenter + } - Item { - Layout.fillHeight: true + MobileComponents.Heading { + text: "Version: " + manager.getVersion() + "\n\n© Subsurface developer team, 2016" + level: 4 + Layout.alignment: Qt.AlignHCenter + Layout.topMargin: MobileComponents.Units.largeSpacing + Layout.maximumWidth: pageWidth + wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere + anchors.horizontalCenter: parent.Center + horizontalAlignment: Text.AlignHCenter + } + } } } -} |