summaryrefslogtreecommitdiff
path: root/qml/pages/WatchView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/WatchView.qml')
-rw-r--r--qml/pages/WatchView.qml50
1 files changed, 0 insertions, 50 deletions
diff --git a/qml/pages/WatchView.qml b/qml/pages/WatchView.qml
deleted file mode 100644
index a5d755e..0000000
--- a/qml/pages/WatchView.qml
+++ /dev/null
@@ -1,50 +0,0 @@
-import QtQuick 2.0
-import "../watch"
-
-Flickable {
- id: watchView
- width: 96
- height: 96
- clip: true
- flickableDirection: Flickable.HorizontalFlick
-
- property int curPage: 0
-
- WidgetView {
- id: widgetView
- model: curWidgets
- editMode: true
- onEmptyWidgetClicked: {
- pageStack.push(Qt.resolvedUrl("AddWidget.qml"), {
- 'addToPage': page,
- 'addToPos': pos
- });
- }
- }
-
- contentWidth: widgetView.width
- contentHeight: widgetView.height
-
- NumberAnimation {
- id: pivotAnim
- targets: watchView
- property: "contentX"
- to: curPage * watchView.width
- duration: 100
- easing.type: Easing.InOutQuad
- }
-
- onMovementStarted: {
- pivotAnim.stop()
- }
-
- onMovementEnded: {
- curPage = Math.round(watchView.contentX / watchView.width)
- pivotAnim.start()
- }
-
- function switchToPage(page) {
- curPage = page;
- pivotAnim.start();
- }
-}