Animate the Search bar
[quandoparte] / application / resources / harmattan / qml / AboutPage.qml
1 import QtQuick 1.1
2 import com.nokia.meego 1.0
3 import "uiconstants.js" as UiConstants
4
5 Page {
6     anchors.fill: parent
7
8     tools: ToolBarLayout {
9         id: toolBar
10         ToolIcon { iconId: "icon-m-toolbar-back"; onClicked: pageStack.pop(); }
11     }
12     PageHeader {
13         id: header
14         anchors.top: parent.top
15         selectedIndex: settings.showArrivalsPreferred ? 1 : 0
16         options: [
17             qsTr("About Quando Parte")
18         ]
19     }
20     Label {
21         anchors {
22             top: header.bottom;
23             left: parent.left;
24             right: parent.right;
25             margins: UiConstants.DefaultMargin
26         }
27         text: qsTr("<h2><a href='http://quandoparte.garage.maemo.org'>" +
28                    "Quando Parte" + "</a></h2>" +"<p style='font-size:small;'>version ") +
29               settings.versionString +
30               qsTr("</p>" +
31                    "<p>Copyright (c) 2010, 2011</p>" +
32                    "<p>Luciano Montanaro " +
33                    "(<a href='mailto:mikelima@cirulla.net'>mikelima@cirulla.net</a>)</p>" +
34                    "<p>Licensed under the GNU Public License v2 or above</p>" +
35                    "<p/><p>Station geolocation data from " +
36                    "<a href='http://www.openstreetmap.org'>OpenStreetMap</a></p>" +
37                    "<p>Realtime train data from " +
38                    "<a href='http://mobile.viaggiatreno.it'>Viaggiatreno</a></p>");
39         onLinkActivated: Qt.openUrlExternally(link)
40     }
41     LabelStyle {
42         id: labelStyle
43     }
44  }