Major changes
[quicknewsreader] / qml / QuickNewsReader / content / view / LineInput.qml
1 import QtQuick 1.0
2
3 Item {
4   id: lineInput
5   property alias text: input.text
6   property alias input: input
7   height: 50
8
9   BorderImage {
10       id: borderImage
11       border.left: 10
12       border.top: 10
13       border.bottom: 10
14       border.right: 10
15       source: "../images/lineedit.png"
16       anchors.fill: parent
17   }
18   TextInput {
19       id: input
20       color: "#151515"; selectionColor: "green"
21       font.pixelSize: 24; font.bold: true
22       width: borderImage.width-16
23       anchors.centerIn: parent
24       focus: true
25   }
26 }