Added a cover action to update station schedule feature-coverpage-reload-action
authorLuciano Montanaro <mikelima@cirulla.net>
Thu, 2 Jan 2014 21:39:02 +0000 (22:39 +0100)
committerLuciano Montanaro <mikelima@cirulla.net>
Thu, 2 Jan 2014 21:39:02 +0000 (22:39 +0100)
application/resources/sailfish/qml/cover/CoverPage.qml

index ed5c7af..6b8583b 100644 (file)
@@ -8,7 +8,7 @@ CoverBackground {
         anchors.fill: parent
         text: qsTr("Quando Parte")
         icon.source: "/usr/share/icons/hicolor/86x86/apps/quandoparte.png"
-       visible: stationScheduleView.count === 0
+        visible: stationScheduleView.count === 0
     }
     SilicaListView {
         id: stationScheduleView
@@ -34,4 +34,12 @@ CoverBackground {
         offset: 0.5
         sourceItem: stationScheduleView
     }
+    CoverActionList {
+        enabled: schedule.name.length !== 0
+        iconBackground: true
+        CoverAction {
+            iconSource: "image://theme/icon-cover-refresh"
+            onTriggered: schedule.fetch(schedule.name, schedule.code)
+        }
+    }
 }