QML Keyboard for touch screen
-
you can also try maliit. Its a full framework for input methods. Has virtual keyboards also. I think they have QML keyboards as well now.
-
see here https://wiki.maliit.org/Main_Page
-
For sending emulated events to QML items, see http://qt-project.org/forums/viewthread/17360/
-
i know its pretty late,
but i just stumbled upon colibri and i had (as rodrigob) quite a hard time to figure how to use clkeyboard together with a lineedit. But it is possible by
letting the lineedit read the keyboard internal text.
So basically the lineedit is just used to show a text which belongs to the keyboard itself!@CLLineEdit{
id: textInput
text: keyboard.text
}
Rectangle{
height: 100
width: 200
color: "black"
CLKeyboard{
id: keyboard
anchors.fill: parent
}
}
@