Adding wip version for meego harmattan
[feedingit] / psa_harmattan / feedingit / qml / common / LineInput.qml
1 import Qt 4.7
2
3 FocusScope {
4     property alias text: input.text
5     property alias maximumLength: input.maximumLength
6     //anchors.centerIn: parent
7     width: 180; height: 28
8     BorderImage {
9         source: "images/lineedit.sci"
10         anchors.fill: parent
11     }
12     TextInput {
13         id: input
14         color: "#151515"; selectionColor: "green"
15         font.pixelSize: 16; font.bold: true
16         width: parent.width-16
17         anchors.centerIn: parent
18         focus: true
19     }
20 }