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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
import QtQuick 2.0
import Ubuntu.Components 1.1
Item{
id: dateRootItem
property int date;
property bool isCurrentMonth;
property bool isToday;
property bool showEvent;
property alias fontSize: dateLabel.font.pixelSize
Loader {
sourceComponent: isToday && isCurrentMonth ? highLightComp : undefined
onSourceComponentChanged: {
width = Qt.binding( function() { return parent.width < parent.height ? parent.width : parent.height } );
height = Qt.binding ( function() { return width} );
anchors.centerIn = Qt.binding( function() { return parent});
}
}
Column {
id: columns
anchors.centerIn: parent
width: parent.width
spacing: units.gu(0.5)
Label {
id: dateLabel
text: date
anchors.horizontalCenter: parent.horizontalCenter
fontSize: root.dateLabelFontSize
color: {
if( isCurrentMonth ) {
if(isToday) {
"white"
} else {
"#5D5D5D"
}
} else {
"#AEA79F"
}
}
}
Loader{
sourceComponent: showEvent ? eventIndicatorComp : undefined
onSourceComponentChanged: {
width = Qt.binding( function() { return units.gu(1) } );
height = Qt.binding( function() { return width } );
anchors.horizontalCenter = Qt.binding( function () { return parent.horizontalCenter } );
}
}
}
Component{
id: eventIndicatorComp
Rectangle {
anchors.fill: parent
radius: height/2
color:"#5E2750"
}
}
MouseArea {
anchors.fill: parent
onPressAndHold: {
var selectedDate = new Date();
selectedDate.setFullYear(intern.monthStartYear)
selectedDate.setMonth(intern.monthStartMonth + 1)
selectedDate.setDate(date)
selectedDate.setMinutes(60, 0, 0)
pageStack.push(Qt.resolvedUrl("NewEvent.qml"), {"date":selectedDate, "model":eventModel});
}
onClicked: {
var selectedDate = new Date(intern.monthStartYear,
intern.monthStartMonth,
intern.monthStartDate + index, 0, 0, 0, 0)
//If monthView is clicked then open selected DayView
if ( isYearView === false ) {
root.dateSelected(selectedDate);
}
//If yearView is clicked then open selected MonthView
else {
root.monthSelected(selectedDate);
}
}
}
}
|