Reputation: 2082
Qt 4.7.4 documentation states this "Text input improvements – Support for split-screen virtual keyboard"
But, I couldn't find any information on how to use it in QML?
Can someone please help?
Thanks.
Upvotes: 2
Views: 1199
Reputation: 2590
You can enable the splitscreen keyboard with an ApplicationAttribute
Somewhere in your main.cpp you have to call
QCoreApplication::setAttribute(Qt::AA_S60DisablePartialScreenInputMode, false)
Upvotes: 4