Re: [Interest] TextEdit and virtual keyboard

2014-03-30 Thread igor.mironchik
: [Interest] TextEdit and virtual keyboard I believe TextEdit already launches the virtual keyboard when it receives the focus. Try setting the "z" parameter as 1 to put the TextInput object in foreground. Perhaps a MouseArea may be overriding the focus capture. Example: import QtQuick 2.0

Re: [Interest] TextEdit and virtual keyboard

2014-03-30 Thread Cezar Menezes
sage - From: "VStevenP" To: "igor mironchik" , "Alan Ezust" Cc: interest@qt-project.org Sent: Sunday, March 30, 2014 8:42:55 PM Subject: Re: [Interest] TextEdit and virtual keyboard As an aside, when you use a _TextInput_ on iOS, it does auto-launch the iO

Re: [Interest] TextEdit and virtual keyboard

2014-03-30 Thread VStevenP
From: "igor.mironc...@gmail.com" To: Alan Ezust Cc: interest@qt-project.org Sent: Saturday, March 29, 2014 12:26 PM Subject: Re: [Interest] TextEdit and virtual keyboard Hi and thanks.   I’ve found the answer: qApp->inputMethod()->show();   From:

Re: [Interest] TextEdit and virtual keyboard

2014-03-29 Thread igor.mironchik
Hi and thanks. I’ve found the answer: qApp->inputMethod()->show(); From: Alan Ezust Sent: Saturday, March 29, 2014 5:21 PM To: igor.mironc...@gmail.com Cc: interest@qt-project.org Subject: Re: [Interest] TextEdit and virtual keyboard There is not one that is included in Qt. You can ma

Re: [Interest] TextEdit and virtual keyboard

2014-03-29 Thread Alan Ezust
There is not one that is included in Qt. You can make one. Here are some links that show how. http://doc.qt.digia.com/QtVirtualKeyboard/qtvirtualkeyboard-enterprise-virtualkeyboard-virtualkeyboard-virtualkeyboard-qml.html http://qt-project.org/forums/viewthread/1486 Or you can try to reuse one t

[Interest] TextEdit and virtual keyboard

2014-03-29 Thread igor.mironchik
Hi. I’m implementing TextEdit. And I want the virtual keyboard to be shown on tap on the widget (on mobile platforms). What should I do for it? Thanks.___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/inter