5bf3b73fa645cd7f6599ea260f765a92bb23f068
[mdictionary] / src / mdictionary / qml / DictTypeSelectDialog.qml
1 import Qt 4.7
2
3 Rectangle {
4     SystemPalette { id: myPalette; colorGroup: SystemPalette.Active }
5
6     id: rectangle1
7     //width: (helloText.width > logo.width) ? (helloText.width) : (logo.width)
8     //height: logo.height + helloText.height
9     color: myPalette.window
10     anchors.fill: parent
11
12     DictTypeListView{
13         id: dictTypeList
14
15     }
16
17 //        Image {
18 //            id: logo
19 //            source: "qrc:/icons/logo/mdictionary.png"
20 //            width: 240
21 //            height: 200
22 //            anchors.horizontalCenter: parent.horizontalCenter
23 //            fillMode: Image.PreserveAspectFit
24 //            anchors.top: parent.top
25 //        }
26
27 //        Text {
28 //            id: helloText
29 //            text: qsTr("<center><h1>Welcome in mDictionary!</h1></center>")
30 //            anchors.bottom: parent.bottom
31 //        }
32
33 }