123456789101112131415161718192021222324252627 |
- import QtQuick 1.1
- import "../js/UIConstants.js" as Ui
- Item {
- id: root
- property alias text: textinput.text
- width:parent.width
- height: 60
- Rectangle{
- width: parent.width
- height: parent.height
- anchors.centerIn: parent
- radius: height/2
- color: "transparent"
- border.color:"#8f00FF"
- TextInput{
- id: textinput
- font.pointSize: Ui.FONT_DEFAULT
- width:parent.width - 2*parent.radius
- anchors.centerIn: parent
- Keys.onReturnPressed: closeSoftwareInputPanel()
- }
- }
- }
|