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
68
69
70
|
import QtQuick 2.0
import Ubuntu.Components 0.1
import "dateExt.js" as DateExt
import "colorUtils.js" as Color
Item {
id: baseView
property var dayStart: new Date()
property alias eventModel: model;
property Flickable flickableChild;
state: "COMPRESSED"
signal newEvent()
signal modelRefreshed();
clip: true
EventListModel {
id: model
termStart: dayStart
termLength: Date.msPerDay
onReload: {
modelRefreshed();
}
}
Connections{
target: flickableChild
onContentYChanged: {
if (state == "COMPRESSING" || state == "EXPANDING" || !flickableChild.dragging ) return
if ( state == "EXPANDED" && flickableChild.contentY < -units.gu(0.5) ) {
state = "COMPRESSING";
}
else if (flickableChild.contentY < -units.gu(0.5)) {
state = "EXPANDING";
}
}
onDraggingChanged: {
if (flickableChild.dragging) return;
if( state == "EXPANDING" ) {
state = "EXPANDED";
} else if ( state == "COMPRESSING") {
state = "COMPRESSED";
}
}
}
states: [
State {
name: "EXPANDING"
},
State {
name: "COMPRESSING"
},
State {
name: "EXPANDED"
},
State {
name: "COMPRESSED"
}
]
}
|