equal
deleted
inserted
replaced
39 ****************************************************************************/ |
39 ****************************************************************************/ |
40 |
40 |
41 import Qt 4.7 |
41 import Qt 4.7 |
42 |
42 |
43 Rectangle { |
43 Rectangle { |
|
44 id: page |
44 width: 500; height: 250 |
45 width: 500; height: 250 |
45 color: "#edecec" |
46 color: "#edecec" |
46 |
47 |
|
48 MouseArea { |
|
49 anchors.fill: parent |
|
50 onClicked: page.focus = false; |
|
51 } |
47 Column { |
52 Column { |
48 anchors { horizontalCenter: parent.horizontalCenter; verticalCenter: parent.verticalCenter } |
53 anchors { horizontalCenter: parent.horizontalCenter; verticalCenter: parent.verticalCenter } |
49 spacing: 10 |
54 spacing: 10 |
50 |
55 |
51 SearchBox { id: search1; KeyNavigation.tab: search2; KeyNavigation.backtab: search3; focus: true } |
56 SearchBox { id: search1; KeyNavigation.tab: search2; KeyNavigation.backtab: search3; focus: true } |