Hi,
I’m developing a Desktop application on Ubuntu, I need a virtual keyboard when I press over a InputText, but it doesn’t works. This is my code:
TextInput {
id: input
color: "#151515"; selectionColor: "green"
font.pixelSize: 16; font.bold: true
width: parent.width-16
anchors.centerIn: parent
activeFocusOnPress: false
selectByMouse: true
MouseArea {
anchors.fill: parent
onClicked: {
input.forceActiveFocus();
input.openSoftwareInputPanel();
}
}
}
is it posible to have a virtual keyboard in Desktop applications?
Regards
↧