Re: [Interest] QML TextEdit and onTextChanged on Android

2014-11-30 Thread Harri Pasanen
If I recall correctly, in the Symbian days the inputMethodHints: Qt.ImhNoPredictiveText property turned off the predictive text directly from the QML. I suppose this should still work. I'll test also on iOS and file a bug report. Harri On 01/12/2014 06:22, Nevala Samuel wrote: > Hi, > > See

Re: [Interest] QML TextEdit and onTextChanged on Android

2014-11-30 Thread Nevala Samuel
Hi, Seems that you have predictive text on. Pre-edit text won't be included to text until committed (space / enter key). So you will get change signal every commit instead of key stoke. DisplayText property includes pre-edit text part and you will get change signal for every key stroke. For in

[Interest] Capture delayed QML component creation in C++

2014-11-30 Thread Matt.Bolger
Hi, I'm trying to walk the QML Object hierarchy from C++ to do some automatic binding of UI elements to user generated projects. Since the QML elements aren't created until they first become visible I'm trying to find a central signal or virtual function I can use to catch new QML object being