1 // import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
9 signal clicked(string url)
13 text: qsTr("OpenPilot Websites")
24 ListElement { link: "http://www.librepilot.org" }
25 ListElement { link: "http://wiki.openpilot.org" }
26 ListElement { link: "http://www.openpilot.org/hardware/get-hardware/" }
27 ListElement { link: "http://forum.librepilot.org" }
28 ListElement { link: "http://github.com/librepilot" }
29 ListElement { link: "http://github.com/librepilot/LibrePilot/issues" }
30 function title(index){
31 if (title["text"] === undefined) {
38 qsTr("Progress Tracker")
41 return title.text[index]
49 anchors { top: parent.top; bottom: parent.bottom }
50 orientation: ListView.Horizontal
52 spacing: 40 // Need dynamic spacing
55 text: view.model.title(index)
56 wrapMode: Text.WrapAtWordBoundaryOrAnywhere
62 color: mouseArea.containsMouse ? "#224d81" : "black"
70 container.clicked(link)