df605318417f9589c9c6439ddd9a8dbd3bd210d8
[mdictionary] / src / mdictionary / qml / SettingsWidget.qml
1 import Qt 4.7
2
3 Rectangle {
4     width: 500
5     height:500
6
7     Text {
8         id: text1
9         x: 36
10         y: 11
11         width: 80
12         height: 20
13         text: "Search result size"
14         font.pixelSize: 12
15     }
16
17     Text {
18         id: text2
19         x: 36
20         y: 83
21         width: 80
22         height: 20
23         text: "History size"
24         font.pixelSize: 12
25     }
26
27     Text {
28         id: text3
29         x: 36
30         y: 131
31         width: 80
32         height: 20
33         text: "Search in:"
34         font.pixelSize: 12
35     }
36
37     Text {
38         id: text4
39         x: 94
40         y: 150
41         width: 80
42         height: 20
43         text: "Bookmarks"
44         font.pixelSize: 12
45     }
46
47     Text {
48         id: text5
49         x: 94
50         y: 177
51         width: 80
52         height: 20
53         text: "Dictionaries"
54         font.pixelSize: 12
55     }
56
57     MySpinBox {
58         id: myspinbox1
59         width: 40
60         height: 20;
61         x: 152
62         y: 9
63     }
64
65     MySpinBox {
66         id: myspinbox2
67         width: 40
68         height: 20;
69         x: 152
70         y: 81
71     }
72
73     Checkbox {
74         id: checkbox1
75         width: 20
76         x: 36
77         y: 157
78     }
79
80     Checkbox {
81         id: checkbox2
82         width: 20
83         x: 36
84         y: 177
85     }
86 }