From: Luciano Montanaro Date: Wed, 10 Aug 2011 09:01:20 +0000 (+0200) Subject: Added About Page X-Git-Tag: tags/0.4.81~12^2~70 X-Git-Url: http://vcs.maemo.org/git/?a=commitdiff_plain;ds=sidebyside;h=45574b678fe4bffcde96763c152b54fcb0908d42;p=quandoparte Added About Page --- diff --git a/application/resources/harmattan/qml/AboutPage.qml b/application/resources/harmattan/qml/AboutPage.qml new file mode 100644 index 0000000..414cc33 --- /dev/null +++ b/application/resources/harmattan/qml/AboutPage.qml @@ -0,0 +1,44 @@ +import QtQuick 1.1 +import com.nokia.meego 1.0 +import "uiconstants.js" as UiConstants + +Page { + anchors.fill: parent + + tools: ToolBarLayout { + id: toolBar + ToolIcon { iconId: "icon-m-toolbar-back"; onClicked: pageStack.pop(); } + } + PageHeader { + id: header + anchors.top: parent.top + selectedIndex: settings.showArrivalsPreferred ? 1 : 0 + options: ListModel { + id: dialogOptions + ListElement { + name: QT_TR_NOOP("About Quando Parte") + } + } + } + Label { + anchors { + top: header.bottom; + left: parent.left; + right: parent.right; + margins: UiConstants.DefaultMargins + } + text: qsTr("

" + + "Quando Parte" + "

" +"

version " + "0.4.80" + + "

" + + "

Copyright (c) 2010, 2011

" + + "

Luciano Montanaro (mikelima@cirulla.net)

" + + "

Licensed under the GNU Public License v2 or above

" + + "

Station geolocation data from " + + "OpenStreetMap

" + + "

Realtime train data from " + + "Viaggiatreno

"); + } + LabelStyle { + id: labelStyle + } + }