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-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."
|
2016-03-05 20:53:13 +00:00
|
|
|
level: 4
|
2016-02-11 14:16:10 +00:00
|
|
|
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 {
|
2016-03-05 20:53:13 +00:00
|
|
|
text: "Version: " + manager.getVersion() + "\n\n© Subsurface developer team\n2011-2016"
|
|
|
|
level: 5
|
|
|
|
font.pointSize: subsurfaceTheme.smallPointSize + 1
|
2016-02-11 14:16:10 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|