summaryrefslogtreecommitdiff
path: root/sowatchui/qml/MainPage.qml
blob: a7ba7d75e379b5061e7daf52d30e70ee327c2adf (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import QtQuick 1.1
import com.nokia.meego 1.0

Page {
	id: mainPage
    tools: commonTools

	ListModel {
		id: testModel
		ListElement {
			name: "one"
		}
		ListElement {
			name: "two"
		}
	}

	Flickable {
		anchors.fill: parent
		contentWidth: mainPage.width
		contentHeight: mainColumn.height + 100

		Column {
			id: mainColumn

			width: mainPage.width
			height: childrenRect.height
			spacing: 8

			ListView {
				model: testModel
				width: mainPage.width
				height: 50*model.count
				clip: true
				interactive: false
				delegate: Rectangle {
					height: 50
					width: mainPage.width
					color: "red"
					Text {
						text: name
					}
				}
			}
			ListView {
				model: testModel
				width: mainPage.width
				height: 50*model.count
				clip: true
				interactive: false
				delegate: Rectangle {
					height: 50
					width: mainPage.width
					color: "green"
					Text {
						text: name
					}
				}
			}
			Button {
				anchors.horizontalCenter: parent.horizontalCenter
				text: qsTr("Refresh")
				onClicked: Sowatch.refreshWatches()
			}
		}
	}
}