2016-02-10 20:53:59 +00:00
|
|
|
import QtQuick 2.3
|
|
|
|
import QtQuick.Controls 1.2
|
|
|
|
import QtQuick.Layouts 1.1
|
|
|
|
import org.kde.plasma.mobilecomponents 0.2 as MobileComponents
|
|
|
|
import org.subsurfacedivelog.mobile 1.0
|
|
|
|
|
2016-02-11 13:32:37 +00:00
|
|
|
MobileComponents.Page {
|
2016-02-11 14:16:10 +00:00
|
|
|
id: aboutPage
|
|
|
|
property int pageWidth: subsurfaceTheme.columnWidth - MobileComponents.Units.gridUnit
|
2016-02-10 20:53:59 +00:00
|
|
|
|
2016-02-13 06:26:47 +00:00
|
|
|
/* this can be done by hitting the back key
|
2016-02-12 12:51:03 +00:00
|
|
|
contextualActions: [
|
|
|
|
Action {
|
|
|
|
text: "Close About"
|
|
|
|
iconName: "dialog-cancel"
|
|
|
|
onTriggered: {
|
|
|
|
stackView.pop()
|
|
|
|
contextDrawer.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-02-13 06:26:47 +00:00
|
|
|
*/
|
2016-02-11 14:16:10 +00:00
|
|
|
ScrollView {
|
|
|
|
anchors.fill: parent
|
2016-02-10 20:53:59 +00:00
|
|
|
|
2016-02-11 14:16:10 +00:00
|
|
|
ColumnLayout {
|
|
|
|
spacing: MobileComponents.Units.largeSpacing
|
|
|
|
width: aboutPage.width
|
|
|
|
Layout.margins: MobileComponents.Units.gridUnit / 2
|
2016-02-10 20:53:59 +00:00
|
|
|
|
2016-02-11 14:16:10 +00:00
|
|
|
MobileComponents.Heading {
|
|
|
|
text: "About Subsurface-mobile"
|
|
|
|
Layout.margins: MobileComponents.Units.largeSpacing / 2
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
Layout.maximumWidth: pageWidth
|
|
|
|
wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere
|
|
|
|
}
|
2016-02-10 20:53:59 +00:00
|
|
|
|
2016-02-11 14:16:10 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2016-02-10 20:53:59 +00:00
|
|
|
|
2016-02-11 14:16:10 +00:00
|
|
|
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
|
|
|
|
}
|
2016-02-10 20:53:59 +00:00
|
|
|
|
2016-02-11 14:16:10 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2016-02-10 20:53:59 +00:00
|
|
|
}
|
|
|
|
}
|