mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 14:05:17 +00:00
98 lines
3.3 KiB
QML
98 lines
3.3 KiB
QML
|
import QtQuick 2.6
|
||
|
import Sailfish.Silica 1.0
|
||
|
|
||
|
import "../components"
|
||
|
|
||
|
Page {
|
||
|
id: page
|
||
|
|
||
|
// The effective value will be restricted by ApplicationWindow.allowedOrientations
|
||
|
allowedOrientations: Orientation.All
|
||
|
|
||
|
SilicaFlickable {
|
||
|
anchors.fill: parent
|
||
|
contentHeight: content.height
|
||
|
Column {
|
||
|
id: content
|
||
|
width: parent.width
|
||
|
PageHeader {
|
||
|
title: qsTr("About Sailfin")
|
||
|
}
|
||
|
Image {
|
||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
source: Qt.resolvedUrl("../icon.png")
|
||
|
}
|
||
|
|
||
|
Item { width: 1; height: Theme.paddingLarge }
|
||
|
|
||
|
Label {
|
||
|
anchors.left: parent.left
|
||
|
anchors.right: parent.right
|
||
|
anchors.leftMargin: Theme.horizontalPageMargin
|
||
|
anchors.rightMargin: Theme.horizontalPageMargin
|
||
|
wrapMode: Text.WordWrap
|
||
|
text: "<p><b>Sailfin version 0.1.0</b><br/>" +
|
||
|
"Copyright © Chris Josten 2020</p>" +
|
||
|
"<p>Sailfin is Free Software licensed under the <a href='lgpl'>LGPL-v2.1</a> or later, at your choice. " +
|
||
|
"Parts of the code of Sailfin are from other libraries. <a href='3rdparty'>View their licenses here</a>.</p>"
|
||
|
textFormat: Text.StyledText
|
||
|
color: Theme.secondaryHighlightColor
|
||
|
linkColor: Theme.primaryColor
|
||
|
onLinkActivated: {
|
||
|
switch(link) {
|
||
|
case "lgpl":
|
||
|
pageStack.push(licensePage)
|
||
|
break;
|
||
|
case "3rdparty":
|
||
|
pageStack.push(Qt.resolvedUrl("LegalPage.qml"))
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
VerticalScrollDecorator {}
|
||
|
}
|
||
|
|
||
|
Component {
|
||
|
id: licensePage
|
||
|
|
||
|
Page {
|
||
|
allowedOrientations: Orientation.All
|
||
|
SilicaFlickable {
|
||
|
anchors.fill: parent
|
||
|
contentHeight: content.height
|
||
|
PullDownMenu {
|
||
|
MenuItem {
|
||
|
text: qsTr("Open externally")
|
||
|
onClicked: Qt.openUrlExternally(Qt.resolvedUrl("../licenses/lgpl-2.1.html"))
|
||
|
}
|
||
|
}
|
||
|
VerticalScrollDecorator {}
|
||
|
Column {
|
||
|
id: content
|
||
|
width: parent.width
|
||
|
PageHeader {
|
||
|
title: qsTr("LGPL 2.1 License")
|
||
|
}
|
||
|
PlainLabel {
|
||
|
id: licenseLabel
|
||
|
|
||
|
Component.onCompleted: {
|
||
|
var xhr = new XMLHttpRequest;
|
||
|
xhr.open("GET", Qt.resolvedUrl("../licenses/lgpl-2.1.html")); // set Method and File
|
||
|
xhr.onreadystatechange = function () {
|
||
|
if (xhr.readyState === XMLHttpRequest.DONE){ // if request_status == DONE
|
||
|
licenseLabel.text = xhr.responseText;
|
||
|
}
|
||
|
}
|
||
|
xhr.send(); // begin the request
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|