8b9df0f712090d8573dc9f2bab9e88c21c6edef2
[lichviet] / qml / LichViet / DateTimeDialog.qml
1 /*
2 Copyright (C) 2011  by Cuong Le <metacuong@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>
16 */
17 import QtQuick 1.0
18 import "../DatePicker/component" as Comp
19
20 Item{
21     id: item1
22
23     Rectangle {
24         id: rectangle1
25         x: 0
26         y: -16
27         anchors.centerIn: parent
28         width:344
29         height: 234
30         color: "#19262b"
31         radius: 8
32         border.color: "#b57e8f"
33         visible: true
34         opacity:0.9
35
36
37
38         Column {
39             id: datePicker
40             width: 260
41             property int mDay: screen.curDay
42             property int mMonth: screen.curMonth
43             property int mYear: screen.curYear
44             anchors.centerIn: parent
45
46             Comp.DateReel {
47                 id: dateReel
48                 width: parent.width
49             }}
50
51
52         Button {
53             id: button2
54             x: 102
55             anchors.right: parent.right; anchors.rightMargin: 102; y: 185; width: 140; height: 40
56             text: "OK"
57             visible: true
58             onClicked: {
59                 LC.reset(datePicker.mDay,datePicker.mMonth,datePicker.mYear)
60                 screen.calculateLunar(datePicker.mDay,datePicker.mMonth,datePicker.mYear)
61                 screen.state="mainscreen"
62                 screen.refresh()
63                 maindatemodel.reset()
64                 }
65         }
66
67         Button {
68             id: button3
69             x: 298
70             y: 6
71             width: 39
72             height: 40
73             text: "X"
74             anchors.rightMargin: 56
75             onClicked: {screen.state="mainscreen";screen.refresh();}
76         }
77     }
78
79     function reset(){
80         dateReel.day_reset()
81                 dateReel.month_reset()
82                 dateReel.year_reset()
83     }
84
85 }