> Hi, > > I'm currently trying to understand how we can use our own behavior with > TextInput. > > I developed my own VirtualKeybord with qml and I have no idea how > implement it with TextInput methods. I speak about > openSoftwareInputPanel() and closeSoftwareInputPanel().
Those functions control the input panel provided by a QInputContext and can't be connected to directly in QML. You can however receive the generated events by implementing your own QInputContext and checking for the RequestSoftwareInputPanel and CloseSoftwareInputPanel events in filterEvent(). Andrew _______________________________________________ Qt-qml mailing list [email protected] http://lists.qt.nokia.com/mailman/listinfo/qt-qml
