30f49289592efb841fca40a5015d3b031859d900
[lichviet] / qml / themes / default / default.qml
1 import QtQuick 1.0
2
3 Item {
4     id:theme
5     property alias markdate: markdate
6
7     property string root_dir : "file:/opt/usr/share/LichViet/themes/default/"
8     property string background_image: root_dir+"background.jpg"
9     property real background_opacity: 1.0
10
11     property string switch_on: root_dir+"switch_on.png"
12     property string switch_off: root_dir+"switch_off.png"
13
14    Item{
15         id:markdate
16         property string sunday:"red"
17         property string saturday:"blue"
18         property string otherday:"grey"
19         property string otherday_selected:"#FFFFFF"
20         property string holidays:"yellow"
21         property string not_holidays:"#FFFF99"
22         property string lunardate:"white"
23    }
24 }