rollback to qtquick 1.0 to compatible with qtlib 4.7 maemo5 fremantle pr 1.3
[vietkaralist] / qml / vietkaralist / WaitingDlg.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 3 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
18 import QtQuick 1.0
19
20 Item {
21     id: dialog
22
23     width: 145
24     height: 36
25     opacity: dialog.visible ? 1 : 0
26
27     Rectangle {
28         id: rectangle1
29         anchors.fill: parent
30         x: 23
31         y: 0
32         width: 200
33         height: 200
34         color: "lightblue"
35         radius: 4
36         border.color: "#2bb3f7"
37
38         Text {
39             id: text1
40             x: 40
41             y: 8
42             color: "white"
43             text: "Đang tìm ..."
44             font.pointSize: 16
45             font.bold: true
46             anchors.centerIn: parent
47         }
48     }
49
50
51 }