summaryrefslogtreecommitdiff
path: root/sowatchui/qml/MainPage.qml
blob: d722b3df0613b73e439d81a5faaeede1ea33ff51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import QtQuick 1.1
import com.nokia.meego 1.1
import com.nokia.extras 1.1

Page {
	id: mainPage
	anchors.leftMargin: UiConstants.DefaultMargin
	anchors.rightMargin: UiConstants.DefaultMargin
	orientationLock: PageOrientation.LockPortrait

	tools: ToolBarLayout {
		ToolIcon {
			platformIconId: "toolbar-add"
			anchors.right: parent.right
			onClicked: newWatchSheet.open()
		}
	}

	NewWatchSheet {
		id: newWatchSheet
	}

	ListView {
		id: watchesListView
		anchors.fill: parent
		model: watches

		delegate: ListDelegate {
			Image {
                source: "image://theme/icon-m-common-drilldown-arrow" + (theme.inverted ? "-inverse" : "")
                anchors.right: parent.right;
                anchors.verticalCenter: parent.verticalCenter
            }

			onClicked: {
				var page = Qt.createComponent("WatchPage.qml");
				pageStack.push(page);
			}
		}
	}
	ScrollDecorator {
		flickableItem: watchesListView
	}
}